$(function() {
	$("#videos img").animate({ "opacity" : .5 }, 0);
	$(".video").hover(function(){
		$(this).find("img").stop().animate({ "opacity": 1 });
	}, function(){
		$(this).find("img").stop().animate({ "opacity": .5 });
	});
	$(".video").hover(function(){
		$(this).find("div").animate({ backgroundColor: "#ff3030" });
	}, function(){
		$(this).find("div").stop().animate({ backgroundColor: "#fff" });
	});
	$(".grey").hover(function(){
		$(this).find("div").animate({ backgroundColor: "#ff3030" });
	}, function(){
		$(this).find("div").stop().animate({ backgroundColor: "#efeff0" }, 1);
	});	
	$(".video").hover(function(){
		$(this).find("p").animate({ color: "#fff" }, 1);
		$(this).find("span").animate({ color: "#fff" }, 1);
	}, function(){
		$(this).find("p").stop().animate({ color: "#666" }, 1);
		$(this).find("span").stop().animate({ color: "#000" }, 1);
	});
});
