﻿function getList(){
	//Initialize the array
	var arrTitle, arrURL;
	arrTitle = new Array();
	arrURL = new Array();


	arrURL[0] = "gallery1.html";
	arrURL[1] = "#";
	arrURL[2] = "gallery1_photo2a.html";
	arrURL[3] = "gallery1_photo2a.html";     
	arrURL[4] = "gallery1_photo2b.html";
	arrURL[5] = "gallery1_photo2c.html";
	arrURL[6] = "gallery1_photo2d.html";
	arrURL[7] = "gallery1_photo2e.html";
	arrURL[8] = "gallery1_photo2f.html";     
	arrURL[9] = "gallery1_photo2g.html";
	arrURL[10] = "gallery1_photo2h.html";
	arrURL[11] = "gallery1_photo2i.html";
	arrURL[12] = "#";
	arrURL[13] = "gallery1_photo3.html";     
	arrURL[14] = "gallery1_photo4.html";
	arrURL[15] = "gallery1_photo5.html";
	arrURL[16] = "gallery1_photo6.html";

	
	arrTitle[0] = "FGRC活動";
	arrTitle[1] = "------------------------------";
	arrTitle[2] = "IT暑期活動 :";
	arrTitle[3] = "&#8226; COLOR OF LIFE 由我創計劃2008";
	arrTitle[4] = "&#8226; 好好生活嘉年華";
  arrTitle[5] = "&#8226; 夜釣墨魚旅行團";
  arrTitle[6] = "&#8226; 迪士尼樂園一天遊";
  arrTitle[7] = "&#8226; 香港警察機動部隊開放日";
  arrTitle[8] = "&#8226; 參觀香港飛行總會";	
  arrTitle[9] = "&#8226; 參觀超域教育片場";
  arrTitle[10] = "&#8226; 參觀鐵路博物館";
  arrTitle[11] = "&#8226; 創富為明天";
  arrTitle[12] = "------------------------------";
  arrTitle[13] = "逸葵綜合發展中心活動";
  arrTitle[14] = "逸葵綜合發展中心-成人活動";
  arrTitle[15] = "老人中心活動";
  arrTitle[16] = "家庭成長及資源中心活動";	



	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;
}
