var imgs = new Array(); var imgcnt = 0; var thisimg = 0;
imgs[imgcnt++] = 'http://gospelmusicroundup.bravehost.com/UnderConstruction/GMRsouthern.jpg';
imgs[imgcnt++] = 'http://gospelmusicroundup.bravehost.com/UnderConstruction/GMRtraditional.jpg';
imgs[imgcnt++] = 'http://gospelmusicroundup.bravehost.com/UnderConstruction/GospelMusic.jpg';
imgs[imgcnt++] = 'http://gospelmusicroundup.bravehost.com/UnderConstruction/muchmore.jpg';
imgs[imgcnt++] = 'http://gospelmusicroundup.bravehost.com/UnderConstruction/GMRstonehead.jpg';
function rotate() {
if (document.images) {
thisimg++;
if (thisimg >= imgcnt) thisimg = 0;
document.rollimg.src = imgs[thisimg];
setTimeout("rotate();",3000);
}
}
setTimeout("rotate();",3000); 