var imgs = new Array();
var bannerlinks = new Array();
var imgcnt = 1;
var thisimg = 0;
//
// 1. GROUND CONTROL BANNER
bannerlinks[imgcnt] = 'http:\/\/gc.darxxide.com\/';
imgs[imgcnt++] = 'http:\/\/www.darxxide.com\/gc\/images\/banner-gc-20080601.gif';
//
// 2. UNEXTRAORDINARY GENTLEMEN BANNER
bannerlinks[imgcnt] = 'http:\/\/www.unextraordinarygentlemen.com\/';
imgs[imgcnt++] = 'http:\/\/www.darxxide.com\/images\/banner-uxg1.jpg';
//
// 3. STRAYLIGHT BANNER
bannerlinks[imgcnt] = 'http:\/\/straylight.darxxide.com\/';
imgs[imgcnt++] = 'http:\/\/www.darxxide.com\/gc\/images\/banner-straylight-200806-1.gif';
//
// 4. MP3J SARK BANNER
bannerlinks[imgcnt] = 'http:\/\/www.darxxide.com\/mp3jsark\/';
imgs[imgcnt++] = 'http:\/\/www.darxxide.com\/mp3jsark\/images\/banner-sark1.gif';
//
// 5. MYRIAD FORM BANNER
bannerlinks[imgcnt] = 'http:\/\/www.themyriadform.com\/';
imgs[imgcnt++] = 'http:\/\/www.darxxide.com\/images\/banner-myriad.jpg';


function rotate() {
			if (document.images) {
						thisimg++;
						if (thisimg >= imgcnt) thisimg = 0;
						document.rollimg.src = imgs[thisimg];
						setTimeout("rotate();",15000);
					}
		}

setTimeout("rotate();",10); 