// JavaScript Document
function etendre(obj) {
  if (obj.nextSibling.style.display == "block") {
    obj.nextSibling.style.display = "none";
    obj.style.background='url(imgs/img.gif)';
    restituer = document.getElementById("menuGauche").getElementsByTagName("span");
    for (j=0; j < restituer.length; j++){
    	 restituer[j].style.background='url(imgs/pommeGrosse.gif)';
    }
  }
  else {
    // cacher les autres items
    tabItems = document.getElementById("menuGauche").getElementsByTagName("div");
    for (i=0; i < tabItems.length; i++) {
      if (tabItems[i].className == "etendre") {
       tabItems[i].style.display = "none";
       obj.style.background='url(imgs/pommeGrosse.gif)';
      }
      
        restituer = document.getElementById("menuGauche").getElementsByTagName("span");
	for (j=0; j < restituer.length; j++){
    	 restituer[j].style.background='url(imgs/pommeGrosse.gif)';
    }
      
    }
    obj.nextSibling.style.display = "block";
    obj.style.background='url(imgs/panier.gif)';
  }
}
