
$(function() {
	$(".thumb").hover(function() {
		$(this).addClass("over");
	},function(){
		$(this).removeClass("over");
	});

	$(".thumb").click(function(e) {
		e.preventDefault();
		destination = $(this).find(".play_bu").attr("href");
		window.location=destination;

	});

});