<!--
var startSlide=Math.floor(Math.random()*6)
var whichimage=startSlide
var slideimages=new Array()
function slideshowimages(){
for (i=0;i<slideshowimages.arguments.length;i++){
slideimages[i]=new Image()
slideimages[i].src=slideshowimages.arguments[i]
}
}
function doEnter(nextfield){if(window.event && window.event.keyCode==13){if(nextfield.type=="submit"){nextfield.submit();}else{nextfield.focus();}return false;}else{return true;}}
function popupWindow(url,width,height){
window.open(url,"","toolbar=yes,location=no,directories=yes,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height);
}
slideshowimages("slide1.jpg","slide2.jpg","slide3.jpg","slide4.jpg","slide5.jpg","slide6.jpg")
function slideit(){
if (!document.images)
return
document.images.slide.style.filter="blendTrans(duration=2)"
document.images.slide.filters.blendTrans.Apply()      
document.images.slide.src=slideimages[whichimage].src
document.images.slide.filters.blendTrans.Play()
if (whichimage<slideimages.length-1)
whichimage++
else
whichimage=0
setTimeout("slideit()",5000)
}
//-->