var obj = null;
var myTimer;

function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('fast');
		obj = null;
	} //if
} //checkHover

$(document).ready(function() {
	$('#adminNav > li#myAccount').hover(function() {
		
		clearTimeout(myTimer);
		
		//if ( (obj != null) && (obj != $(this)) ) {
		//	alert("closing menu? "+obj.className+", "+$(this).className);
		//	obj.find('ul').fadeOut('fast');
		//	obj = null;
		//} //if
		
		obj = $(this);
		
		$(this).find('ul').fadeIn('fast');
		
	}, function() {
		myTimer = setTimeout("checkHover()",400);
	});
	
	
});