
$(document).ready(function(){
	
	$('#productPreview .thumbnails a').click(function() {
		var thisIndex = $('#productPreview .thumbnails li').index($(this).parent());
		//$('.bigPhoto ul').animate({left: -(thisIndex * 240)});
		$('.bigPhoto ul').css('left', -(thisIndex * 240));
		return false;
	});

});