$(document).ready(function()
{
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$("#firstpane p.menu_headA").click(function()
											   
    {
		$(this).css({backgroundColor:""}).next("div.menu_bodyA").slideToggle(300).siblings("div.menu_bodyA").slideUp("slow");
		$(this).css({color:"#666"});
        $(this).siblings().css({backgroundColor:"#fff"});
		$(this).siblings().css({color:"#656667"});
		
		
		
	});
	



	
	//slides the element with class "menu_body" when mouse is over the paragraph
	$("#firstpane p.submenu_headA").mouseover(function()
    {
	     $(this).css({backgroundColor:"#f4f4f4",fontColor:"#ff0000"}).next("div.menu_body").slideDown(500).siblings("div.menu_body").slideUp("slow");
         $(this).siblings().css({backgroundColor:"#f4f4f4"});
		 
	});
});

 
 
