var timeoutHide;

$(function(){
	$('#menu > ul > li > .subMenu').hide();

	$('#menu > ul > li').mouseenter(function(){
		clearTimeout(timeoutHide);
	
		$('#menu > ul > li > .subMenu').hide();

		height = $(this).find(".subMenu").height();
		width = $(this).find(".subMenu").width();
		position = $(this).position();
		
		menuPosition = $('#menu').position();
		
		if($.browser.msie  && parseInt($.browser.version) == 7)
		{
			$(this).find(".subMenu").css('margin-top',-(height)+'px');
			$(this).find(".subMenu").css('margin-left',-(width/1.5)+'px');
		}
		else
		{
			$(this).find(".subMenu").css('margin-top',-(height+36)+'px');
			$(this).find(".subMenu").css('margin-left',position.left-menuPosition.left-(width/3)+'px');
		}
		$(this).find(".subMenu").show();
	}).mouseleave(function(){
		$current = $(this);
	
		timeoutHide = setTimeout(function(){ $current.find(".subMenu").fadeOut(100);}, 800);
	});
});
