function homesMenu() {
var selectstring = new String("<form name='site_form'>\n<select name='site_select' onChange='sitejump();'>\n\t<option selected value='#top'>Visit Other ROHM Homes</option>\n\t	<option value='http://www.rohmservices.com'>ROHM Services Corporation</option>\n\t	<option value='http://www.avonnursinghome.com'>Avon Nursing Home</option>\n\t	<option value='http://www.thebrightonian.com'>The Brightonian</option>\n\t	<option value='http://www.conesuslakenursinghome.com'>Conesus Lake Nursing Home</option>\n\t	<option value='http://www.elmmanornursinghome.com'>Elm Manor</option>\n\t	<option value='http://www.thefountainsnursinghome.com'>The Fountains</option>\n\t	<option value='http://www.hornellgardens.com'>Hornell Gardens</option>\n\t	<option value='http://www.thehurlbut.com '>The Hurlbut</option>\n\t	<option value='http://www.newarkmanornursinghome.com'>Newark Manor</option>\n\t	<option value='http://www.penfieldplace.com'>Penfield Place</option>\n\t	<option value='http://www.senecanursingandrehabcenter.com'>Seneca Nursing Home</option>\n\t	<option value='http://www.theshorewinds.com '>The Shore Winds</option>\n\t	<option value='http://www.wedgewoodnursingfacility.com'>Wedgewood Nursing Home</option>\n\t	<option value='http://www.woodsidemanor.com'>Woodside Manor</option>\n	</select>");
document.writeln(selectstring);
}

function sitejump() {
	window.location.href = document.site_form.site_select.options[document.site_form.site_select.selectedIndex].value;
}