window.addEvent('domready', function(){
	var num=0;
	$$('#menu li ul').each(function(element){
		var li = element.parentNode;
		var anchors = li.getElementsByTagName('A');
		element.style.left = anchors[0].offsetLeft -165 - (num++ ? 1 : 0) + 'px';
		element.style.top = anchors[0].offsetHeight -1 + 'px';
		li.onmouseover = function() {
			this.className = "active";
		};
		li.onmouseout = function() {
			this.className = "";
		};
	});
});
