// Animated Menu


$(document).ready(function(){

    //When mouse rolls over
    $(".topmenu ul li").mouseover(function(){
        $(this).css("background-color","#a2d4f3").css("color","black");
    });

    //When mouse is removed
    $(".topmenu ul li").mouseout(function(){
        $(this).css("background-color","#036")
    });

});

