$(document).ready(function(){ 
	if ($('#locations').length > 0) {
		$('.header h2 a').click(function(e) {
			e.preventDefault();
			$('#locations').slideToggle('slow');
		});
	} 


}); 

