var imagePath = "images/";
var arrayImages = new Array("splash_brackets_1.jpg",
							"splash_brackets_2.jpg",
							"splash_draft.jpg",
							"splash_freeAgents_1.jpg",
							"splash_freeAgents_2.jpg",
							"splash_playbook_1.jpg",
							"splash_playbook_4.jpg",
							"splash_sn_1.jpg",
							"splash_sn_2.jpg",
							"splash_sn_3.jpg",
							"splash_sn_4.jpg",
							"splash_telestrator_1.jpg",
							"splash_telestrator_2.jpg",
							"splash_telestrator_3.jpg",
							"splash_telestrator_4.jpg",
							"splash_telestrator_5.jpg",
							"splash_thesis.jpg");
							
//"splash_.jpg",

function loadSplash(){
	var randomNum = Math.floor(Math.random() * arrayImages.length);
	document.getElementById("splashImage").src = imagePath + arrayImages[randomNum];
}
