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;Barrington",
						"&nbsp;Bristol",
						"&nbsp;Central Falls",
						"&nbsp;Coventry",
						"&nbsp;Cranston",
						"&nbsp;Cumberland Hill",
						"&nbsp;East Providence",
						"&nbsp;Greenville",
						"&nbsp;Johnston",
						"&nbsp;Kingston",
						"&nbsp;Middletown",
						"&nbsp;New Port",
						"&nbsp;North Kingston",
						"&nbsp;North Providence",
						"&nbsp;Pascoag",
						"&nbsp;Pawtucket",
						"&nbsp;Providence",
						"&nbsp;Tiverton",
						"&nbsp;Valley Falls",
						"&nbsp;Warwick",
						"&nbsp;West Warwick",
						"&nbsp;Westerly",
						"&nbsp;Woonsocket");
var url = new MakeArray("",
					"http://rhode-island.citycreate.com/barrington",
					"http://rhode-island.citycreate.com/bristol",
					"http://rhode-island.citycreate.com/central-falls",
					"http://rhode-island.citycreate.com/coventry",
					"http://rhode-island.citycreate.com/cranston",
					"http://rhode-island.citycreate.com/cumberland-hill",
					"http://rhode-island.citycreate.com/east-providence",
					"http://rhode-island.citycreate.com/greenville",
					"http://rhode-island.citycreate.com/johnston",
					"http://rhode-island.citycreate.com/kingston",
					"http://rhode-island.citycreate.com/middletown",
					"http://rhode-island.citycreate.com/newport",
					"http://rhode-island.citycreate.com/north-kingston",
					"http://rhode-island.citycreate.com/north-providence",
					"http://rhode-island.citycreate.com/pascoag",
					"http://rhode-island.citycreate.com/pawtucket",
					"http://rhode-island.citycreate.com/providence",
					"http://rhode-island.citycreate.com/tiverton",
					"http://rhode-island.citycreate.com/valley-falls",
					"http://rhode-island.citycreate.com/warwick",
					"http://rhode-island.citycreate.com/west-warwick",
					"http://rhode-island.citycreate.com/westerly",
					"http://rhode-island.citycreate.com/woonsocket");
function jumpPage(form)
 {

        i = form.SelectMenu.selectedIndex;

        if (i == 0) return;

        window.location.href = url[i+1];

}
