

function reapply(){
	setTimeout("slideit()",2000)
return true
}
window.onerror=reapply

var number_of_images=5
var speed=1
var step=1
var whichimage=1

function slideit(){
	if (!document.images)
		return
	if (document.all)
		slide.filters.blendTrans.apply()
		document.images.slide.src=eval("image"+step+".src")
	if (document.all)
		slide.filters.blendTrans.play()
		whichimage=step
	if (step<number_of_images)
		step++
	else
		step=1
	if (document.all)
		setTimeout("slideit()",speed*1000+4000)
	else
		setTimeout("slideit()",speed*5000)
}

function slidelink(){
	if (whichimage==1)
		window.location="#"
	else if (whichimage==2)
		window.location="#"
	else if (whichimage==3)
		window.location="#"
}