﻿function animateNavBarLinks()
{
    $("#navbar li:not(.tabs-Active) a").hover(
        function(){
            $(this).animate({ color: "rgb(198,174,126)" }, 300 );
        },
        function(){
            $(this).animate({ color: "rgb(125,123,124)" }, 300 );
        }
    );
    
//    $("#navbar li:not(.tabs-Active) a").click(
//        function(){
//            $(this).stop(true, true);
//            $(this).mouseleave(null);
////            debugger
//            $(this).attr("style", null);
//            $(this).addClass("clicked");
//            window.event.cancelBubble = true;
//            return false;
////            jQuery.fx.off = true;
//        }
//    );

}