// JavaScript Document

var emname = "stephenwillam" + "sgallery";
var emhost = "gmail.com";

//random images
window.onload = choosePic;

var  myPortrait = new Array();
	myPortrait[0] = "images/home/man_with_hardhat.jpg";
	myPortrait[1] = "images/home/costume.jpg";
	myPortrait[2] = "images/home/castle.jpg";
	myPortrait[3] = "images/home/heronlake.jpg";
	myPortrait[4] = "images/home/drpozzi.jpg";
	myPortrait[5] = "images/home/RatTerrier.jpg";

var  myLandscape = new Array();
	myLandscape[0] = "images/home/afternoon.jpg";
	myLandscape[1] = "images/home/summersleeper.jpg";
	myLandscape[2] = "images/home/dreamscape_car.jpg";
	myLandscape[3] = "images/home/cafe.jpg";
	myLandscape[4] = "images/home/mandolin.jpg";

var  myFeatured = new Array();
	myFeatured[0] = "images/home/tankard.jpg";
	myFeatured[1] = "images/home/banana.jpg";
	myFeatured[2] = "images/home/boat.jpg";
	myFeatured[3] = "images/home/malt.jpg";
	myFeatured[4] = "images/home/strawberries.jpg";

function choosePic() {
	randomNum = Math.floor((Math.random() * myPortrait.length));
	document.getElementById("portrait").src = myPortrait[randomNum];

	randomNum = Math.floor((Math.random() * myLandscape.length));
	document.getElementById("landscape").src = myLandscape[randomNum];
	
	if (document.getElementById("featuredImg")) {
		randomNum = Math.floor((Math.random() * myFeatured.length));
		document.getElementById("featuredImg").src = myFeatured[randomNum];
	}
}

