$(document).ready(function(){
	
	$(".videos li.toggle-gif")
		.mouseover(function(){
			$(".thumb", this).hide();
			$(".gif-animation", this).show();
		})
		.mouseout(function(){
			$(".thumb", this).show();
			$(".gif-animation", this).hide();
		});
	
});
