// 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';
	}
}

