
		function homesMenu() {
			return;
		}

	function homesMenuold() {
			document.writeln('<form><select name="SelectMenu" onChange="jumpwebPage(this.form)">');
			tot =	websiteopt.length;
			document.write("option selected" + websiteopt[0]);
			for (var i = 1; i <= tot; i++)
				document.write("<option>" + websiteopt[i]);
			document.writeln('</select>');
			document.writeln('</form>');
			}

	function jumpwebPage(form) {
          i = form.SelectMenu.selectedIndex;
          if (i == 0) return;
          window.location.href = weburl[i+1];
          }

	function MakeArray()
          {
          this.length = MakeArray.arguments.length
          for (var i = 0; i < this.length; i++)
          this[i+1] = MakeArray.arguments[i]
          }

          var websiteopt = new MakeArray( "Select one of our Homes",
				      								"ROHM Services Corporation",
				      								"Avon Nursing Home",
                       							"The Brightonian",
                                      		"Conesus Lake Nursing Home",
                                      		"Elm Manor",
														"The Fountains",
														"Hornell Gardens",
														"The Hurlbut",
														"Newark Manor",
														"Penfield Place",
														"Seneca Nursing Home",
														"The Shore Winds",
														"Wedgewood Nursing Home",
														"Woodside Manor"
														);

        