﻿window.onload = initLinks;

var myPix = new Array("images/JJS_4646.jpg","images/JJS_4648.jpg","images/JJS_4784a.jpg","images/JJS_4804.jpg",
			"images/JJS_5104.jpg","images/JJS_5114.jpg","images/JJS_5115.jpg","images/JJS_5118.jpg",
			"images/JJS_5125.jpg","images/JJS_5138.jpg","images/JJS_5141.jpg");
var thisPic = 1;

function initLinks() {
	document.getElementById("myPicture").src = myPix[thisPic];
	rotate();

}



function rotate() {
	thisPic++;
	if (thisPic == myPix.length) {
		thisPic = 0;
	}
	document.getElementById("myPicture").src = myPix[thisPic];
	setTimeout("rotate()", 2 * 1000);
}


