var step=1
var whichimage=1
function slideit(){
if (!document.images)
return
//If the browser is IE 4.x
if (document.all)
document.images.slide.filters.blendTrans.apply()
document.images.slide.src=eval("image"+step+".src")
//If the browser is IE 4.x
if (document.all)
document.images.slide.filters.blendTrans.play()
whichimage=step
if (step<7)
step++
else
step=1
setTimeout("slideit()",5500)
}