<!-- Hiding Script from Old Browsers

  function getMenu(menuNumber)
  {
    var retValue = "" + menuNumber;

    switch(eval(menuNumber)){
      case 1:
          retValue = ''
          + '<a href="index.html">Home</a>'
          + '<a href="contact.html">Contact Us</a>'
          + '<a href="sales.html"><b>HORSES FOR SALE</b></a>'
          + '<a href="videos.html">Videos</a>'
          + '<a href="jussforthetaste.html">Juss for the Taste</a>'
          + '<a href="broodmares.html">Our Broodmares</a>'
          + '<a href="babies.html">Juss Babies</a>'
          + '<a href="sold.html">Previously at AH</a>'
        break;

      case 2:
          retValue = ''
          + '<a href="http://www.archershorses.com/index.html">Home</a>'
          + '<a href="http://www.archershorses.com/contact.html">Contact Us</a>'
          + '<a href="http://www.archershorses.com/sales.html"><b>HORSES FOR SALE</b></a>'
          + '<a href="http://www.archershorses.com/videos.html">Videos</a>'
          + '<a href="http://www.archershorses.com/jussforthetaste.html">Juss for the Taste</a>'
          + '<a href="http://www.archershorses.com/broodmares.html">Our Broodmares</a>'
          + '<a href="http://www.archershorses.com/babies.html">Juss Babies</a>'
          + '<a href="http://www.archershorses.com/sold.html">Previously at AH</a>'
        break;

    }

    return retValue;
  }


// End Hiding from Old Browsers -->
