adImages = new Array("images/paperboys.jpg", "images/danielwesley.jpg", "images/kimchurchill.jpg", "images/marleydaemon.jpg", "images/dannymichel.jpg", "images/jrshore.jpg", "images/charlottecornfield.jpg", "images/ben.jpg", "images/maemoore.jpg", "images/thefugitives.jpg", "images/helenaustin_sm.jpg", "images/chopstixx.jpg", "images/trentolver.jpg");
adURL = new Array("artists.php?page=1","artists.php?page=2", "artists.php?page=3","artists.php?page=4","artists.php?page=5", "artists.php?page=6","artists.php?page=7","artists.php?page=9","artists.php?page=10","artists.php?page=11","artists.php?page=12", "artists.php?page=13", "artists.php?page=14");
thisAd = -1;
imgCt = adImages.length;

function rotate() {
	if (document.images) {
		if (document.adBanner.complete) {
			thisAd++;
			if (thisAd == imgCt) {
				thisAd = 0;
			}
			document.adBanner.src=adImages[thisAd];
		}
		setTimeout("rotate()", 3 * 1000);
	}
}

function newLocation() {
	document.location.href = adURL[thisAd];
}
