// summer_random.js
// random image script




function randomSplash() {
  splashPages = ["http://www.touchmusic.org.uk/header/header01.jpg", "http://www.touchmusic.org.uk/header/header02.jpg", "http://www.touchmusic.org.uk/header/header03.jpg", "http://www.touchmusic.org.uk/header/header04.jpg", "http://www.touchmusic.org.uk/header/header05.jpg", "http://www.touchmusic.org.uk/header/header06.jpg", "http://www.touchmusic.org.uk/header/header07.jpg", "http://www.touchmusic.org.uk/header/header08.jpg", "http://www.touchmusic.org.uk/header/header09.jpg", "http://www.touchmusic.org.uk/header/header10.jpg", "http://www.touchmusic.org.uk/header/header11.jpg", "http://www.touchmusic.org.uk/header/header12.jpg", "http://www.touchmusic.org.uk/header/header13.jpg", "http://www.touchmusic.org.uk/header/header14.jpg", "http://www.touchmusic.org.uk/header/header15.jpg", "http://www.touchmusic.org.uk/header/header16.jpg", "http://www.touchmusic.org.uk/header/header17.jpg", "http://www.touchmusic.org.uk/header/header18.jpg", "http://www.touchmusic.org.uk/header/header19.jpg", "http://www.touchmusic.org.uk/header/header20.jpg", "http://www.touchmusic.org.uk/header/header21.jpg", "http://www.touchmusic.org.uk/header/header22.jpg", "http://www.touchmusic.org.uk/header/header23.jpg", "http://www.touchmusic.org.uk/header/header24.jpg", "http://www.touchmusic.org.uk/header/header25.jpg"];
				 
	idx = Math.floor(Math.random() * splashPages.length);
	randomImage = splashPages[ idx ];

	document.write('<img src="'+randomImage+'" width="700" height="150" alt="Touch"> \n');
	}



// surprise surprise, this script doesn't work in netscape,
// so by using document.write we write the random image script
// for ie, and hide it from netscape.

var browser = new Object();
var win=false;
if (navigator.userAgent.indexOf("Win")!=-1) {
	win=true; }
else
browser.version = parseInt(navigator.appVersion);
browser.isNavigator = false;
browser.isIE = false;
if (navigator.appName.indexOf("Netscape") != -1) {
	browser.isNavigator = true; }
if (navigator.appName.indexOf("Microsoft") != -1) {
	browser.isIE = true; }
if ((browser.isNavigator == true)&&win) {
	document.writeln('<img src=" "http://www.touchmusic.org.uk/header/header06.jpg", width="700" height="150" alt="Touch">');	}
	else	{
	document.writeln('<script language="JavaScript">');
	document.writeln('<!--');
	document.write("randomSplash()")
	document.writeln('\/\/ -->');
	document.writeln('<\/script>');	
}
