//*****************Scroll messages*****************
//scroll bar message script and activation, rev 12/10/2004
//This credit line must stay intact
//Status Scrolling script
//For this script, visit java-scripts.net 
i=0;
 var Msg = 'Welcome to my new website for the Adirondack Northway and Spring and enjoy the mud season. New growth is all abounding with all these rains, but watch out for flash floods.                               ';
function scrollMsg() 
 {//Msg located in <body onload="scrollMsg('........')"> event
    var frontPart = Msg.substring(i,Msg.length)
    var backPart =  Msg.substring(0,i)
    window.status = frontPart + backPart

    if (i < Msg.length) {
        i++
    }
    else {
        i = 0
    }

    setTimeout('scrollMsg()',100)

}//end scrollMsg()**************************************************************************


function mover(x)
{
  document.getElementById(x).border='1';
  document.getElementById(x).style.background='#99CCFF'
}
function mout(x)
{
  this.border='0';
  //this.style.background='#CCCC33';
  document.getElementById(x).style.background='#E7D798'
}
function mout2()
{
  this.border='0';
  this.style.background='#FF9966';
}