
<!-- begin
// 
var startTime   =null;
var timerID     =null;
var initial     =new Date();
var pos         =0;
var menuItem    =null;

function initArray() {
 this.length = initArray.arguments.length
   for (var i = 0; i < this.length; i++)      {
    this[i+1] = initArray.arguments[i]
   }
}

function parsemenuItem(data,num) {
 for(var i=0;i<data.length;i++)  {
  if(data.substring(i,i+1)=="|")  break;
   }
   if (num==0) return(data.substring(0,i));
   else  return(data.substring(i+1,data.length));
}

function startTimer() {
   initial = new Date();
   startTime=initial.getTime();
   stopTimer();
   menuItem = new initArray(
   "SupportHoseStore|http://www.supporthosestore.com/athleticrecoverysock.html",
"ForYourLegs|http://www.foryourlegs.com/Sigvaris-Athletic-Recovery-Sock-15-20mmHg-per-pair-p-17025.html",
"BrightLifeDirect|http://www.brightlifedirect.com/BRAND-Sigvaris-Athletic-Recovery/c354_359_414/index.html",
"AmesWalker|http://www.ameswalker.com/si15mewoatre.html",
"DiscountSurgicalStockings|http://www.discountsurgical.com/landingpage.asp?id=32&refID=6CCF9E1","Support Sock Shop|http://www.supportsockshop.com/search.asp?search=athletic+recovery");
   showTimer();
}

function stopTimer() {
   timerID=null;
   menuItem=null;
   //clearTimeout(timerID);
}

function showTimer() {
 pos= (pos == menuItem.length) ? 1 : pos + 1;
 document.forms[0].elements[0].value=parsemenuItem(menuItem[pos],0);

   timerID=window.setTimeout('showTimer()',1000);
}

function goToUrl()  {
   //parent.welcome.location=parsemenuItem(menuItem[pos],1);
//   this.location=parsemenuItem(menuItem[pos],1);
      gohere = parsemenuItem(menuItem[pos],1);
  window.open (gohere,"_blank"); 
   return (false);
}
// end -->
