function getList(){
	//Initialize the array
	var arrTitle, arrURL;
	arrTitle = new Array();
	arrURL = new Array();

	arrURL[0] = "photo.php";
	arrURL[1] = "photo_overseaco1.php";
	arrURL[2] = "photo_overseaco2.php";
	

	arrTitle[0] = "西太平洋區健康城市聯盟香港支部成立典禮暨「健康城市」論壇";
	arrTitle[1] = "第二屆健康城市聯盟會議";
	arrTitle[2] = "前民政事務局常任祕書長林鄭月娥女士探訪「健康城市將軍澳」統籌辦事處";
	


	var i, strSelf;
	strSelf = document.location.href

	for (i = 0 ; i < arrURL.length; i++){
		if (strSelf.substring(strSelf.length - arrURL[i].length, strSelf.length) == arrURL[i]){
			document.writeln("<option value='"+arrURL[i]+"' selected>"+arrTitle[i]+"</option>");
		}
		else{
			document.writeln("<option value='"+arrURL[i]+"'>"+arrTitle[i]+"</option>");
		}
	}

	return;
}

function changeURL(strTarget){
	document.location.href = strTarget;
}