function stateObject(name, abbreviation) {
	this.name = name;
	this.abbreviation = abbreviation;
}

var stateObjectArray = new Array();

stateObjectArray[stateObjectArray.length] = new stateObject('Alabama',  'AL');
stateObjectArray[stateObjectArray.length] = new stateObject('Alaska',  'AK');
stateObjectArray[stateObjectArray.length] = new stateObject('Arkansas',  'AR');
stateObjectArray[stateObjectArray.length] = new stateObject('Arizona',  'AZ');
stateObjectArray[stateObjectArray.length] = new stateObject('Arkansas',  'AR');
stateObjectArray[stateObjectArray.length] = new stateObject('California',  'CA');
stateObjectArray[stateObjectArray.length] = new stateObject('Colorado',  'CO');
stateObjectArray[stateObjectArray.length] = new stateObject('Connecticut',  'CT');
stateObjectArray[stateObjectArray.length] = new stateObject('Delaware',  'DE');
stateObjectArray[stateObjectArray.length] = new stateObject('District of Columbia',  'DC');
stateObjectArray[stateObjectArray.length] = new stateObject('Florida',  'FL');
stateObjectArray[stateObjectArray.length] = new stateObject('Georgia',  'GA');
stateObjectArray[stateObjectArray.length] = new stateObject('Hawaii',  'HI');
stateObjectArray[stateObjectArray.length] = new stateObject('Idaho',  'ID');
stateObjectArray[stateObjectArray.length] = new stateObject('Illinois',  'IL');
stateObjectArray[stateObjectArray.length] = new stateObject('Indiana',  'IN');
stateObjectArray[stateObjectArray.length] = new stateObject('Iowa',  'IA');
stateObjectArray[stateObjectArray.length] = new stateObject('Kansas',  'KS');
stateObjectArray[stateObjectArray.length] = new stateObject('Kentucky',  'KY');
stateObjectArray[stateObjectArray.length] = new stateObject('Louisiana',  'LA');
stateObjectArray[stateObjectArray.length] = new stateObject('Maine',  'ME');
stateObjectArray[stateObjectArray.length] = new stateObject('Maryland',  'MD');
stateObjectArray[stateObjectArray.length] = new stateObject('Massachusetts',  'MA');
stateObjectArray[stateObjectArray.length] = new stateObject('Michigan',  'MI');
stateObjectArray[stateObjectArray.length] = new stateObject('Minnesota',  'MN');
stateObjectArray[stateObjectArray.length] = new stateObject('Mississippi',  'MS');
stateObjectArray[stateObjectArray.length] = new stateObject('Missouri',  'MO');
stateObjectArray[stateObjectArray.length] = new stateObject('Montana',  'MT');
stateObjectArray[stateObjectArray.length] = new stateObject('Nebraska',  'NE');
stateObjectArray[stateObjectArray.length] = new stateObject('Nevada',  'NV');
stateObjectArray[stateObjectArray.length] = new stateObject('New Hampshire',  'NH');
stateObjectArray[stateObjectArray.length] = new stateObject('New Jersey',  'NJ');
stateObjectArray[stateObjectArray.length] = new stateObject('New Mexico',  'NM');
stateObjectArray[stateObjectArray.length] = new stateObject('New York',  'NY');
stateObjectArray[stateObjectArray.length] = new stateObject('North Carolina',  'NC');
stateObjectArray[stateObjectArray.length] = new stateObject('North Dakota',  'ND');
stateObjectArray[stateObjectArray.length] = new stateObject('Ohio',  'OH');
stateObjectArray[stateObjectArray.length] = new stateObject('Oklahoma',  'OK');
stateObjectArray[stateObjectArray.length] = new stateObject('Oregon',  'OR');
stateObjectArray[stateObjectArray.length] = new stateObject('Pennsylvania',  'PA');
stateObjectArray[stateObjectArray.length] = new stateObject('Rhode Island',  'RI');
stateObjectArray[stateObjectArray.length] = new stateObject('South Carolina',  'SC');
stateObjectArray[stateObjectArray.length] = new stateObject('South Dakota',  'SD');
stateObjectArray[stateObjectArray.length] = new stateObject('Tennessee',  'TN');
stateObjectArray[stateObjectArray.length] = new stateObject('Texas',  'TX');
stateObjectArray[stateObjectArray.length] = new stateObject('Utah',  'UT');
stateObjectArray[stateObjectArray.length] = new stateObject('Vermont',  'VT');
stateObjectArray[stateObjectArray.length] = new stateObject('Virginia',  'VA');
stateObjectArray[stateObjectArray.length] = new stateObject('Washington',  'WA');
stateObjectArray[stateObjectArray.length] = new stateObject('West Virginia',  'WV');
stateObjectArray[stateObjectArray.length] = new stateObject('Wisconsin',  'WI');
stateObjectArray[stateObjectArray.length] = new stateObject('Wyoming',  'WY');