$(function(){
	$('.fodLogo, #recentProjects img').animate({
		"opacity" : .5
	});

	$('.fodLogo, #recentProjects img').hover(function(){
		$(this).stop().animate({ "opacity" : 1}, 200);													
	}, function(){
		$(this).stop().animate({ "opacity" : .6});
	});
});