// JavaScript Document

$(document).ready(function(){

});

function showmodulemenu (moduleid) {
	 //Following events are applied to the subnav itself (moving subnav up and down)  
	 $("ul#petrus_module_menu"+moduleid).slideDown('fast').show(); //Drop down the subnav on click  

	 $("#petrus-module-downmenu"+moduleid).parent().hover(function() {  
	 }, function(){  
		 $("ul#petrus_module_menu"+moduleid).slideUp('slow'); //When the mouse hovers out of the subnav, move it back up  
	 });  
}
