 var a //site FR
 a= new Array();
 a[0]=new Image;
 a[0].src="/img/protegys_mntop0.gif";
 a[1]=new Image;
 a[1].src="/img/protegys_mntop0_on.gif";
 
 a[2]=new Image;
 a[2].src="/img/protegys_mntop1.gif";
 a[3]=new Image;
 a[3].src="/img/protegys_mntop1_on.gif";
 
 a[4]=new Image;
 a[4].src="/img/protegys_mntop2.gif";
 a[5]=new Image;
 a[5].src="/img/protegys_mntop2_on.gif";
 
 a[6]=new Image;
 a[6].src="/img/protegys_mntop3.gif";
 a[7]=new Image;
 a[7].src="/img/protegys_mntop3_on.gif";
 
 a[8]=new Image;
 a[8].src="/img/protegys_mntop4.gif";
 a[9]=new Image;
 a[9].src="/img/protegys_mntop4_on.gif";
 
 a[10]=new Image;
 a[10].src="/img/protegys_mntop5.gif";
 a[11]=new Image;
 a[11].src="/img/protegys_mntop5_on.gif";

// SITE AN
 var b //site FR
 b= new Array();
 b[0]=new Image;
 b[0].src="/img/EN/protegys_mntop0.gif";
 b[1]=new Image;
 b[1].src="/img/EN/protegys_mntop0_on.gif";
 
 b[2]=new Image;
 b[2].src="/img/EN/protegys_mntop1.gif";
 b[3]=new Image;
 b[3].src="/img/EN/protegys_mntop1_on.gif";
 
 b[4]=new Image;
 b[4].src="/img/EN/protegys_mntop2.gif";
 b[5]=new Image;
 b[5].src="/img/EN/protegys_mntop2_on.gif";
 
 b[6]=new Image;
 b[6].src="/img/EN/protegys_mntop3.gif";
 b[7]=new Image;
 b[7].src="/img/EN/protegys_mntop3_on.gif";
 
 b[8]=new Image;
 b[8].src="/img/EN/protegys_mntop4.gif";
 b[9]=new Image;
 b[9].src="/img/EN/protegys_mntop4_on.gif";
 
 b[10]=new Image;
 b[10].src="/img/EN/protegys_mntop5.gif";
 b[11]=new Image;
 b[11].src="/img/EN/protegys_mntop5_on.gif";

function roll(img,nb) {
   
   document.getElementById(img).src=a[nb].src
}
function rollEn(img,nb) {
  document.getElementById(img).src=b[nb].src
}

function Click_Menu(){
	
	var img0=document.getElementById("img0");
	var img1=document.getElementById("img1");
	var img2=document.getElementById("img2");
	var img3=document.getElementById("img3");
	var img4=document.getElementById("img4");
	var img5=document.getElementById("img5");

	
	var img0_en=document.getElementById("img0_en");
	var img1_en=document.getElementById("img1_en");
	var img2_en=document.getElementById("img2_en");
	var img3_en=document.getElementById("img3_en");
	var img4_en=document.getElementById("img4_en");
	var img5_en=document.getElementById("img5_en");
	//----------------------------------------------------------------site FR
	if(document.getElementById("img0")){
		img0.onclick = function()
		{	
			roll('img0','1');roll('img1','2');roll('img2','4');roll('img3','6');roll('img4','8');roll('img5','10');
		}
		
		img1.onclick = function()
		{
			roll('img0','0');roll('img1','3');roll('img2','4');roll('img3','6');roll('img4','8');roll('img5','10');
		}
		img2.onclick = function()
		{
			roll('img0','0');roll('img1','2');roll('img2','5');roll('img3','6');roll('img4','8');roll('img5','10');
		}
		img3.onclick = function()
		{
			roll('img0','0');roll('img1','2');roll('img2','4');roll('img3','7');roll('img4','8');roll('img5','10');
		}
		img4.onclick = function()
		{
			roll('img0','0');roll('img1','2');roll('img2','4');roll('img3','6');roll('img4','9');roll('img5','10');
		}
		img5.onclick = function()
		{
			roll('img0','0');roll('img1','2');roll('img2','4');roll('img3','6');roll('img4','8');roll('img5','11');
		}
	}
	
	//----------------------------------------------------------------site ENG
	if(document.getElementById("img0_en")){
		img0_en.onclick = function()
		{ 
			rollEn('img0_en','1');rollEn('img1_en','2');rollEn('img2_en','4');rollEn('img3_en','6');rollEn('img4_en','8');rollEn('img5_en','10');
		}
		img1_en.onclick = function()
		{
			rollEn('img0_en','0');rollEn('img1_en','3');rollEn('img2_en','4');rollEn('img3_en','6');rollEn('img4_en','8');rollEn('img5_en','10');
		}
		img2_en.onclick = function()
		{
			rollEn('img0_en','0');rollEn('img1_en','2');rollEn('img2_en','5');rollEn('img3_en','6');rollEn('img4_en','8');rollEn('img5_en','10');
		}
		img3_en.onclick = function()
		{
			rollEn('img0_en','0');rollEn('img1_en','2');rollEn('img2_en','4');rollEn('img3_en','7');rollEn('img4_en','8');rollEn('img5_en','10');
		}
		img4_en.onclick = function()
		{
			rollEn('img0_en','0');rollEn('img1_en','2');rollEn('img2_en','4');rollEn('img3_en','6');rollEn('img4_en','9');rollEn('img5_en','10');
		}
		img5_en.onclick = function()
		{
			rollEn('img0_en','0');rollEn('img1_en','2');rollEn('img2_en','4');rollEn('img3_en','6');rollEn('img4_en','8');rollEn('img5_en','11');
		}
	}
	
	
}

$().ready(function() {
	Click_Menu();
});


