// JavaScript Document

/**
	Setup the main menu.
*/
function init_primary_menu() {
	
	$("ul.level-2").hide();
//	$("a.hasmore").click(function(){
  	$("a.hasmore").mouseover(function(){
		var childList = $(this).next();	
		
		// Determine if the list is open or not
		if(childList.is('ul.level-2')) {
			//if(childList.is(':visible')) { // collapse menu	
			childList.show();
			$(this).parent().mouseleave(function() {
				$("ul.level-2").hide();								 
			});

		}
  
	});
	

	
}