$(document).ready(function()
{



//slides the element with div mane "mn-contact-slide" when div with class "panel_button" is clicked 
	$("div.approach_panel_button").click(function()
    {

		//animate the contact panel
		$("div#mn-approach-panel").slideToggle(300);


	}); //end funtion
	


	
}); //end document.ready
