
// Animate main menu
function MainMenu() {
    this.navLi = $("nav ul li").children("ul").hide().end();

    this.navLi.hover(function () {
        //Mouse Over
        $(this).find("> ul").stop(true, true).fadeIn(200);
    }, function () {
        //Mouse Out
        $(this).find("> ul").stop(true, true).hide();
    });
}


$(document).ready(function () {

    // Animate main menu
    MainMenu();

    // Dynamic Copyright Year
    $('.year').html(new Date().getFullYear());

    
    // Make Body element clickable

});
