$(document).ready( function() {


$(".imagecache-uc_thumbnail img").click( function() {
	var newSrc = $(this).attr('src');
	newSrc = newSrc.replace('uc_thumbnail', 'product large');
	$('.views-row-1 .imagecache-product img').attr('src', newSrc);
	return false;
});

});
