
var msg = "Welcome to The ORIGINAL Townie Clothing Line website! Established 1990. Apparel and accessories honoring your home town!  Townie Tee Shirts, Townie Sweatshirts, Townie Caps, Townie Accessories!";
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/nav1.gif"     images[1]="images/nav2.gif"     images[2]="images/nav-bot1.gif"     images[3]="images/nav-bot2.gif"       // start preloading     for(i=0; i<=3; i++)      {          imageObj.src=images[i];     }

} 





