// JavaScript Document
window.onload = choosePic;

var myPix = new Array("images/index_slideshow1.png","images/index_slideshow2.png","images/index_slideshow3.png","images/index_slideshow4.png","images/index_slideshow5.png");

function choosePic() {
	randomNum = Math.floor((Math.random() * myPix.length));
	document.getElementById("perspective").src = myPix[randomNum];
}

