function affiche(calque,mnu,fond_img)
{
	effacetout();
	
	// Affiche calque num
	calque.style.visibility='visible';
	
	// Affiche les fonds des menus (couleurs + images)
	mnu.style.backgroundColor='#00993a';
	fond.style.backgroundImage="url"+"('"+fond_img+"')";
	// fond.style.visibility='visible';

	// fond.style.backgroundImage='url(images/menu_ss_fd_on.gif)';
	// Affiche image num
	//	image.src='images/hp_fd_menu.gif';
	
}


function effacetout()
{
	// Efface les calques
	calque1.style.visibility='hidden';
	calque2.style.visibility='hidden';
	calque3.style.visibility='hidden';
	calque4.style.visibility='hidden';
	calque5.style.visibility='hidden';
	calque6.style.visibility='hidden';
	
	// Efface le fond
	fond.style.backgroundImage='';

//	background="images/hp_fd_menu.gif"
	mnu1.style.backgroundColor='';
	mnu2.style.backgroundColor='';
	mnu3.style.backgroundColor='';
	mnu4.style.backgroundColor='';
	mnu5.style.backgroundColor='';
	mnu6.style.backgroundColor='';
	
	// Change les images
//	image1.src='images/blank.gif';
//	image2.src='images/item_menu_off.gif';
//	image3.src='images/item_menu_off.gif';
//	image4.src='images/item_menu_off.gif';
//	image5.src='images/item_menu_off.gif';
//	image6.src='images/item_menu_off.gif';
	
}

function pop()
{
	var pop = document.getElementById('pop');
	if (pop) {pop.style.display = 'block';};
	if (pop) {pop.onclick = function() {this.style.display = 'none';};};
}

window.onload = pop;