$(document).ready(function (){
	$('.thumb-toggle').bind('mouseover',function(e){
    $(this).find('.image-on').show();
    $(this).find('.image-off').hide();
	});

	$('.thumb-toggle').bind('mouseout',function(e){
	    $(this).find('.image-on').hide();
	    $(this).find('.image-off').show();
	});
});
