$(document).ready(function(){
   $(".nav a").hover(function(){
     $(this).stop().animate({ color: "#bb4f00" },1);
   }, function(){
     $(this).stop().animate({ color: "#424242" }, 500);
   }); 
   $("#footer a,#content a").not(".button").hover(function(){
     $(this).stop().animate({ color: "#bb4f00" },1);
   }, function(){
     $(this).stop().animate({ color: "#656565" }, 500);
   }); 
   $("body.page-template-about-template-php .col240 a").hover(function(){
     $(this).stop().animate({ color: "#bb4f00" },1);
   }, function(){
     $(this).stop().animate({ color: "#9d9b94" }, 500);
   }); 
   
   
   $("img.overlay").hover(function(event){
      $('<span class="overlay"></span>').css({ opacity : "0.0"}).insertBefore(event.target)
      .hover(function(){
         $(this).stop().animate({ opacity: "0.3" },250);
      }, function(){
         $(this).stop().animate({ opacity: "0.0" }, 250, function(){
            $(this).remove();
         });
      });
   });   

});

