function menuPresentation(id1,id11,id12,id13,nb)
{
	cacher(id1);
	cacher(id11);
	cacher(id12);
	cacher(id13);
	
	
  if (nb==0)
  {
    cacher(id1);
	cacher(id11);
	cacher(id12);
	cacher(id13);
  }
  else
  {
	if (nb==1)
	{
	voir(id1);
	voir(id11);
	voir(id12);
	voir(id13);
	}
  }
}


function menuPresentation1(id1,id11,id12,id13,id14,nb)
{
	cacher(id1);
	cacher(id11);
	cacher(id12);
	cacher(id13);
	cacher(id14);
	
	
  if (nb==0)
  {
    cacher(id1);
	cacher(id11);
	cacher(id12);
	cacher(id13);
	cacher(id14);
  }
  else
  {
	if (nb==1)
	{
	voir(id1);
	voir(id11);
	voir(id12);
	voir(id13);
	voir(id14);
	}
  }
}


function menuPresentation2(id1,id11,id12,nb)
{
	cacher(id1);
	cacher(id11);
	cacher(id12);	
	
  if (nb==0)
  {
    cacher(id1);
	cacher(id11);
	cacher(id12);
  }
  else
  {
	if (nb==1)
	{
	voir(id1);
	voir(id11);
	voir(id12);
	}
  }
}

function cacher(id)
{
	  	window.document.getElementById(id).style.visibility="hidden";
      	window.document.getElementById(id).style.position="absolute";
}
  
function voir(id)
{

	window.document.getElementById(id).style.visibility="visible";
	window.document.getElementById(id).style.position="relative";
}

function voirmenu(menu1,menu2,menu3,menu4)
{
 	window.document.getElementById(menu1).style.visibility='visible';
	window.document.getElementById(menu1).style.position='relative';
	
	window.document.getElementById(menu2).style.visibility='hidden';
	window.document.getElementById(menu2).style.position='absolute';

	window.document.getElementById(menu3).style.visibility='hidden';
	window.document.getElementById(menu3).style.position='absolute';

	window.document.getElementById(menu4).style.visibility='hidden';
	window.document.getElementById(menu4).style.position='absolute';

} 

function voirq(menu1,menu2,menu3,menu4,id1,id11,id12,id13,nb){
    window.document.getElementById(menu1).style.visibility='visible';
	window.document.getElementById(menu1).style.position='relative';
	
	window.document.getElementById(menu2).style.visibility='hidden';
	window.document.getElementById(menu2).style.position='absolute';

	window.document.getElementById(menu3).style.visibility='hidden';
	window.document.getElementById(menu3).style.position='absolute';
	
	window.document.getElementById(menu4).style.visibility='hidden';
	window.document.getElementById(menu4).style.position='absolute';
	
	menuPresentation(id1,id11,id12,id13,nb);
	
} 
function voira(menu1,menu2,menu3,menu4,id1,id11,id12,id13,nb){

    window.document.getElementById(menu1).style.visibility='hidden';
	window.document.getElementById(menu1).style.position='absolute';
	
	window.document.getElementById(menu2).style.visibility='hidden';
	window.document.getElementById(menu2).style.position='absolute';

	window.document.getElementById(menu3).style.visibility='hidden';
	window.document.getElementById(menu3).style.position='absolute';
	
	window.document.getElementById(menu4).style.visibility='hidden';
	window.document.getElementById(menu4).style.position='absolute';
	
	menuPresentation(id1,id11,id12,id13,nb);
	
}