
var msg = "Welcome to Fairfield Farm website. Dressage Training - Indoor & Outdoor Arena - Riding Instructions - Well Trained School Horses  - Your Horse or Ours - Boarding - Pony Rides & Parties";
var spacer = "     ";
var pos = 0;
function ScrollMessage() {
   window.status = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);
   pos++;
   if (pos > msg.length) pos = 0;
   window.setTimeout("ScrollMessage()",200);
}
ScrollMessage();



function preloader() 
{
     // counter     var i = 0;
     // create object     imageObj = new Image();
     // set image list     images = new Array();     images[0]="images/dot1.gif"     images[1]="images/dot2.gif"       // start preloading     for(i=0; i<=1; i++)      {          imageObj.src=images[i];     }

} 


