function loadMenu()
{
	$$(".menuElement").each( function(el){
		Event.observe(el, "mouseover", function(event){
			
			$$(".submenu").each( function(inel){
				inel.hide();
			});	
	
			el.ancestors()[0].select(".submenu").each( function(inel){
				elPos = el.positionedOffset();
				
				inel.show();
				inel.ancestors()[0].setStyle({marginTop: ( elPos.top + el.getHeight() ) + "px", marginLeft: elPos.left + "px"});
			});	
		});
		
	});
	
	$$(".active").each( function(el){
		el.ancestors()[0].select(".show").each( function(inel){
			elPos = el.positionedOffset();
			
			inel.show();
			inel.ancestors()[0].setStyle({marginTop: ( elPos.top + el.getHeight() ) + "px", marginLeft: elPos.left + "px"});
		});	
	});
}

