var obj = null;

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

$(document).ready(function() {
						   
//	$("div.overout").mouseout(function(){
//      $(this).fadeIn('slow');
//    }).mousedown(function(){
//      $(this).toggle(fadeOut('fast'));
//    });					   
	
						   
	$('#trigger > li').hover(function() {
		if (obj) {
			obj.find('div').fadeOut('slow');
			//obj.mouseout(fadeOut('slow'));
			obj = null;
		} //if
		$(this).find('div').fadeIn('fast');
		//else{			
		
		//}
		
		
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			400);
	});
});