var obj = null;

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

$(document).ready(function() {
	$('#toptabs-hover').hover(function() {
		if (obj) {
			obj.find('ul.toptab-dropdown').fadeOut('slow');
			obj = null;
		} 

		$(this).find('ul.toptab-dropdown').fadeIn('slow');
		
	}, function() {
 		obj = $(this);
   		setTimeout(
       	"checkHover()",
         400);
      });
  });
