// 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] = "Pondering Greatness";
theName[1] = "Goat Herder";
theName[2] = "Family Silhouette";
theName[3] = "Big Splash";
theName[4] = "Burnin Down the House";
theName[5] = "A Star is Born";
theName[6] = "Black Light Fun";
theName[7] = "My Two Front Teeth";
theName[8] = "Tobago Girl";
theName[9] = "Super Kid";
theName[10] = "Coconut Man";
theName[11] = "Celebrate";
theName[12] = "Tobago Man";
theName[13] = "Reflections of Hanah";
theName[14] = "Marisol";
theName[15] = "Hand Fed";
theName[16] = "Fiji Sevens Rugby";



var theLocation = new Array
theLocation[0] = "La Jolla Cove, San Diego, California";
theLocation[1] = "Tijuana, Mexico";
theLocation[2] = "La Jolla Cove, San Diego, California";
theLocation[3] = "La Jolla Cove, San Diego, California";
theLocation[4] = "Weddington, North Carolina";
theLocation[5] = "San Diego, California";
theLocation[6] = "San Diego, California";
theLocation[7] = "Tobago, West Indies";
theLocation[8] = "Tobago, West Indies";
theLocation[9] = "North Shore Oahu, Hawaii";
theLocation[10] = "Tobago, West Indies";
theLocation[11] = "Tijuana, Mexico";
theLocation[12] = "Tobago, West Indies";
theLocation[13] = "Charlotte, North Carolina";
theLocation[14] = "Tijuana, Mexico";
theLocation[15] = "Venice Beach, CA";
theLocation[16] = "";

var photoId = new Array()
photoId[0] = "Pondering Greatness";
photoId[1] = "Goat Herder";
photoId[2] = "Family Silhouette";
photoId[3] = "Big Splash";
photoId[4] = "Burnin Down the House";
photoId[5] = "A Star is Born";
photoId[6] = "Black Light Fun";
photoId[7] = "My Two Front Teeth";
photoId[8] = "Tobago Girl";
photoId[9] = "Superkid";
photoId[10] = "Coconut Man";
photoId[11] = "Celebrate";
photoId[12] = "Tobago Man";
photoId[13] = "Reflections of Hanah";
photoId[14] = "marisol";
photoId[15] = "Hand Fed";
photoId[16] = "Fiji Sevens Rugby";

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