(function($) {	
	$.setaplay = function() {
	    $('.thumb').bind("mouseover", function(e) {
		$(this).find('span').removeClass("play").addClass("playOver");
	    });
  
	    $('.thumb').bind("mouseout", function(e) {
		$(this).find('span').removeClass("playOver").addClass("play");
	    });
	};
})(jQuery);
