$(".dropDownMenu li").hover(
		function() 
		{
			var ul = $("ul", this);
			ul.css("display", "block"); 
			/*var position = $(this).position();
			ul.position().left = position.left;
			ul.position().top = position.top + 10;*/
			
		}, 
		function() { $("ul", this).css("display", "none"); });
