function MakeArray()
        {
        this.length = MakeArray.arguments.length
        for (var i = 0; i < this.length; i++)
        this[i+1] = MakeArray.arguments[i]
        }var siteopt = new MakeArray("&nbsp;Choose a City",
						"&nbsp;Bellevue",
						"&nbsp;Bellingham",
						"&nbsp;Centralia",
						"&nbsp;Everett",
						"&nbsp;Kennewick",
						"&nbsp;Kent",
						"&nbsp;Longview",
						"&nbsp;Mill Creek",
						"&nbsp;Moses Lake",
						"&nbsp;Oak Harbor",
						"&nbsp;Ocean Shores",
						"&nbsp;Olympia",
						"&nbsp;Port Angeles",
						"&nbsp;Port Townsend",
						"&nbsp;Pullman",
						"&nbsp;Seattle",
						"&nbsp;Spokane",
						"&nbsp;Tacoma",
						"&nbsp;Vancouver",
						"&nbsp;Walla Walla",
						"&nbsp;Wenatchee",
						"&nbsp;Yakima");
var url = new MakeArray("",
					"http://washington.citycreate.com/bellevue",
					"http://washington.citycreate.com/bellingham",
					"http://washington.citycreate.com/centralia",
					"http://washington.citycreate.com/everett",
					"http://washington.citycreate.com/kennewick",
					"http://washington.citycreate.com/kent",
					"http://washington.citycreate.com/longview",
					"http://washington.citycreate.com/mill-creek",
					"http://washington.citycreate.com/moses-lake",
					"http://washington.citycreate.com/oak-harbor",
					"http://washington.citycreate.com/ocean-shores",
					"http://washington.citycreate.com/olympia",
					"http://washington.citycreate.com/port-angeles",
					"http://washington.citycreate.com/port-townsend",
					"http://washington.citycreate.com/pullman",
					"http://washington.citycreate.com/seattle",
					"http://washington.citycreate.com/spokane",
					"http://washington.citycreate.com/tacoma",
					"http://washington.citycreate.com/vancouver",
					"http://washington.citycreate.com/walla-walla",
					"http://washington.citycreate.com/wenatchee",
					"http://washington.citycreate.com/yakima");
function jumpPage(form)
 {
        i = form.SelectMenu.selectedIndex;
        if (i == 0) return;
        window.location.href = url[i+1];
}