/* jsmenu.js
for www.mistyrivercottages.ca
Author: Jim Furtado
Date: Febuary 5, 2008 */

/* hide errors script  */
function blockError(){return true;}
window.onerror = blockError;

<!--
/* right click script   */
function click() { if (event.button==2)
    {
      alert('Thanks for visiting, Come Back again!\n\n Misty River Cottages.ca \n\tCopyright 2006')
    }
}
    document.onmousedown=click
  //----->


<!--
 function doClear(theText)
{
     if (theText.value == theText.defaultValue)
 {
         theText.value = ""
     }
 }
 //-->

/* Stock Ticker in the Navbar Script  */
<!-- Hide script from old browsers Stock ticker in the Navbar
Speed = 200;  // milliseconds between scrolls
CharNum = 1;  // number of chars scrolled per time period

function doTicker() {  
text = "  Welcome to Misty River Cottages.ca Web Site ... Our Vision of Misty River Cottages is that people need to experience a great bed and breakfast ... and we do offer that ... call or email us today...";  
Scroll();
}
function Scroll() {  
window.setTimeout('Scroll()',Speed);  
window.status = text;  
text = text.substring(CharNum) + text.substring(0,CharNum);
}
doTicker();
//-->






