<!--//---------------------------------+
//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use
//
// The code below has been altered from the original.
// visit Rohan's website to see the original code.
// --------------------------------->

$(document).ready(function()
{
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$("#secondpane div.menu_head_h").click(function()
    {
		$(this).css({}).next("div.menu_body_h").slideToggle(300).siblings("div.menu_body_h").slideUp("slow");
       	$(this).siblings("div.menu_head_h").css({backgroundImage:"url(images/arrow_01.gif)"});
	});

});