$(document).ready(function(){
	$('body').addClass('hasJS');
	
	var t = '';
	
	$('#nav5').hover(function(){
		if (t){
			clearTimeout(t);
		}
		$('#subnav').fadeIn(400);
	}, function(){
		t=setTimeout("$('#subnav').fadeOut(400)", 1000);
	});
	
	$('#subnav').hover(function(){
		if (t){
			clearTimeout(t);
		}
		$('#subnav').show();
	}, function(){
		t=setTimeout("$('#subnav').fadeOut(400)", 1000);
	});

});