// JavaScript Document

$(document).ready(function () {
	navMenus();
    $("#menus ul.navMenu li:last-child").addClass("last");
});

navMenus = function () {
	
    $("a.navLink").hover(function (c) {
        c.preventDefault();
        var b = $(this).attr("id");
        $(this).addClass("selected");
        $("#" + b + "Menu").fadeIn(300);
        a(b)
    });
    function a(b) {
        $("#" + b + "Menu").mouseleave(function (c) { 
			$(this).fadeOut(100); 
			$("a.navLink").removeClass("selected")
		})
	}
};
