$('.tovar span img').each(function(){
var oldImg = $(this).attr('src');
var newI= $('<img src="'+oldImg+'">');
$(this).click(function(){
newI.hide();
$('.big').prepend(newI);
newI.fadeIn();
if(newI.attr('src') != $('.big img:last').attr('src')){
$('.big img:last').fadeOut(function(){
$(this).remove();
});}
});
});