function reapply(){
setTimeout("slideit()",10000)
return true
}
window.onerror=reapply<!--
var image1=new Image()
image1.src="images/accordian_img/cs/1.jpg"
var image2=new Image()
image2.src="images/accordian_img/cs/2.jpg"
var image3=new Image()
image3.src="images/accordian_img/cs/3.jpg"
var image4=new Image()
image4.src="images/accordian_img/cs/5.jpg"
var image5=new Image()
image5.src="images/accordian_img/cs/4.jpg"
//-->
<!--
////change number of images below 
var number_of_images=5
//change speed below (in seconds)
var speed=10
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*500+2000)
else
setTimeout("slideit()",speed*1000)
}
function slidelink(){
if (whichimage==1)
top.location.href ="#"
else if (whichimage==2)
top.location.href ="#"
else if (whichimage==3)
top.location.href ="#"
else if (whichimage==4)
top.location.href ="#"
else if (whichimage==5)
top.location.href ="#"
}
//-->