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;Ansonia",
						"&nbsp;Bethel",
						"&nbsp;Bridgeport",
						"&nbsp;Bristol",
						"&nbsp;Cromwell",
						"&nbsp;Danbury",
						"&nbsp;Darien",
						"&nbsp;East Hartford",
						"&nbsp;East Haven",
						"&nbsp;Enfield",
						"&nbsp;Essex",
						"&nbsp;Fairfield",
						"&nbsp;Farmington",
						"&nbsp;Greenwich",
						"&nbsp;Groton",
						"&nbsp;Hamden",
						"&nbsp;Hartford",
						"&nbsp;Ledyard",
						"&nbsp;Litchfield",
						"&nbsp;Manchester",
						"&nbsp;Meriden",
						"&nbsp;Middletown",
						"&nbsp;Milford",
						"&nbsp;Mystic",
						"&nbsp;Naugatuck",
						"&nbsp;New Britain",
						"&nbsp;New Haven",
						"&nbsp;New London",
						"&nbsp;New Milford",
						"&nbsp;Newington",
						"&nbsp;North Haven",
						"&nbsp;Norwalk",
						"&nbsp;Norwich",
						"&nbsp;Putnum",
						"&nbsp;Ridgefield",
						"&nbsp;Rocky Hill",
						"&nbsp;Shelton",
						"&nbsp;Sherwood Manor",
						"&nbsp;Southington",
						"&nbsp;Southwood Acres",
						"&nbsp;Stamford",
						"&nbsp;Storrs",
						"&nbsp;Stratford",
						"&nbsp;Thompsonville",
						"&nbsp;Torrington",
						"&nbsp;Trumbull",
						"&nbsp;Vernon",
						"&nbsp;Waterbury",
						"&nbsp;West Hartford",
						"&nbsp;West Haven",
						"&nbsp;Westport",
						"&nbsp;Wethersfield",
						"&nbsp;Willimantic",
						"&nbsp;Windsor",
						"&nbsp;Windsor Locks",
						"&nbsp;Winsted");
var url = new MakeArray("",

					"http://connecticut.citycreate.com/ansonia",
					"http://connecticut.citycreate.com/bethel",
					"http://connecticut.citycreate.com/bridgeport",
					"http://connecticut.citycreate.com/bristol",
					"http://connecticut.citycreate.com/cromwell",
					"http://connecticut.citycreate.com/danbury",
					"http://connecticut.citycreate.com/darien",
					"http://connecticut.citycreate.com/east-hartford",
					"http://connecticut.citycreate.com/east-haven",
					"http://connecticut.citycreate.com/enfield",
					"http://connecticut.citycreate.com/essex",
					"http://connecticut.citycreate.com/fairfield",
					"http://connecticut.citycreate.com/farmington",
					"http://connecticut.citycreate.com/greenwich",
					"http://connecticut.citycreate.com/groton",
					"http://connecticut.citycreate.com/hamden",
					"http://connecticut.citycreate.com/hartford",
					"http://connecticut.citycreate.com/ledyard",
					"http://connecticut.citycreate.com/litchfield",
					"http://connecticut.citycreate.com/manchester",
					"http://connecticut.citycreate.com/meriden",
					"http://connecticut.citycreate.com/middletown",
					"http://connecticut.citycreate.com/milford",
					"http://connecticut.citycreate.com/mystic",
					"http://connecticut.citycreate.com/naugatuck",
					"http://connecticut.citycreate.com/new-britain",
					"http://connecticut.citycreate.com/new-haven",
					"http://connecticut.citycreate.com/new-london",
					"http://connecticut.citycreate.com/new milford",
					"http://connecticut.citycreate.com/newington",
					"http://connecticut.citycreate.com/north-haven",
					"http://connecticut.citycreate.com/norwalk",
					"http://connecticut.citycreate.com/norwich",
					"http://connecticut.citycreate.com/putnum",
					"http://connecticut.citycreate.com/ridgefield",
					"http://connecticut.citycreate.com/rocky-hill",
					"http://connecticut.citycreate.com/shelton",
					"http://connecticut.citycreate.com/sherwood-manor",
					"http://connecticut.citycreate.com/southington",
					"http://connecticut.citycreate.com/southwood-acres",
					"http://connecticut.citycreate.com/stamford",
					"http://connecticut.citycreate.com/storrs",
					"http://connecticut.citycreate.com/stratford",
					"http://connecticut.citycreate.com/thompsonville",
					"http://connecticut.citycreate.com/torrington",
					"http://connecticut.citycreate.com/trumbull",
					"http://connecticut.citycreate.com/vernon",
					"http://connecticut.citycreate.com/waterbury",
					"http://connecticut.citycreate.com/west-hartford",
					"http://connecticut.citycreate.com/west-haven",
					"http://connecticut.citycreate.com/westport",
					"http://connecticut.citycreate.com/wethersfield",
					"http://connecticut.citycreate.com/willimantic",
					"http://connecticut.citycreate.com/windsor",
					"http://connecticut.citycreate.com/windsor-locks",
					"http://connecticut.citycreate.com/winsted");
function jumpPage(form)
 {

        i = form.SelectMenu.selectedIndex;

        if (i == 0) return;

        window.location.href = url[i+1];

}
