var l2NavTO = null;

function closeL2() {
	$(".nv_l2").hide();
	$("#nv_main a").removeClass("l2_nv_on");
}

$(document).ready(function() {
	$('#nv_main a').each(function(i){
		$(this).mouseover(function() {
			clearTimeout(l2NavTO);
			
			$('.nv_l2').hide();
			$('.nv_l2:eq('+i+')').show();
			
			$('#nv_main a').removeClass("l2_nv_on");
			$(this).addClass("l2_nv_on");				
		});
		$(this).mouseleave(function() {
			l2NavTO = setTimeout("closeL2()", 100);
		});
	});
	
	$('.nv_l2').each(function(i){
		$(this).mouseover(function() {
			clearTimeout(l2NavTO);
		});
		
		$(this).mouseleave(function() {
			l2NavTO = setTimeout("closeL2()", 100);
		});
	});
});
