var obj = null;

function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('fast');	
	}
}

$(document).ready(function() {
	$('.menu > li, .select > li').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut('fast');
			obj = null;
		}
		
		$(this).find('ul').show();
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			400); // Hide delay
	});
	
	$('.menu > li').mouseover(function() {
		$(this).find('.mnh').addClass('hover');
	}).mouseout(function() {
		$(this).find('.mnh').removeClass('hover');
	});
	
	$('.select > li').mouseover(function() {
		$(this).find('.btahov').addClass('selectdown');
	}).mouseout(function() {
		$(this).find('.btahov').removeClass('selectdown');
	});
});