window.onload=function()
{
	Setup();
};

function Setup(){
	if (document.getElementById('imcpanel'))
		HideImcPanel();
	/*if (document.getElementById('reponse_cachees'))
		HideAll();
	if (document.getElementById('smenu1'))
		disparition();*/
	
	/*if (document.getElementById('menu_haut'))*/
		simplePreload("onglet1.html","onglet1_on.html",
					  "onglet2.html","onglet2_on.html",
					  "onglet3.html","onglet3_on.html",
					  "onglet4.html","onglet4_on.html",
					  "onglet5.html","onglet5_on.html",
					  "onglet6.html","onglet6_on.html",
					  "onglet7.html","onglet7_on.html");
	/*if (document.getElementById('menu_gauche'))*/
		simplePreload("onglet1_gauche.html","onglet1_gauche_on.html",
					  "onglet2_gauche.html","onglet2_gauche_on.html",
					  "onglet3_gauche.html","onglet3_gauche_on.html",
					  "onglet4_gauche.html","onglet4_gauche_on.html",
					  "onglet5_gauche.html","onglet5_gauche_on.html",
					  "onglet6_gauche.html","onglet6_gauche_on.html",
					  "onglet7_gauche.html","onglet7_gauche_on.html");
}

/*function HideAll () {
	mstate=0;
	for (var i = 1; i<=maxinfo; i++) 
	{
		if (document.getElementById('reponse'+i)) 
			document.getElementById('reponse'+i).style.display='none';
	}
}*/


/*function disparition ()
{
	mstate=0;
	for (var i = 1; i<=7; i++) 
	{
		if (document.getElementById('smenu'+i)) 
			document.getElementById('smenu'+i).style.display='none';
	}
}*/

/*function simplePreload()
{ 
	
	var args = simplePreload.arguments;
	document.imageArray = new Array(args.length);
	for(var i=0; i<args.length; i++)
	{
		document.imageArray[i] = new Image;
		document.imageArray[i].src = args[i];
	}
}*/

function simplePreload(){
	imgload=new Array();
	for(var j=0; j<simplePreload.arguments.length; j++){
		imgload[j]=new Image();
		imgload[j].src=simplePreload.arguments[j];
	}
}

function zoom_image(vide,img) {
	//window.open(path, "image_zoom", 'menubar=no,toolbar=no,location=no,directories=no,status=yes,scrollbars=yes,resizable=yes,fullscreen=no,channelmode=no,width='+path.width+',height='+path.height);

	titre="image_zoom";
	w=open("",'image','width=400,height=400,toolbar=no,scrollbars=no,resizable=yes');	
	w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>");
	w.document.write("<SCRIPT language=javascript>function checksize()  { if (document.images[0].complete) {  window.resizeTo(document.images[0].width+12,document.images[0].height+40); window.focus();} else { setTimeout('check()',250) } }</"+"SCRIPT>");
	w.document.write("<BODY onload='checksize()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0><IMG src='"+img+"' border=0>");
	w.document.write("");
	w.document.write("</BODY></HTML>");
	w.document.close();

}