/* Random image selection  */
var imagez = [
'<a href="http://www.artcurial.com/fr/infinitebidding.asp?method=getUpcomingAuctions&tokenID=11115717&custno=&lang=fr-fr"><img src="http://www.artcurial.com/_media/images/home_col_gauche/artcurial-live-bid.gif" ></a>',
'<a href="http://www.artcurial.com/fr/infinitebidding.asp?method=getUpcomingAuctions&tokenID=11115717&custno=&lang=fr-fr"><img src="http://www.artcurial.com/_media/images/home_col_gauche/artcurial-live-bid.gif" ></a>'




];

	function getRandomImage() {
		var rand = Math.round(Math.random()*(imagez.length-1)); 
		document.write(imagez[rand]);
	}
	
