$(document).ready(function() {
	
$("ul#topnav li").hover(function() { 
	$(this).find("span").show(); 
} , function() { 
	$(this).find("span").hide();
});
$("#firstpane p.menu_head").click(function()
    {
        $(this).next("div.menu_body").slideToggle(200).siblings("div.menu_body").slideUp("100"); //.css({background:"url(./images/closebar.gif) ) no-repeat 0px 4px",color:"#ca0000","font-weight":"bold" })
       	//$(this).siblings().css({background:"url(./images/newevent.gif) ) no-repeat 0px 4px",color:"#575757","font-weight":"normal"});  
	});
	
});
