 var scrlStr="Check out our specials!! ElegantBarStools.com... get quality, get value!"
 var width=140;
 var strLen=scrlStr.length;
 var pos=1-width;
 function scroll() {
    var scroll = "";
	pos++;
	if(pos == strLen) pos =1 - width;
	if(pos<0)   {
	  for(var i=1;
	    i<=Math.abs(pos);
		i++)scroll=scroll+" ";
		scroll=scroll+scrlStr.substring(0,width-i+1);
	}
	else
	  scroll=scroll+scrlStr.substring(pos,pos+width);
	  //window.status=scroll;
	  setTimeout("scroll()",75);
 }