$(document).ready(function()
{ 	
	$(".menu-element ul li").hover(
		function()
		{
			$(this).parent().find(".menu-drop").css("left", $(this).position().left+40+"px");
			$(this).parent().find(".menu-drop").css("top", $(this).position().top+30+"px");
			$(this).parent().delay(5000).toggleClass("active");
		
		
			$(this).parent().find(".div").mousedown(
				function()
				{
					$(this).addClass("active");
				}
			);
		
		}
	);		
}
);
