// JavaScript Document

var photoSize = new Array
photoSize[0] = "4x6";
photoSize[1] = "5x7";
photoSize[2] = "8x10";
photoSize[3] = "8x12";
photoSize[4] = "11x14";
photoSize[5] = "12x18";
photoSize[6] = "16x20";
photoSize[7] = "20x30";
photoSize[8] = "30x40";

var photoPrice = new Array
photoPrice[0] = "1";
photoPrice[1] = "5";
photoPrice[2] = "15";
photoPrice[3] = "15";
photoPrice[4] = "25";
photoPrice[5] = "35";
photoPrice[6] = "50";
photoPrice[7] = "75";
photoPrice[8] = "100";

var theName = new Array
theName[0] = "Bali Hai Bridge";


var theLocation = new Array
theLocation[0] = "";
theLocation[1] = "";
theLocation[2] = "";
theLocation[3] = "";
theLocation[4] = "";
theLocation[5] = "";
theLocation[6] = "";
theLocation[7] = "";
theLocation[8] = "";
theLocation[9] = "";
theLocation[10] = "";
theLocation[11] = "";
theLocation[12] = "";
theLocation[13] = "";
theLocation[14] = "";
theLocation[15] = "";
theLocation[16] = "";
theLocation[17] = "";
theLocation[18] = "";
theLocation[19] = "";
theLocation[20] = "";
theLocation[21] = "";
theLocation[22] = "";
theLocation[23] = "";
theLocation[24] = "";
theLocation[25] = "";
theLocation[26] = "";
theLocation[27] = "";
theLocation[28] = "";
theLocation[29] = "";
theLocation[30] = "";
theLocation[31] = "";
theLocation[32] = "";
theLocation[33] = "";
theLocation[34] = "";
theLocation[35] = "";
theLocation[36] = "";
theLocation[37] = "";
theLocation[38] = "";
theLocation[39] = "";
theLocation[40] = "";
theLocation[41] = "";
theLocation[42] = "";
theLocation[43] = "";
theLocation[44] = "";

var photoId = new Array()
photoId[0] = "Sun Sets on Fiji";
photoId[1] = "Hubbard Glacier";
photoId[2] = "Alaskan Totem";
photoId[3] = "Beachcomber Island Fiji";
photoId[4] = "Boating Vancouver";
photoId[5] = "Canon";
photoId[6] = "Cruise Ship Art";
photoId[7] = "Downtown Ketchikan";
photoId[8] = "Eagle-1";
photoId[9] = "Fiji Boat Ramp";
photoId[10] = "Fiji Boat Sunset";
photoId[11] = "Fiji Fallen Tree";
photoId[12] = "Fiji Palm";
photoId[13] = "Fiji Water Banana";
photoId[14] = "For Hire";
photoId[15] = "Giant Fiji Driftwood";
photoId[16] = "Hubbard Glacier Crash 3";
photoId[17] = "Humpback Tail";
photoId[18] = "Humpback Breach";
photoId[19] = "Humpback Whale-1";
photoId[20] = "Jouvenile Bald Eagle";
photoId[21] = "Ketchikan 3";
photoId[22] = "Ketchikan Harbor 2";
photoId[23] = "Ketchikan Harbor";
photoId[24] = "Ketchikan River";
photoId[25] = "Kicking it in Fiji";
photoId[26] = "Lounging in Fiji";
photoId[27] = "Lumberjack Competition";
photoId[28] = "Mendenhall Glacier 2";
photoId[29] = "Mendenhall Glacier";
photoId[30] = "Moose Crossing";
photoId[31] = "Radience of the Seas Sunset";
photoId[32] = "Radience of the Seas";
photoId[33] = "Radient Sunset 2";
photoId[34] = "Radient Sunset";
photoId[35] = "Rain On The Eagle(2)";
photoId[36] = "Rain On The Eagle";
photoId[37] = "Red Boat of Fiji";
photoId[38] = "Sailing Vancouver";
photoId[39] = "Stairway to Ketchkan";
photoId[40] = "Taking a Shot at Me";
photoId[41] = "The Old & The New";
photoId[42] = "View From Deck 9";
photoId[43] = "Walk on Water";




function purchaseInfo(){
	
	var theValue = document._xclick.menu1.value;
	var photoName = document.getElementById('title').innerHTML
	var theSize = photoSize[theValue];
	var thePrice = photoPrice[theValue];
	
	document._xclick.amount.value = thePrice;
	document._xclick.item_name.value = photoName + " " + photoSize[theValue];

	
}

function photoInfo(picId){

	document.getElementById('photo').src = "../pictures/theLatest/" + photoId[picId] + ".jpg";
	document.getElementById('title').innerHTML = photoId[picId];
	document.getElementById('location').innerHTML = theLocation[picId];
	
}