$(".menuItem > li").hover(function() {
	if (obj) {
		obj.find('ul').fadeOut('fast');
		obj = null;
		//obj.find('a').removeClass("active");
	} 
	$(this).find('ul').fadeIn('fast');
}, 
	function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			200);
	}
);