$(function() {
	$(".videoPreview").hover(
		//over
		function() {
			$(this).attr("src","/videos/"+$(this).attr("rel")+".anim.gif");
		}, 
		//out
		function() {
			$(this).attr("src","/videos/"+$(this).attr("rel")+".thumb.jpg");
		}
	);
});

