

<!-- begin
// please help yourself to this code.
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("Outdoor patio furniture care, cleaning refinishing|http://www.refinishfurniture.com/outdoor_furniture_contents.htm",
"Teak information, care, clean refinish|http://www.refinishfurniture.com/teak_info_contents.htm",
"Wicker and Caning section contents|http://www.refinishfurniture.com/wicker_menu.htm",
"Picture frame supply clamps|http://refinishfurniture.com/picture_frame_supply_clamps.htm",
"Outdoor patio furniture care, cleaning refinishing|http://www.refinishfurniture.com/outdoor_furniture_contents.htm",
"Teak information, care, clean refinish|http://www.refinishfurniture.com/teak_info_contents.htm",
"Wicker and Caning section contents|http://www.refinishfurniture.com/wicker_menu.htm",
"Picture frame supply clamps|http://refinishfurniture.com/picture_frame_supply_clamps.htm",
"Picture framing supply|http://refinishfurniture.com/picture_frame_supply.htm",
"Picture frame restoration|http://refinishfurniture.com/picture_frame_restoration.htm",
"Picture frame matting|http://refinishfurniture.com/picture_frame_matting.htm",
"Why is there a  quarter inch more on a picture frame mat bottom|http://refinishfurniture.com/picture_frame_mat_quarter_bottom.htm",
"Kitchen cabinet refinish repaint basic|http://www.refinishfurniture.com/kitchen_cabinet_refinishing_basic.htm",
"How to cut  picture frame molding|http://refinishfurniture.com/picture_frame_cut_molding.htm",
"Picture frame corner repair|http://refinishfurniture.com/picture_frame_corner_repair.htm",
"Picture frame section contents|http://refinishfurniture.com/picture_frame_contents.htm",
"Picture frame assembly|http://refinishfurniture.com/picture_frame_assembly.htm",
"Kitchen accessories page 2|http://www.refinishfurniture.com/roc_kitchen_accessories_pics_2.htm",
"Kitchen accessories page 1|http://www.refinishfurniture.com/roc_kitchen_accessories_pics_1.htm",
"Stain and finish kitchen cabinet refacing|http://www.refinishfurniture.com/kitchen_cabinet_veneer_stain_finish.htm",
"Kitchen cabinet refacing kitchen cabinet|http://www.refinishfurniture.com/kitchen_cabinet_veneer_preparation.htm",
"Trimming kitchen cabinet refacing veneer|http://www.refinishfurniture.com/kitchen_cabinet_trim_veneer.htm",
"Apply kitchen cabinet refacing veneer page 2|http://www.refinishfurniture.com/kitchen_cabinet_refacing_veneer2.htm",
"Kitchen cabinet refinish repaint basic|http://www.refinishfurniture.com/kitchen_cabinet_refinishing_basic.htm",
"Picture framing supply|http://refinishfurniture.com/picture_frame_supply.htm"
   );
   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()',9000);
}

function goToUrl()  {
   //parent.welcome.location=parsemenuItem(menuItem[pos],1);
   this.location=parsemenuItem(menuItem[pos],1);
   return (false);
}
// end -->


