$(document).ready(function()
{



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

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


	}); //end funtion
	


	
}); //end document.ready
