// JavaScript Document
if (document.getElementById) { window.onload = swap };
	function swap() {
		var numimages=4;
		rndimg = new Array("images/homepic01.jpg", "images/homepic02.jpg", "images/homepic03.jpg", "images/homepic05.jpg"); 
		bgcolor = new Array("#61aee6", "#a2cdd6", "#030303", "#5074c0");
		x=(Math.floor(Math.random()*numimages));
		randomimage=(rndimg[x]);
		matchingbgcol=(bgcolor[x]);
		document.getElementById("homepic").style.backgroundImage = "url("+ randomimage +")"; 
		document.getElementById("homepic").style.backgroundColor = matchingbgcol;
}
