var obj = null;

function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('fast');	
	} 
} 

$(document).ready(function() {
	$('#Nav1 > li').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut('fast');
			obj = null;
		} 
		
		$(this).find('ul').fadeIn('fast');
	},
	function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			0); 
	});
});

$(document).ready(function() {
	$('#Nav2 > li').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut('fast');
			obj = null;
		} 
		
		$(this).find('ul').fadeIn('fast');
	},
	function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			0); 
	});
});

$(document).ready(function() {
	$('#Nav3 > li').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut('fast');
			obj = null;
		} 
		
		$(this).find('ul').fadeIn('fast');
	},
	function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			0); 
	});
});

$(document).ready(function() {
	$('#Nav4 > li').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut('fast');
			obj = null;
		} 
		
		$(this).find('ul').fadeIn('fast');
	},
	function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			0); 
	});
});
