<!--//---------------------------------+
//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use
// --------------------------------->
$(function () {
	//slides the element with class "menu-body" when paragraph with class "menu-head" is clicked 
	$("#mainmenu p.menu-head, #mainmenu p.menu-head-first").click(function()
    {
		$(this).css({backgroundImage:"url(down.png)"}).next("div.submenu").slideToggle(300).siblings("div.menu-body").slideUp("slow");
       	$(this).siblings().css({backgroundImage:"url(left.png)"});
	});
});