﻿var _mouseOver = false;
jQuery(document).ready(function() {
    jQuery("ul.menu").each(function() {
        jQuery(this).children("li").addClass("listItem_TopBar");
    });

	jQuery("ul.top").each(function() {
		jQuery(this).children("li").children("a").focus(function() {
			jQuery(this).parent("li").children("ul.menu").children("li").show();
        });
	});
	jQuery("ul.menu").each(function() {
        jQuery(this).children("li:last").addClass("last");

		jQuery(this).children("li").children("a").focus(function() {
			jQuery(this).parent("li").children("ul.menu").children("li").show();
        });

		jQuery(this).children("li").children("a:last").blur(function() {
			if (jQuery(this).parent("li").children("ul").length == 0)
			{
                jQuery(this).parent("li").parent("ul").children("li").hide();
				if (jQuery(this).parent("li").parent("ul").parent("li").attr("class").indexOf("last") != -1)
					jQuery(this).parent("li").parent("ul").parent("li").parent("ul").children("li").hide();
			}	
        });
    });

    jQuery("li.topLI").each(function() {
        jQuery(this).mouseenter(function() {
            jQuery(this).children("ul.menu").children("li").show();
        });
        jQuery(this).mouseleave(function() {
            jQuery(this).children("ul.menu").children("li").hide();
        });
    });
});

