﻿/*
Random image slideshow- By Tyler Clarke (tyler@ihatecoffee.com)
For this script and more, visit http://www.javascriptkit.com
*/
var delay=1000000 //set delay in miliseconds
var curindex=0
var randomimages=new Array()
randomimages[0]="http://www2.istockphoto.com/file_thumbview_approve/3993658/1/istockphoto_3993658-upside-down-hipster.jpg"
randomimages[1]="http://www2.istockphoto.com/file_thumbview_approve/3354516/1/istockphoto_3354516-hmmm.jpg"
randomimages[2]="http://www2.istockphoto.com/file_thumbview_approve/3027296/1/istockphoto_3027296-stressed.jpg"
randomimages[3]="http://www2.istockphoto.com/file_thumbview_approve/5685623/1/istockphoto_5685623-anger.jpg"
randomimages[4]="http://www2.istockphoto.com/file_thumbview_approve/8560762/1/istockphoto_8560762-ladies-making-faces.jpg"
randomimages[5]="http://www2.istockphoto.com/file_thumbview_approve/5487211/1/istockphoto_5487211-mustache-series-two.jpg"
randomimages[6]="http://www2.istockphoto.com/file_thumbview_approve/3225178/1/istockphoto_3225178-hocus-pocus.jpg"
randomimages[7]="http://www2.istockphoto.com/file_thumbview_approve/191328/1/istockphoto_191328-eye-spy-2.jpg"
randomimages[8]="http://www2.istockphoto.com/file_thumbview_approve/228937/1/istockphoto_228937-computer-kid.jpg"
randomimages[9]="http://www2.istockphoto.com/file_thumbview_approve/7649731/1/istockphoto_7649731-joker.jpg"
randomimages[10]="http://www2.istockphoto.com/file_thumbview_approve/3869313/1/istockphoto_3869313-having-fun-with-friends.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)

