// 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] = "Fall Glow";
theName[1] = "B of A Stadium";
theName[2] = "Charlotte Skyline";
theName[3] = "The Color of Fall";
theName[4] = "Fall Garden";
theName[5] = "Fall at the Ranch";
theName[6] = "On a Clear Fall Morn";
theName[7] = "Beach Mountain Winter";
theName[8] = "Weddington Sunset";
theName[9] = "NC Reflection";
theName[10] = "Beach Mountain Reflection";
theName[11] = "Beach Mountain Lake";
theName[12] = "Cactus Garden";
theName[13] = "High Desert";
theName[14] = "High Desert 2";
theName[15] = "Desert 1";
theName[16] = "Desert 2";
theName[17] = "Desert 3";
theName[18] = "Breaking It Down at Graduation";
theName[19] = "Captain";
theName[20] = "Old Globe - Balboa Park";


var theLocation = new Array
theLocation[0] = "Charlotte, North Carolina";
theLocation[1] = "Charlotte, North Carolina";
theLocation[2] = "Charlotte, North Carolina";
theLocation[3] = "Charlotte, North Carolina";
theLocation[4] = "Charlotte, North Carolina";
theLocation[5] = "Charlotte, North Carolina";
theLocation[6] = "Charlotte, North Carolina";
theLocation[7] = "Charlotte, North Carolina";
theLocation[8] = "Beach Mountain, North Carolina";
theLocation[9] = "Weddington, North Carolina";
theLocation[10] = "Weddington, North Carolina";
theLocation[11] = "Beach Mountain, North Carolina";
theLocation[12] = "Beach Mountain, North Carolina";
theLocation[13] = "Palm Springs, California";
theLocation[14] = "Palm Springs Tram, California";
theLocation[15] = "Palm Springs Tram, California";
theLocation[16] = "Phoenix, Arizona";
theLocation[17] = "Phoenix, Arizona";
theLocation[18] = "San Diego, CA";
theLocation[19] = "";
theLocation[20] = "Balboa Park";

var photoId = new Array()
photoId[0] = "Fall Glow";
photoId[1] = "BofA Stadium Charlotte";
photoId[2] = "Charlotte Skyline";
photoId[3] = "The Color of Fall";
photoId[4] = "Fall Garden";
photoId[5] = "Fall at the Ranch";
photoId[6] = "On a Clear Fall Morn";
photoId[7] = "Beach Mountain Winter";
photoId[8] = "Weddington Sunset";
photoId[9] = "NC Reflection";
photoId[10] = "Beach Mountain Reflection";
photoId[11] = "Beach Mountain Lake";
photoId[12] = "Cactus Garden";
photoId[13] = "High Desert";
photoId[14] = "High Desert 2";
photoId[15] = "Desert 1";
photoId[16] = "Desert 2";
photoId[17] = "Desert 3";
photoId[18] = "Breaking It Down at Graduation";
photoId[19] = "Captain";
photoId[20] = "Old Globe - Balboa Park";

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.photo.src = "../pictures/miscScenery/" + photoId[picId] + ".jpg";
	document.getElementById('title').innerHTML = theName[picId];
	document.getElementById('location').innerHTML = theLocation[picId];
	
}