// JavaScript Document

function init_menu() {

	$("ul.submenu").hide();
  	$("a.hasmore").mouseover(function(){
									  
		var childList = $(this).next();			
		// Determine if the list is open or not
		if(childList.is('ul.submenu')) {			
			childList.show();
			$(this).parent().mouseleave(function() {
				$("ul.submenu").hide();								 
			});
		}  
	});	
}

