﻿// JScript File
var copy = new Array();
copy[0] = "Check out <br />the stands <br />the pros are using";
copy[1] = "Our repair stands are<br />trusted by major team and<br />bike shop mechanics world wide";
copy[2] = "Our digital scales and calipers are<br />trusted by major team and<br />bike shop mechanics world wide";
copy[3] = "Our truing stations are<br />trusted by major team and<br />bike shop mechanics world wide";

var indx = 0;
var id = 0;
var d = null;

function rotatecopy(){
    if(!d) d = document.getElementById("redbox1");

    indx += 1;
    if(indx == copy.length){indx = 0;}
    d.innerHTML = copy[indx];
    
}

function startrotate(sec){
    id = setInterval("rotatecopy();", sec * 1000);
}

var OLD_FB_onload = (window.onload)? window.onload : new Function;
window.onload = function(){
startrotate(5);
OLD_FB_onload();
}
