// ./_js/main_menu.js 

<!--
$(document).ready(function(){

	$("ul#mm_tier1 li a").hover(function() { 
		
		//Following events are applied to the subnav itself 
		$(this).parent().find("ul.mm_tier2").slideDown(60).show(); //Drop down the subnav 

		$(this).parent().hover(function() {
		}, function(){	
			$(this).parent().find("ul.mm_tier2").slideUp(100); //When the mouse hovers out of the subnav, move it back up
		});
	})
});
//-->