var step=1
function slide(){
var browser=navigator.appName;
if (!document.images)
return
if (browser=="Microsoft Internet Explorer") {
document.images.hoa.style.filter="revealTrans(duration=2, transition=12)";
document.images.hoa.filters.revealTrans(duration=2, transition=12).Apply();
document.images.hoa.filters.revealTrans.Play();
}
document.images.hoa.src=eval("image"+step+".src")
if (step<10)
step++
else
step=1
setTimeout("slide()",6000)
}
slide()
