function afficherProduits() {
	document.getElementById("produitsHome").style.display= 'block';
}
function masquerProduits() {
	document.getElementById("produitsHome").style.display= 'none';
}

window.addEvent('domready', function() {
	masquerProduits();
	document.getElementById("contenuAlternatif").innerHTML= document.getElementById("produitsHome").innerHTML;
});