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;American Fork",
						"&nbsp;Beaver",
						"&nbsp;Bountiful",
						"&nbsp;Brigham City",
						"&nbsp;Cedar City",
						"&nbsp;Heber City",
						"&nbsp;Hurricane",
						"&nbsp;Layton",
						"&nbsp;Logan",
						"&nbsp;Moab",
						"&nbsp;North Ogden",
						"&nbsp;Ogden",
						"&nbsp;Orem",
						"&nbsp;Payson",
						"&nbsp;Price",
						"&nbsp;Provo",
						"&nbsp;Richfield",
						"&nbsp;Roy",
						"&nbsp;Salt Lake City",
						"&nbsp;Smithfield",
						"&nbsp;Spanish Fork",
						"&nbsp;Springville",
						"&nbsp;St. George",
						"&nbsp;Tooele",
						"&nbsp;Torrey",
						"&nbsp;Tremonton",
						"&nbsp;Vernal",
						"&nbsp;Washington",
						"&nbsp;West Valley City");
var url = new MakeArray("",
					"http://utah.citycreate.com/american-fork",
					"http://utah.citycreate.com/beaver",
					"http://utah.citycreate.com/bountiful",
					"http://utah.citycreate.com/brigham-city",
					"http://utah.citycreate.com/cedar-city",
					"http://utah.citycreate.com/heber-city",
					"http://utah.citycreate.com/hurricane",
					"http://utah.citycreate.com/layton",
					"http://utah.citycreate.com/logan",
					"http://utah.citycreate.com/moab",
					"http://utah.citycreate.com/north-ogden",
					"http://utah.citycreate.com/ogden",
					"http://utah.citycreate.com/orem",
					"http://utah.citycreate.com/payson",
					"http://utah.citycreate.com/price",
					"http://utah.citycreate.com/provo",
					"http://utah.citycreate.com/richfield",
					"http://utah.citycreate.com/roy",
					"http://utah.citycreate.com/salt-lake-city",
					"http://utah.citycreate.com/smithfield",
					"http://utah.citycreate.com/spanish-fork",
					"http://utah.citycreate.com/springville",
					"http://utah.citycreate.com/st-george",
					"http://utah.citycreate.com/tooele",
					"http://utah.citycreate.com/torrey",
					"http://utah.citycreate.com/tremonton",
					"http://utah.citycreate.com/vernal",
					"http://utah.citycreate.com/washington",
					"http://utah.citycreate.com/west-valley-city");
function jumpPage(form)
 {

        i = form.SelectMenu.selectedIndex;

        if (i == 0) return;

        window.location.href = url[i+1];

}
