var imgHome = new Array();
imgHome[0]='<table width=\"415\" align=\"left\"><tr><td><img src=\"/turin/fichiers/Image/Home/closing_home.jpg\" width=\"415\" height=\"277\" alt=\"\" /></td></tr></table><br clear="all" />';
imgHome[1]='<table width=\"415\" align=\"left\"><tr><td><img src=\"/turin/fichiers/Image/Home/closing_home2.jpg\" width=\"415\" height=\"274\" alt=\"\" /></td></tr></table><br clear="all" />';
var imgHomenb = imgHome.length;
function pickRandom(range) {
	if (Math.random)
		return Math.round(Math.random() * (range-1));
	else {
		var now = new Date();
		return (now.getTime() / 1000) % range;
	}
}
var imgHomechoice = pickRandom(imgHomenb);
document.write(imgHome[imgHomechoice]+'<br clear="all" />');
