function random() {
	var r = Math.floor(Math.random()*2);
	// ^ change number to number of array elements
	// image, colour, top coordinate, left coordinate
	var d = [["#8CA7D3","home1.jpg","150px","145px"],["#C8B59E","home2.jpg","230px","0px"]];
	document.getElementById("bodyhome").style.backgroundColor = d[r][0];
	document.getElementById("bodyhome").style.backgroundImage = "url(resource/images/backgrounds/" + d[r][1] + ")";
	document.getElementById("main").style.marginTop = d[r][2];
	document.getElementById("main").style.marginLeft = d[r][3];	
}

function preload() {
	var menu1on = document.createElement('img');
	var menu2on = document.createElement('img');
	var menu3on = document.createElement('img');
	var menu4on = document.createElement('img');
	var menu5on = document.createElement('img');
	var menu6on = document.createElement('img');
	menu1on.setAttribute('src','resource/images/menunew/menu1on.png');
	menu2on.setAttribute('src','resource/images/menunew/menu2on.png');
	menu3on.setAttribute('src','resource/images/menunew/menu3on.png');
	menu4on.setAttribute('src','resource/images/menunew/menu4on.png');
	menu5on.setAttribute('src','resource/images/menunew/menu5on.png');
	menu6on.setAttribute('src','resource/images/menunew/menu6on.png');
}



