// Image Sizer
function changeImage(img_num,img_dir,img_name){
	// Change the image
	document.getElementById("full_image").src = "/sites/motoventures.com/themes/motoventures/_m/photo_gallery/" + img_dir + "/view/" + img_name + "_" + img_num + ".jpg";

	// Displays a loading message
	document.getElementById("loadingmsg").innerHTML = "";
}

	// Displays a done Message
function img_done() {
	document.getElementById("loadingmsg").innerHTML = "";
}
