$(document).ready(function()

{

	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked (click) or (mouseover)

	$("#menu p.menu_head").click(function()

    {

		$(this).css({color:"#060", borderBottom:"#900 1px dotted"}).next("div.menu_body").slideToggle(200).siblings("div.menu_body").slideUp("slow");

       	$(this).siblings("p.menu_head").css({color:"#900",border:"0"});

	});

	

});
