// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 30000;

var Picture = new Array(); // don't change this
var Urls = new Array(); // don't change this

// =====================================
// Do not edit anything below this line!
// =====================================

function runSlideShow(){
	if (document.all){		
		document.images.imgDefault.style.filter="blendTrans(duration=8)";	
		document.images.imgDefault.filters.blendTrans.Apply();
	}
	document.images.imgDefault.src = preLoad[jss].src;					
	if (document.all) document.images.imgDefault.filters.blendTrans.Play();
		jss = jss + 1;
	if (jss > (pss)) jss=1;
		tss = setTimeout('runSlideShow()', SlideShowSpeed);
	
}


function loadUrl() {
	document.location.href = Urls[jss];
}