window.onload = choosePic;

function choosePic() {
	var myPix = new Array();
	//Old pictures
	myPix.push("images/library.png");
	myPix.push("images/football_field.png");
	myPix.push("images/kings_chapel.png");
	myPix.push("images/athletic_arena.png");
	myPix.push("images/campus_arial.png");
	myPix.push("images/cornell_building.png");
	myPix.push("images/cornell_doors.png");
	myPix.push("images/cornell_hall.png");
	myPix.push("images/cornell_hall.png");
	myPix.push("images/ho_plaza.png");
	myPix.push("images/science_building.png");
	myPix.push("images/stattler_atrium.png");
	myPix.push("images/undergrad_campus.png");
	
	//New Pidcutes
	myPix.push("images/rotate/5.jpg");
	myPix.push("images/rotate/44.jpg");
	myPix.push("images/rotate/45.jpg");
	myPix.push("images/rotate/49.jpg");
	myPix.push("images/rotate/50.jpg");
	myPix.push("images/rotate/51.jpg");
	myPix.push("images/rotate/55.jpg");
	myPix.push("images/rotate/56.jpg");
	myPix.push("images/rotate/59.jpg");
	myPix.push("images/rotate/60.jpg");
	myPix.push("images/rotate/62.jpg");
	myPix.push("images/rotate/balch.jpg");
	myPix.push("images/rotate/caygualake.jpg");
	myPix.push("images/rotate/chapel.jpg");
	myPix.push("images/rotate/ives.jpg");
	myPix.push("images/rotate/lawschool.jpg");
	myPix.push("images/rotate/library.jpg");
	myPix.push("images/rotate/mcgraw.jpg");
	myPix.push("images/rotate/SAE.jpg");
	myPix.push("images/rotate/sage.jpg");
	//myPix.push("images/rotate/sibley.jpg");
	myPix.push("images/rotate/view.jpg");
	myPix.push("images/rotate/westcampus.jpg");
	
	randomNum = Math.floor((Math.random() * myPix.length));
	document.getElementById("pic").src = myPix[randomNum];
}