$(document).ready(function(){
	$("#menu ul li").hover(function() {

		$(this).find("ul").show();

		$(this).hover(function() {}, function(){
			$(this).find("ul").hide();
		});
	});
	
	$(function() {
		var zIndexNumber = 1000;
		$('div').each(function() {
			$(this).css('zIndex', zIndexNumber);
			zIndexNumber -= 10;
		});
	});
});
