/* slideshow-changes-functions.js */
var newwindow=0; //open links in new window? 1=yes, 0=no

var imageholder=new Array();
var ie=document.all;
for (i=0;i<slideimages.length;i++)
	{
	imageholder[i]=new Image();
	imageholder[i].src=slideimages[i];
	}

function gotoshow()
    {
    if (newwindow)
        window.open(slidelinks[0])
    else
        window.location=slidelinks[0]
    }
	
var whichlink=0;
var whichimage=0;
var blenddelay=(ie)? document.images.slide.filters[0].duration*1000 : 0
function slideit(){
if (!document.images) return;
if (ie) document.images.slide.filters[0].apply()
document.images.slide.src=imageholder[whichimage].src
if (ie) document.images.slide.filters[0].play()
whichlink=whichimage
whichimage=(whichimage<slideimages.length-1)? whichimage+1 : 0
setTimeout("slideit()",slidespeed+blenddelay)
}