﻿$(document).ready(function () {

    //When mouse rolls over
    $("#menu_holder").mouseover(function () {
        $("#labelNav").hide();
        $(this).stop().animate({ top: '0px' }, { queue: false, duration: 450, easing: 'easeOutBounce' })
    });

    //When mouse is removed
    $("#menu_holder").mouseout(function () {
        $("#labelNav").show();
        $(this).stop().animate({ top: '-40px' }, { queue: false, duration: 450, easing: 'easeOutBounce' })
    });

    //When mouse rolls over
    $(".menuItem").mouseover(function () {
        $(this).stop().animate({ backgroundColor: '#3D7401' }, { queue: false, duration: 800, easing: 'linear' })
    });

    //When mouse rolls over
    $(".menuItem").mouseout(function () {
        $(this).stop().animate({ backgroundColor: '#FFFFFF' }, { queue: false, duration: 100, easing: 'linear' })
    });

});
