$(document).ready(function(){
	$(".thumb").animate({opacity: "0.3"}, 0);	
	$(".contentBlock").animate({opacity: "0.0"}, 0);	
	$(".contentBlock").animate({opacity: "1.0"}, 300);	

	$(".thumb").hover(
	function() {
		$(this).stop().animate({"opacity": "1.0"}, 100);
		$(this).animate({"background-color": "#00FF00"}, "slow");
	},
	function() {
		$(this).stop().animate({"opacity": "0.3"}, 400);
	});
});
	
