function getRandomImage(total) {
	var n = Math.floor(Math.random() * total) + 1;
	document.write("<img src='storage/home-images/" + n + ".jpg' />");
}