$(function(){
	var prevH;
	var prevHA = 0;
	var l;
	var w;
	$("#menu > li:eq(1) > a:gt(0)").each(function(i){
		prevH = $(this).prev().height() + 5;
		prevHA += prevH;
		
		$(this).css({'position': 'absolute', 'z-index': '2000', 'top': prevHA + "px", 'padding': '2px 4px 2px 0px', 'display': 'none'});
		
		l = $("#menu > li:eq(0)").width() + 1;
		w = $("#menu > li:eq(1) > a:eq(0)").width() + 25;
		$(this).css({'left': l + "px", 'width': w + "px"});
	});
	
	var int;
	var menu = $("#menu > li:eq(1) > a:gt(0)");
	$("#menu > li:eq(1)").hover(
		function(){
			$(menu).fadeIn(200);
			clearTimeout(int);
		},
		function(){
			int = setTimeout(disappear, 300);
		});
	
	function disappear(){	$(menu).fadeOut(200); }
});
