/*
$(document).ready(function(){
	//get image url from the store
	var h = document.getElementById("product_photo").src;
	//string split along the '/'
	var splitup = h.split("/");
	//get just image name
	var imageName = splitup[5];
	//take the name and make the link to the correct file 
	var img = "http://robertarollerrabbit.com/_images/large_products/";
	var newImg = img + imageName;
	document.getElementById("large_image").href = newImg;
});
*/