﻿function getList(){
	//Initialize the array
	var arrTitle, arrURL;
	arrTitle = new Array();
	arrURL = new Array();


	arrURL[0] = "course_info1.html";
	arrURL[1] = "course_info1b.html";
	arrURL[2] = "course_info1c.html";
  
  arrTitle[0] = "全港公開龍獅藝錦標賽2011 - 低樁陣組、地青組及兒童組";
	arrTitle[1] = "全港公開龍獅藝錦標賽2011 - 龍藝賽事及高樁陣組獅藝賽事";
	arrTitle[2] = "獅藝教練訓練班2011";
  

	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;
}
