/*
Random image slideshow- By Tyler Clarke (tyler@ihatecoffee.com)
For this script and more, visit http://www.javascriptkit.com
*/

var delay=4500 //set delay in miliseconds
var curindex=0

var randomimages=new Array()

	randomimages[0]="images/1.jpg"
	randomimages[1]="images/5.jpg"
	randomimages[2]="images/2.jpg"
	randomimages[3]="images/4.jpg"
	randomimages[4]="images/3.jpg"
	randomimages[5]="images/6.jpg"

var preload=new Array()

for (n=0;n<randomimages.length;n++)
{
	preload[n]=new Image()
	preload[n].src=randomimages[n]
}

document.write('<img name="defaultimage" src="'+randomimages[Math.floor(Math.random()*(randomimages.length))]+'">')

function rotateimage()
{

if (curindex==(tempindex=Math.floor(Math.random()*(randomimages.length)))){
curindex=curindex==0? 1 : curindex-1
}
else
curindex=tempindex

	document.images.defaultimage.src=randomimages[curindex]
}

setInterval("rotateimage()",delay)