
//jQuery onReady

$(document).ready(function(){


/*---- 
	This function enables the menu with the id of menu
	to show the submenu (flyout). Works in all browsers
----*/
 	
$('ul#menu li.no').hover(function(){
	$(this).addClass('over');
}, function(){
	$(this).removeClass('over');
});


// End jQuery onReady


// Ends all jquery

});


