


//  Menu script developed by Roshan Bhattarai - Modified slightly by Matthew Kibbler
//  Visit http://roshanbh.com.np for this script and more.

$(document).ready(function()
{
	
	//Closes menu initially
	
	if ($(".menu_body").css("display")== "block")
	{
		$(".menu_body").css("display","none"); 
	}

	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	
	$("#sidebar p.menu_head").click(function()
	{
		 $(this).css({backgroundImage:"url(down.png)"}).next("ul.menu_body").slideDown(500).siblings("ul.menu_body").slideUp("slow");
		 $(this).siblings().css({backgroundImage:"url(left.png)"});
	});
});


