$('document').ready(function() {
	var visible = false;
	var navTimers = []; 
	$('#res_td').hover(function() {
	   if (!visible) {
		var pos = $('#res_td').offset();
		$('#res_div').css({'top':'160px','left':pos.left+'px'});
		$('#res_div').fadeIn();
		visible = true;
		}
	   if ( navTimers['a'] != "" ) clearTimeout( navTimers['a'] ); 
		else {
			var pos = $('#res_td').offset();
			$('#res_div').css({'top':'160px','left':pos.left+'px'});
			$('#res_div').fadeIn();
		}
	},function() {
            		navTimers['a'] = setTimeout( function() {  
                		$('#res_div').fadeOut();  
                		navTimers['a'] = "";  
            		}, 300 );  
	});
	$('#res_div').hover(function() {
	   if ( navTimers['a'] != "" ) clearTimeout( navTimers['a'] ); 
	}, function () {
            		navTimers['a'] = setTimeout( function() {  
                		$('#res_div').fadeOut();  
                		navTimers['a'] = "";  
            		}, 300 );  
	});
});

