tontoSlideshowInterval = 5;
tontoNumberOfImages = 24;

tontoImages = new Array(tontoNumberOfImages);
tontoImages[0] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tn9780955632600_SINCITIES_COVER.jpg";
tontoImages[1] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tn9780955632617_PARALYMPIAN_COVER.jpg";
tontoImages[2] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tn9780955632624_BEINGNORMAL_COVER.jpg";
tontoImages[3] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tn9780955632631_EVERYTHING_COVER.jpg";
tontoImages[4] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tn9780955632648_BEER_COVER_NE.jpg";
tontoImages[5] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tn9780955632655_TOON_COVER_NE.jpg";
tontoImages[6] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tn9780955632662_9987.jpg";
tontoImages[7] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tn9780955632679_make it back.jpg";
tontoImages[8] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tnburglarsdog2_cover.jpg";
tontoImages[9] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tnCHARLIE-COVER-NEW.jpg";
tontoImages[10] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tndialm.jpg";
tontoImages[11] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tn9781907183003.jpg";
tontoImages[12] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tnjlonely.jpg";
tontoImages[13] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tnjonnykennedy_cover.jpg";
tontoImages[14] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tnmtss.jpg";
tontoImages[15] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tnrocketbeltcaper_cover.jpg";
tontoImages[16] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tnshakespeare.jpg";
tontoImages[17] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tnufwc.jpg";
tontoImages[18] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tnworal.jpg";
tontoImages[19] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tn9781907183003.jpg";
tontoImages[20] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tnCHARLIE-COVER-NEW.jpg";
tontoImages[21] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tnHOTVpaperback.jpg";
tontoImages[22] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tnMUSICMAN.jpg";
tontoImages[23] = "http://www.tontobooks.co.uk/images/covers/thumbnails/tnCHANGEAGENT.jpg";

function canManipulateImages() {
	if (document.images)
		return true;
	else
		return false;
}
function loadSlide(imageURL) {
	if (tontoImageCapableBrowser) {
		document.slide.src = imageURL;
		return false;
	}
	else {
		return true;
	}
}
function nextSlide() {
	tontoCurrentImage = (tontoCurrentImage + 1) % tontoNumberOfImages;
	loadSlide(tontoImages[tontoCurrentImage]);
}
tontoImageCapableBrowser = canManipulateImages();
tontoCurrentImage = 0;
setInterval("nextSlide()",tontoSlideshowInterval * 1000);

