$(window).ready(function(){
	$('.product-thumbnails img').click(function() {
		thisImage = $(this);
		productImage = $(this).parent().parent().parent().find('.product-image')
		if(productImage.attr('src') != thisImage.attr('src')) {
			productImage.fadeOut(250,function(){
				productImage.attr('src',thisImage.attr('src'))
				productImage.fadeIn(250);
			});
		}
	});
});