
<!--
function rand_number(n)
{
var x;
x=Math.round(Math.random()*100);
x%=n;
return x;
}
function boucle_imagesC(lastid)
{
var i;
var intervalle=7000;
var img = new Array();

img[0]='<a href="http://www.reshot-olimpia.it" target="_blank"><IMG src="JS/c-olimpia.jpg" border=0></a>';

img[1]='<a href="http://www.nascimbeni.it" target="_blank"><IMG src="JS/c-margherita.jpg" border=0></a>';


var imageToShowIndex = -1;
if (lastid>=0)
if (lastid!=img.length-1)
imageToShowIndex = lastid+1;
else
imageToShowIndex = 0;
else
imageToShowIndex=rand_number(img.length);

document.getElementById('boucleC').innerHTML=img[imageToShowIndex];
setTimeout("boucle_imagesC("+eval("imageToShowIndex")+")",intervalle);
}
//-->

