// Unique Random Picture Picker -> HOME
// -> Picks a random picture to display on the home page
// To Add a new picture to the
// Possibility, just add another
// entry to the array below.
// You will be required to make
// the override style sheet
// seperatly.
function randomHomePic () {
	var picture = new Array(
			"./images/homepage/structural/background1.jpg",
			"./images/homepage/structural/background2.jpg",
			"./images/homepage/structural/background3.jpg",
			"./images/homepage/structural/background4.jpg",
			"./images/homepage/structural/background5.jpg",
			"./images/homepage/structural/background6.jpg"
		);
	var rand = Math.round((picture.length - 1)*Math.random());
	document.contentbackground.src = picture[rand];
}