function MouseO(nom)
{
switch(nom)
	{
	case "iletait" :
		setTimeout("Affiche('diviletait')",250);
 		setTimeout("Retire('divcollections')",250);
 	break ;
	case "collection" :
		setTimeout("Retire('diviletait')",250);
 		setTimeout("Affiche('divcollections')",250);
 	break ;
	case "actualites" :
		setTimeout("Retire('diviletait')",250);
 		setTimeout("Retire('divcollections')",250);
 	break ;
	case "presse" :
		setTimeout("Retire('diviletait')",250);
 		setTimeout("Retire('divcollections')",250);
	break ;
	case "videos" :
		setTimeout("Retire('diviletait')",250);
 		setTimeout("Retire('divcollections')",250);
	break ;
	case "contact" :
		setTimeout("Retire('diviletait')",250);
 		setTimeout("Retire('divcollections')",250);
	break ; 
	}
}

function Remplir(nom)
{
Cacher();

switch(nom)
	{
	case "actualites" :
	Affiche('actualite');
	Retire('video1');
	break ;	
	
	case "presse" :
	Affiche('presse');
	Retire('video1');
 	break ;
	
	case "videos" :
	Affiche('video');
	break ;
	
	case "contact" :
	Affiche('contact');
 	Retire('video1');
	break ;
	
	case "philosophie" :
	Affiche('philosophie');
	break ;
	
	case "surmesure" :
	Affiche('surmesure');
 	break ;
	
	case "tarifs" :
	Affiche('tarif'); 
	break ;	
	
	case "creatrice" :
	Affiche('creatrice');
	break ;
	
	case "robesmariees" :
	Affiche('robemar');
	image('marieerouge',6,'coll2010');
 	break ;
	
	case "print2010" :
	Affiche('print2010');
	image('bouleblanche',4,'coll2010');
 	break ;
	
	case "aut2010" :
	Affiche('aut2010');
	image('jupenoire',6,'aut2010');
 	break ;
	
	case "collprec" :
	Affiche('collection');
 	break ;
	
	case "illustration" :
	Affiche('illust');
 	break ;	
	}
}

function Retire(nom)
{
  document.getElementById(nom).style.visibility="hidden";
}

function Affiche(nom)
{
  document.getElementById(nom).style.visibility="visible";
}
