window.onload = choosePic;

var myPix = new Array("_images-pages/_index/randomQuote1.png","_images-pages/_index/randomQuote2.png","_images-pages/_index/randomQuote3.png","_images-pages/_index/randomQuote4.png");

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