var cd = 0; function countDown() { cd++; if(cd > 4) { nextFeature(); } setTimeout('countDown();',1000); } function showPage() { cd = 0; thispage--; document.getElementById('home-main').src = imgAry[thispage]; document.getElementById('main-link').href = linksAry[thispage]; thispage++; var newControls = ''; var q = 1; while(q < numpages) { if(q==thispage) { newControls = newControls + "" + q + ""; } else { newControls = newControls + " " + q + " "; } q++; } document.getElementById('home-rotator-controls').innerHTML = newControls; } function prevFeature() { thispage--; if(thispage == 0) { thispage = numpages; thispage--; } showPage(); } function nextFeature() { thispage++; if(thispage >= numpages) { thispage = 1; } showPage(); } var imgAry = new Array('http://site.worldsoccershophosting.com/homepage/img/image1.jpg','http://site.worldsoccershophosting.com/homepage/img/image2.jpg','http://site.worldsoccershophosting.com/homepage/img/image3.jpg','http://site.worldsoccershophosting.com/homepage/img/image4.jpg','http://site.worldsoccershophosting.com/homepage/img/image5.jpg',''); var linksAry = new Array('http://www.worldsoccershop.com/8671-wh.html','http://www.worldsoccershop.com/shop-by-league-euro-2008.html','http://www.worldsoccershop.com/148517.html','http://www.worldsoccershop.com/shop-by-team-france-national-soccer-team.html','http://www.worldsoccershop.com/shop-by-team-real-madrid-cf.html',''); document.getElementById('home-main').src = imgAry[0]; document.getElementById('main-link').href = linksAry[0]; document.getElementById('home-rotator-controls').innerHTML = "loading..."; var thispage = 1; var numpages = imgAry.length; showPage(); // start auto-rotation countDown();