// THIS IS THE SCRIPT THAT EXPANDS/COLLAPSES THE LOCATIONS.
jQuery(function() {
jQuery("#locationsButton").click(function(event) {
event.preventDefault();
jQuery("#locationsAndServicesWrap").slideToggle(800);
});

jQuery("#closeLocations a").click(function(event) {
event.preventDefault();
jQuery("#locationsAndServicesWrap").slideUp(800);
});
});



/*
jQuery(function() {
	// Hide the "view" div.
	$('div#locationsAndServicesWrap').hide();
	
	// Make the "close" button close
	$("#closeLocations a").click(function(event) {
		event.preventDefault();
		$("#locationsAndServicesWrap").slideUp(800);
		});
	
	// Watch for clicks on the "slide" link.
	$('div#locationsButton').click(function() {
	
	// When clicked, toggle the "view" div.
	$('div#locationsAndServicesWrap').slideToggle(800);
  return false;
});
});


$(document).ready();
*/
