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;Alamosa",
						"&nbsp;Aspen",
						"&nbsp;Aurora",
						"&nbsp;Boulder",
						"&nbsp;Breckenridge",
						"&nbsp;Brighton",
						"&nbsp;Burlington",
						"&nbsp;Canon City",
						"&nbsp;Castle Rock",
						"&nbsp;Colorado Springs",
						"&nbsp;Cortez",
						"&nbsp;Craig",
						"&nbsp;Crested Butte",
						"&nbsp;Cripple Creek",
						"&nbsp;Delta",
						"&nbsp;Denver",
						"&nbsp;Durango",
						"&nbsp;Eagle",
						"&nbsp;Englewood",
						"&nbsp;For Morgan",
						"&nbsp;Fort Collins",
						"&nbsp;Grand Junction",
						"&nbsp;Greeley",
						"&nbsp;Gunnison",
						"&nbsp;La Junta",
						"&nbsp;Lakewood",
						"&nbsp;Lamar",
						"&nbsp;Leadville",
						"&nbsp;Littleton",
						"&nbsp;Longmont",
						"&nbsp;Loveland",
						"&nbsp;Manitou Springs",
						"&nbsp;Montrose",
						"&nbsp;Ouray",						
						"&nbsp;Pagosa Springs",
						"&nbsp;Parker",
						"&nbsp;Pueblo",
						"&nbsp;Rifle",
						"&nbsp;Rio Grande",
						"&nbsp;Salida",
						"&nbsp;Security-Widefield",
						"&nbsp;Snowmass Village",
						"&nbsp;Steamboat Springs",
						"&nbsp;Sterling",
						"&nbsp;Telluride",
						"&nbsp;Trinidad",
						"&nbsp;Walsenburg",
						"&nbsp;Westminster",
						"&nbsp;Winter Park");
var url = new MakeArray("",

					"http://colorado.citycreate.com/alamosa",
					"http://colorado.citycreate.com/aspen",
					"http://colorado.citycreate.com/aurora",
					"http://colorado.citycreate.com/boulder",
					"http://colorado.citycreate.com/breckenridge",
					"http://colorado.citycreate.com/brighton",
					"http://colorado.citycreate.com/burlington",
					"http://colorado.citycreate.com/canoncity",
					"http://colorado.citycreate.com/castle-rock",
					"http://colorado.citycreate.com/colorado-springs",
					"http://colorado.citycreate.com/cortez",
					"http://colorado.citycreate.com/craig",
					"http://colorado.citycreate.com/crested-butte",
					"http://colorado.citycreate.com/cripple-creek",
					"http://colorado.citycreate.com/delta",
					"http://colorado.citycreate.com/denver",
					"http://colorado.citycreate.com/durango",
					"http://colorado.citycreate.com/eagle",
					"http://colorado.citycreate.com/englewood",
					"http://colorado.citycreate.com/for-morgan",
					"http://colorado.citycreate.com/fort-collins",
					"http://colorado.citycreate.com/grand-junction",
					"http://colorado.citycreate.com/greeley",
					"http://colorado.citycreate.com/gunnison",
					"http://colorado.citycreate.com/la-junta",
					"http://colorado.citycreate.com/lakewood",
					"http://colorado.citycreate.com/lamar",
					"http://colorado.citycreate.com/leadville",
					"http://colorado.citycreate.com/littleton",
					"http://colorado.citycreate.com/longmont",
					"http://colorado.citycreate.com/loveland",
					"http://colorado.citycreate.com/manitou-springs",
					"http://colorado.citycreate.com/montrose",
					"http://colorado.citycreate.com/ouray",
					"http://colorado.citycreate.com/pagosa-springs",
					"http://colorado.citycreate.com/parker",
					"http://colorado.citycreate.com/pueblo",
					"http://colorado.citycreate.com/rifle",
					"http://colorado.citycreate.com/rio-grande",
					"http://colorado.citycreate.com/salida",
					"http://colorado.citycreate.com/security-widefield",
					"http://colorado.citycreate.com/snowmass-village",
					"http://colorado.citycreate.com/steamboat-springs",
					"http://colorado.citycreate.com/sterling",
					"http://colorado.citycreate.com/telluride",
					"http://colorado.citycreate.com/trinidad",
					"http://colorado.citycreate.com/walsenburg",
					"http://colorado.citycreate.com/westminster",
					"http://colorado.citycreate.com/winter-park");
function jumpPage(form)
 {

        i = form.SelectMenu.selectedIndex;

        if (i == 0) return;

        window.location.href = url[i+1];

}
