﻿var photos = [];
photos[photos.length] = {"src": "billy1_us285_near_santafe.jpg", "caption": "1:サンタフェに近いハイウェイＵＳ２８５からの風景"};
photos[photos.length] = {"src": "billy2_motel_near_i60.jpg", "caption": "2:ハイウェイI60の近くのモーテル"};
photos[photos.length] = {"src": "billy3_hot_dry_i60.jpg", "caption": "3:暑くて乾燥したI60近くの風景"};
photos[photos.length] = {"src": "billy4_fort_sumner.jpg", "caption": "4:フォトサムナーの町1"};
photos[photos.length] = {"src": "billy5_fort_sumner2.jpg", "caption": "5:フォトサムナーの町2"};
photos[photos.length] = {"src": "billy6_park_pond.jpg", "caption": "6:公園の中の池"};
photos[photos.length] = {"src": "billy7_billy_the_kid_museum1.jpg", "caption": "7:ビリーザキッドのミュージアム1"};
photos[photos.length] = {"src": "billy8_billy_the_kid_museum2.jpg", "caption": "8:ビリーザキッドのミュージアム2"};
photos[photos.length] = {"src": "billy9_grave_of_billy_the_kid.jpg", "caption": "9:施錠されたビリーザキッドの墓"};

window.onload = function() {
	var menu = document.createElement("form");
	var menulist = document.createElement("select");
	
	document.body.appendChild(menu);
	menu.appendChild(menulist);
	var options = new Array();
	var caption = document.createTextNode("選んでください");
	options[0] = document.createElement("option");
	options[0].appendChild(caption);
	menulist.appendChild(options[0]);
	for(var i = 0; i<photos.length; i++) {
		var caption = document.createTextNode(photos[i].caption);
		options[i+1] = document.createElement("option");
		options[i+1].appendChild(caption);
		menulist.appendChild(options[i+1]);
	}

	menulist.onchange = function() {
		if(!this.selectedIndex) return false;
		if(document.getElementById("photoframe")) {
			var photoframe = document.getElementById("photoframe");
		} else {
			var photoframe = document.createElement("img");
			photoframe.id = "photoframe";
			photoframe.width = "240";
			photoframe.height = "180";
			document.body.appendChild(photoframe);
		}
		photoframe.src = photos[this.selectedIndex-1].src;
	}
}

