window.onload=function(){
	var imgURL=["img/index1.jpg","img/index2.jpg","img/index3.jpg","img/index4.jpg","img/index5.jpg"];
	var n=Math.floor(Math.random()*imgURL.length);
	document.getElementById("randomimage").src=imgURL[n];
}