$(document).ready(function(){
	$(".project img").animate({opacity: "0.7"});
	$(".project").hover(function() {
		$(this).find('img').animate({opacity: "1"}, 'fast');
	},
	function() {
		$(this).find('img').animate({opacity: "0.7"}, 'fast');
	});
	
	$(".portfolio a").anchorAnimate();
	$(".contact a").anchorAnimate();
	$("a.backtotop").anchorAnimate();
	
	header
});
