function toggle_accreditation(div_id){
	$("#ac_"+div_id).slideToggle("fast");	
	
	if($("#ac_link_"+div_id).html() == "View Accreditation")
		$("#ac_link_"+div_id).html('Hide Accreditation');
	else
		$("#ac_link_"+div_id).html('View Accreditation');
	
}
