<!--

//THIS JS ROTATES THE MIDDLE BOX ON THE HOMEPAGE
//Rotate every x milliseconds

var rotatePeriod = 4000;

//Set the Array length = the number of panels to rotate
var panel = new Array("","","","","","",""); 
var c=0;
function timedRotate()
{    
    for(i=0; i<panel.length; i=i+1)
    {
        panel[i] = document.getElementById("panel" + i);
        if(c == i){panel[i].style.display = "block";}
        else{panel[i].style.display = "none";}
    }
    c=c+1;
    if(c == panel.length){c = 0;}
    setTimeout("timedRotate()",rotatePeriod);
}






//-->