<!--//---------------------------------+
//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use
// --------------------------------->

$(document).ready(function()
{
	//slides the element with class "menu_body" when mouse is over the paragraph

$("#accordion p.menu_h").mouseover(function()
    {
	     $(this).next("div.menu_b").slideDown("slow").siblings("div.menu_b").slideUp("slow");
        
	
	$(this).parent().hover(function() {
		}, function(){	
			$(this).parent().find("div.menu_b").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
		});
	
	
	});

 

 
 
 });
