// JavaScript Document

function randomView() {
	var n = Math.floor( Math.random() * 3 );
	document.getElementById("randomview").className = "gourme_top_img_"+n;
}

window.onload = randomView;