﻿var photos = [];
photos[photos.length] = {"src": "sf1_redpepper_shop.jpg", "caption": "1:キャ二オンロードにあるレッドペパーを売る店"};
photos[photos.length] = {"src": "sf2_canyonroad.jpg", "caption": "2:キャニオンロード"};
photos[photos.length] = {"src": "sf3.jpg", "caption": "3:スペイン風の銅像"};
photos[photos.length] = {"src": "sf4_old_fort_marcypark.jpg", "caption": "4:オールドフォートマーシー公園"};
photos[photos.length] = {"src": "sf5_a_house.jpg", "caption": "5:レンガで出来たメキシコ風の家"};
photos[photos.length] = {"src": "sf6_pueblo_taos.jpg", "caption": "6:インディアンの住居1(遺跡、タオス・プエブロ）"};
photos[photos.length] = {"src": "sf7_pueblo_taos2.jpg", "caption": "7:インディアンの住居2(遺跡、タオス・プエブロ）"};
photos[photos.length] = {"src": "sf8_pueblo_taos3.jpg", "caption": "8:インディアンの住居3(遺跡、タオス・プエブロ）"};
photos[photos.length] = {"src": "sf9_adobe_stfrancis_church.jpg", "caption": "9:聖フランシス教会"};
photos[photos.length] = {"src": "sf10_house_sunset.jpg", "caption": "10:夕日をあびて輝くレンガ造りの家"};

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;
	}
}

