<!--
var max=7;
var t1=1;
var timer;

function hideall() {
 hidediv('div_content0');
 hidediv('div_content1');
  document.getElementById("tab1").src='imgs/2010/menu1_off.gif';
 hidediv('div_content2');
  document.getElementById("tab2").src='imgs/2010/menu2_off.gif';
 hidediv('div_content3');
  document.getElementById("tab3").src='imgs/2010/menu3_off.gif';
 hidediv('div_content4');
  document.getElementById("tab4").src='imgs/2010/menu4_off.gif';
 hidediv('div_content5');
  document.getElementById("tab5").src='imgs/2010/menu5_off.gif';
 hidediv('div_content6');
  document.getElementById("tab6").src='imgs/2010/menu6_off.gif';
 hidediv('div_content7');
  document.getElementById("tab7").src='imgs/2010/menu7_off.gif';
}


function hideall2() {
 hidediv('news1');
 hidediv('news2');
}

function hidediv(layer_ref) { 
state = 'none'; 
if (document.all) { //IS IE 4 or 5 (or 6 beta) 
eval( "document.all." + layer_ref + ".style.display = state"); 
} 
if (document.layers) { //IS NETSCAPE 4 or below 
document.layers[layer_ref].display = state; 
} 
if (document.getElementById &&!document.all) { 
hza = document.getElementById(layer_ref); 
hza.style.display = state; 
} 
} 


function showdiv(layer_ref) { 
state = 'block'; 
if (document.all) { //IS IE 4 or 5 (or 6 beta) 
eval( "document.all." + layer_ref + ".style.display = state"); 
} 
if (document.layers) { //IS NETSCAPE 4 or below 
document.layers[layer_ref].display = state; 
} 
if (document.getElementById &&!document.all) { 
hza = document.getElementById(layer_ref); 
hza.style.display = state; 
} 
}




function changeImg()
{
 //alert('max=' + max + ' #### t1=' + t1);
 document.getElementById('img1').src='imgs/2011/partner_' + t1 + '.gif';
 if (t1==1) { document.getElementById('url1').href='http://www.france-mobilite-electrique.org/mobilite,096.html?id_rubrique=232'; }
 if (t1==2) { document.getElementById('url1').href='http://www.3-0.fr/prestataires/378/detail'; }
 if (t1==3) { document.getElementById('url1').href='http://www.greenflex-group.com/'; }
 if (t1==4) { document.getElementById('url1').href='http://www.croissanceplus.com/?page_id=766'; }
 if (t1==5) { document.getElementById('url1').href='http://www.ami2-ha.com/'; }
 if (t1==6) { document.getElementById('url1').href='http://www.hellopro.fr/Mobilit%C3%A9%20Plus'; }
 if (t1==7) { document.getElementById('url1').href='http://www.golf4style.com/annuaire/annonce.php?id=6051'; }
 timer = setTimeout("ChangeCompteur()", 2500);
}


function ChangeCompteur()
{
 t1+=1; if (t1>max) { t1=1; }
 changeImg();
}
//-->

