$(function(){  
	 $("#firstpane p.menu_head, #secondpane p.menu_head").click(function(){  
		 $(this).next("div.menu_body").slideToggle(100);
		 $(this).toggleClass('menu_close');
		 
	 });  
	 $(".close").click(function(){  
	     $(this).parent('.menu_body').hide();
	     $(this).parent('.menu_body').prev('.menu_head').removeClass('menu_close');
	 });  
});