$(document).ready(function(){ 
	$(".nav a").hover(function(){
	  $(this).stop().animate({ color: "#009beb" },1);
	}, function(){
	  $(this).stop().animate({ color: "#ffffff" }, 500);
	}); 
	$("#footer a,#content a").not(".button").hover(function(){
	  $(this).stop().animate({ color: "#009beb" },1);
	}, function(){
	  $(this).stop().animate({ color: "#ffffff" }, 500);
	}); 
	$("body.page-template-about-template-php .col240 a").hover(function(){
	  $(this).stop().animate({ color: "#009beb" },1);
	}, function(){
	  $(this).stop().animate({ color: "#ffffff" }, 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();
			});
		});
	});	

});

