$(document).ready(function() {
													 
	$("ul.footerLocations").hide();
	$("a.footerClinic").attr( 'href', 'javascript:void(0);' );
	
	$("a.footerClinic").click(function()
  {
		$("ul.footerLocations").hide();
    $(this).next(".footerLocations").slideToggle(600);
  });
	
});
