// JavaScript Document
window.onload = choosePic;

var myPix = new Array(
					  "AlwaysCloseButNeverTouching/CarAndTrailor1.jpg",
					  "False Horizons/GreenHills1.jpg",
					  "Inside Out/BusinessMenMeeting1.jpg"
					  );

var myPixCaption = new Array(
					  "Car and Trailor",
					  "Green Hills",
					  "Business Men Meeting"
					  );
					

function choosePic(){
	randomNum = Math.floor((Math.random()* myPix.length));
	document.getElementById("slideshow").src = myPix[randomNum];
	document.getElementById("imgText").innerHTML = myPixCaption[randomNum];
}