/* Script to animate photos of sheds on home page */

window.onload = rotate;

var animateImages = new Array("./images/graphics/animation/pic1.jpg",
                               "./images/graphics/animation/pic2.jpg",
                               "./images/graphics/animation/pic3.jpg");
var thisImage = 0;

function rotate() {
 if(thisImage == animateImages.length) {
  thisImage = 0;
 }
 document.getElementById("home_animation").src = animateImages[thisImage];
 thisImage++;
 
 setTimeout("rotate()", 2000);
}