// JavaScript Document


			
		couv1 = new Array;
		couv2 = new Array;
		couv3 = new Array;
		
		txt1 = new Array;
		txt2 = new Array;
		txt3 = new Array;
		
		var txtH = 'Por sus Yeguas<br />Sementales<br /><span style="color:#F00">Calificado</span>';
		
		couv1[0] = '../images/photo/etalon/OLE-4B.jpg';
		couv2[0] = '../images/photo/etalon/OLE-7B.jpg';
		couv3[0] = '../images/photo/etalon/OLE-6C.jpg';
		
		txt1[0] = 'OLE XI<br />7° SICAB';
		txt2[0] = '172 cm / nacido 2001';
		txt3[0] = 'Padre compeon de Espaņa';
		
		
		couv1[1] = '../images/photo/etalon/REGANON-3A.jpg';
		couv2[1] = '../images/photo/etalon/REGANON-3B.jpg';
		couv3[1] = '../images/photo/etalon/REGANON-3C.jpg';
		
		txt1[1] = 'REGAŅON<br />3° SICAB';
		txt2[1] = '165 cm / nacido 2004';
		txt3[1] = 'Padre compeon de Espaņa';
		
		couv1[2] = '../images/photo/etalon/TEQUILA-1A.jpg';
		couv2[2] = '../images/photo/etalon/TEQUILA-2A.jpg';
		couv3[2] = '../images/photo/etalon/TEQUILA-2B.jpg';
		
		txt1[2] = 'TEQUILA<br />2 Medalla de oro';
		txt2[2] = '168 cm / nacido 2006';
		txt3[2] = 'Hijo de OLE XI';
		
		num1 = 2;
		num2 = 2;
		num3 = 2;
		
		function ChangeImage()
			{
		if (num1 == -1) { num1 = (couv1.length-1)}
		if (num2 == -1) { num2 = (couv2.length-1)}
		if (num3 == -1) { num3 = (couv3.length-1)}
			if(document.getElementById)
				{
				document.getElementById("txtMenuGauche").innerHTML = txtH;
				document.getElementById("img01").src = couv1[num1];
				document.getElementById("img02").src = couv2[num2];
				document.getElementById("img03").src = couv3[num3];
				document.getElementById("txt1").innerHTML = txt1[num1];
				document.getElementById("txt2").innerHTML = txt2[num2];
				document.getElementById("txt3").innerHTML = txt3[num3];
				num1 = num1-1;
				num2 = num2-1;
				num3 = num3-1;
		}
		setTimeout("ChangeImage()", 8000);
			}
		window.onload = ChangeImage;
		//-->





	function changeImg(id, etat){
		var liste_photo = new Array();
		liste_photo = new Array();
		liste_photo[id] = new Array();
		
		//LES JUMENTS
		liste_photo[id]["off"] = "../images/design/bouton/bt_"+id+".gif";
		liste_photo[id]["on"] = "../images/design/bouton/bt_"+id+"_on.gif";
				
		doc = document.getElementById(id);
		doc.src = liste_photo[id][etat];
	}
	
	function changePhoto(){
		var liste_defile = new Array();
		i = 0;
		liste_defile[0] = "../images/photo/vrac/03.jpg";
		liste_defile[1] = "../images/photo/vrac/01.jpg";
		
		doc = document.getElementById('img01');
		setTimeout("changePhoto()",5000);
		//doc.innerHTML = liste_photo[id][etat];
		doc.src = liste_defile[i];
		i++;
	}
        
    //Voila la fonction...
    function OpenCenterPopUp(fichier, titre){
		var _x = 640;
		var _y = 510;
		var Left=window.screen.width/2-(_x/2);
		var Top=window.screen.height/2-(_y/2);
		//Videment faut modifier la config!!
		var Configuration="'toolbar=no, menubar=no, location=no, directories=no, status=no, resizeable=no, width="+_x+", height="+_y+", left=" + Left + ", top=" + Top;
		window.open(fichier,titre,Configuration);
    }