var obj = null;

function checkHover() {
	if (obj) {
		obj.find('span,ul').fadeOut(1);
	} //if

} //checkHover





$(document).ready(function() {
	$('#Nav > li').hover(function() {
		if (obj) {
			obj.find('span,ul').fadeOut(1);
			obj = null;
		} //if
		
		$(this).find('span,ul').fadeIn(100);




	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			1);
	});
});




