// Pour le lien "Voir nos autres marques"function switch_visibility(tagr){	rdiv = document.getElementById(tagr);	// R�ponses : hide/show	if (rdiv.style.display == 'none')	{		rdiv.style.display = 'block';	}	else	{		rdiv.style.display = 'none';		//qdiv.style.font-weight = 'normal';	}}
