﻿var menu_obj = null;

function checkHover() {
	if (menu_obj) {
		menu_obj.find('ul').css('display', 'none');	
	} //if
} //checkHover

$(document).ready(function() {
	$('.Menu > li').hover(function() {
		if (menu_obj) {
			menu_obj.find('ul').css('display', 'none');
			menu_obj = null;
		} //if
		
		$(this).find('ul').css('display', 'block');
	}, function() {
		menu_obj = $(this);
		setTimeout(
			"checkHover()",
			100);
	});

    $('.subMenu > li').hover(function() {
        //$(this).css('background-color', 'Black');
        $(this).find('a').css('color', 'White');
    }, function() {
        $(this).css('background-color', '');
        $(this).find('a').css('color', '');
    });
});
