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