// JavaScript Document
var indice=0;
function place_Img(mar_no)
{
indice++;
if(mar_no==7)
{
document.getElementById("collec").innerHTML="";
document.getElementById("parent_collec").style.visibility="hidden";
}
else
{
document.getElementById("collec").innerHTML="";
document.getElementById("parent_collec").style.visibility="visible";
preload("p3",marche_nb[mar_no],sorties[mar_no]);
for (var j=1;j<=marche_nb[mar_no];j++)
{
document.getElementById("collec").innerHTML+="<DIV CLASS='photo2'><DIV id='c"+indice+j+"' style='POSITION:relative'><IMG src='"+sorties[mar_no]+"/"+sorties[mar_no]+"-"+j+".jpg' width=125></DIV></DIV>";
}

Img_Abs(marche_nb[mar_no],indice);
}
}

function Img_Abs(m_nb,indice)
{
if(document.getElementById)
{
			for (var i=1; i<=m_nb; i++)
			{
			div_col="c"+indice+i;
			document.getElementById(div_col).style.position="absolute";
			document.getElementById(div_col).style.zIndex=2;
			
			}
}
bouge()
}