// JScript File

document.LinkArray = new Array();
document.LinkArray.push(["/common/images/rotating_footer/astros.gif", "http://www.astros.com/"]);
document.LinkArray.push(["/common/images/rotating_footer/dynamos.gif", "http://houston.mlsnet.com/t200/index.jsp"]);
document.LinkArray.push(["/common/images/rotating_footer/symphony.gif", "http://www.houstonsymphony.org"]);
document.LinkArray.push(["/common/images/rotating_footer/ballet.gif", "http://www.houstonballet.org"]);
document.LinkArray.push(["/common/images/rotating_footer/texans.gif", "http://www.houstontexans.com"]);
document.LinkArray.push(["/common/images/rotating_footer/hgo.gif", "http://www.houstongrandopera.org"]);

document.ImageIndex = 0;

function SwapIt()
{
    var aelem = document.getElementById('anchorElement');
    var imgelem = document.getElementById('imageElement');
    
    imgelem.src = document.LinkArray[document.ImageIndex][0];
    aelem.href = document.LinkArray[document.ImageIndex][1];
    
    if(document.ImageIndex == document.LinkArray.length - 1) document.ImageIndex = 0;
    else document.ImageIndex++;
}
function Init()
{
    var interval = setInterval(SwapIt, 4000);
}

if(typeof(window.onload) == 'function')
{
    var oldfunc = window.onload;
    window.onload = function()
    {
        Init();
        oldfunc();
    }
}
else
{
    window.onload = Init;
}
