// JavaScript Menu
window.onload = start;

function start() {
	choosePic();
	choosePic2();
	}

var myPix = new Array("images/deadcert.png","images/gallery/01.png","images/gallery/02.png","images/gallery/03.png","images/gallery/04.png","images/gallery/05.png","images/gallery/06.png","images/gallery/07.png","images/gallery/08.png","images/gallery/09.png","images/gallery/10.png","images/gallery/11.png","images/gallery/12.png");

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

var myPix2 = new Array("images/sherlock.png","images/gallery/13.png","images/gallery/14.png","images/gallery/15.png","images/gallery/16.png","images/gallery/17.png","images/gallery/18.png","images/gallery/19.png","images/gallery/20.png","images/gallery/21.png","images/gallery/22.png","images/gallery/23.png","images/gallery/24.png");

function choosePic2() {
	randomNum = Math.floor((Math.random() * myPix2.length));
	document.getElementById("myPic_two").src = myPix2[randomNum]; 
}

function roll(img_name, img_src)
   {
   document[img_name].src = img_src;
   }
