$("document").ready(function() {
	// Other Views
	$("#1").css("display", "none");
	$("#product_shot div a").click(function(evt) {
	var imageId = this.id;
	var imageSrc = $("#product_image").attr("src");
	var imagePath = imageSrc.substring(0, imageSrc.length - 5);
	var newImage = imagePath + imageId + ".jpg";
		$("#product_image").attr("src", newImage);
		$("#1").css("display", "block");
	});
});
