// slideshow.js

var step=1
function slideit(){
  document.getElementById("slide").src="img/b"+step+".gif"

  if (step<5)
    step++
  else
    step=1
//call function "slideit()" every 5 seconds
  setTimeout("slideit()",5000)
}
slideit();
