window.addEvent("domready", function() {

	$$("#Meny span").addEvent("mouseenter", function() { 
		$$("div.Meny").setStyle("display", "none");
		if(this.getStyle("background-color") == "#ffffff") {
			this.setStyle("background-color", "#eeeeee");
		}
		if($(this.id + "Drop")) {
			$(this.id + "Drop").setStyle("display", "block");
		}
	});
	
	$$("#Meny span").addEvent("mouseleave", function() {
		if(this.getStyle("background-color") == "#eeeeee") {
			this.setStyle("background-color", "#ffffff");
		}
	});
	
	$$("div.Meny").addEvent("mouseleave", function() {
		this.setStyle("display", "none");
	});

	
	
	$$("div.Meny p").addEvent("mouseenter", function() {
		this.setStyle("background-color", "#eee");
	});
	
	$$("div.Meny p").addEvent("mouseleave", function() {
		this.setStyle("background-color", "#fff");
	}); 	
	
	
	$$("div.Meny").each(function(el) {
		el.setStyles({ 
			top: $(el.id.substr(0, (el.id).length - 4)).getTop() + 27,
			left: $(el.id.substr(0, (el.id).length - 4)).getLeft() - 10
		});
	});
	
	$$("div.Meny").setOpacity(0.92);
	
	window.addEvent("resize", function() {
		$$("div.Meny").each(function(el) {
			el.setStyles({ 
				top: $(el.id.substr(0, (el.id).length - 4)).getTop() + 27,
				left: $(el.id.substr(0, (el.id).length - 4)).getLeft() - 10
			});
		});
	});
	
});