jQuery(document).ready(function($){  
	
    
function initMenu(){
	$("#nav li").each(function(i){this.id = "nav-li-"+i;});
	$("#nav li ul").hide();
	$("#nav > li").hover(
		function(){
			$(this).addClass("onhover");
			$("#"+this.id+" > ul").css('z-index:','10000');
			$("#"+this.id+" > ul").fadeIn(200);
		},
		function(){
			$("#"+this.id+" > ul").fadeOut(200);
		}
	)

	$("#nav > li li").hover(
		function(){
			$(this).addClass("onhover");
			$("#"+this.id+" > ul").css('z-index:','10000');
			$("#"+this.id+" > ul").fadeIn(200);
		},
		function(){
			$("#"+this.id+" > ul").fadeOut(200)
		}
	)
}

initMenu();
});