function divaffiche(div){
 
switch(div){
  case 'lacs' : 
  document.images["lacs"].src='images/boutons/lacs_bis.gif';
  document.images["rivieres"].src='images/boutons/rivieres.gif';
  document.images["etangs"].src='images/boutons/etangs.gif';
  document.images["nouveautes"].src='images/boutons/nouveautes.gif';
  document.getElementById('lacs').style.display = "block";
  document.getElementById('rivieres').style.display = "none"; 
  document.getElementById('etangs').style.display = "none";
  document.getElementById('nouveautes').style.display = "none"; 
  break;
  
  case 'rivieres' : 
  document.images["lacs"].src='images/boutons/lacs.gif';
  document.images["rivieres"].src='images/boutons/rivieres_bis.gif';
  document.images["etangs"].src='images/boutons/etangs.gif';
  document.images["nouveautes"].src='images/boutons/nouveautes.gif';
  document.getElementById('lacs').style.display = "none";
  document.getElementById('rivieres').style.display = "block"; 
  document.getElementById('etangs').style.display = "none";
  document.getElementById('nouveautes').style.display = "none"; 
  break;
  
  case 'etangs' : 
  document.images["lacs"].src='images/boutons/lacs.gif';
  document.images["rivieres"].src='images/boutons/rivieres.gif';
  document.images["etangs"].src='images/boutons/etangs_bis.gif';
  document.images["nouveautes"].src='images/boutons/nouveautes.gif';
  document.getElementById('lacs').style.display = "none";
  document.getElementById('rivieres').style.display = "none"; 
  document.getElementById('etangs').style.display = "block";
  document.getElementById('nouveautes').style.display = "none"; 
  break;
  
  case 'nouveautes' :
  document.images["lacs"].src='images/boutons/lacs.gif';  
  document.images["rivieres"].src='images/boutons/rivieres.gif';
  document.images["etangs"].src='images/boutons/etangs.gif';
  document.images["nouveautes"].src='images/boutons/nouveautes_bis.gif';
  document.getElementById('lacs').style.display = "none";
  document.getElementById('rivieres').style.display = "none"; 
  document.getElementById('etangs').style.display = "none";
  document.getElementById('nouveautes').style.display = "block"; 
  break;
  

  case 'comment_venir' : 
  document.images["comment_venir"].src='images/boutons/comment_venir_bis.gif';
  document.images["conseils"].src='images/boutons/conseils.gif';
  document.images["contacts"].src='images/boutons/contacts.gif';
  document.getElementById('comment_venir').style.display = "block"; 
  document.getElementById('conseils').style.display = "none";
  document.getElementById('contacts').style.display = "none";
  break;
  case 'conseils' : 
  document.images["comment_venir"].src='images/boutons/comment_venir.gif';
  document.images["conseils"].src='images/boutons/conseils_bis.gif';
  document.images["contacts"].src='images/boutons/contacts.gif';
  document.getElementById('comment_venir').style.display = "none"; 
  document.getElementById('conseils').style.display = "block";
  document.getElementById('contacts').style.display = "none";
  break;
  case 'contacts' : 
  document.images["comment_venir"].src='images/boutons/comment_venir.gif';
  document.images["conseils"].src='images/boutons/conseils.gif';
  document.images["contacts"].src='images/boutons/contacts_bis.gif';
  document.getElementById('comment_venir').style.display = "none"; 
  document.getElementById('conseils').style.display = "none";
  document.getElementById('contacts').style.display = "block";
  break;
  }
  
 };

/*function rollClick(ancre) {
  
  
  //alert('position:'+pos_occu+' | Url :'+url+' | Ancre:'+ancre );
  
  
  switch(ancre){
  case 'rivieres' : 
  document.images["rivieres"].src='images/boutons/rivieres_bis.gif';
  document.images["activites"].src='images/boutons/activites.gif';
  document.images["hebergements"].src='images/boutons/hebergements.gif';
  document.images["infos"].src='images/boutons/infos.gif';
  break;
  case 'activites' : 
  document.images["rivieres"].src='images/boutons/rivieres.gif';
  document.images["activites"].src='images/boutons/activites_bis.gif';
  document.images["hebergements"].src='images/boutons/hebergements.gif';
  document.images["infos"].src='images/boutons/infos.gif';
  break;
  case 'hebergements' : 
  document.images["rivieres"].src='images/boutons/rivieres.gif';
  document.images["activites"].src='images/boutons/activites.gif';
  document.images["hebergements"].src='images/boutons/hebergements_bis.gif';
  document.images["infos"].src='images/boutons/infos.gif';
  break;
  case 'infos' :
  document.images["rivieres"].src='images/boutons/rivieres.gif';
  document.images["activites"].src='images/boutons/activites.gif';
  document.images["hebergements"].src='images/boutons/hebergements.gif';
  document.images["infos"].src='images/boutons/infos_bis.gif';
  break;
  }
 // document.bodyElement.scrollTop='0px';
  //window.scrollTo(x,y);
}
*/
function load_button(){
//Permet de récupérer une variable passer dans l'url et d'afficher la bonne DIV
  url = ''+document.location;
  pos_occu = url.lastIndexOf('?');
  if(pos_occu=='-1'){ancre = 'nouveautes';}else{
  pos_occu++;
  ancre = url.substr(pos_occu);
  };
  divaffiche(ancre);
  
}