function switch_actif(idDiv)
{
	if(idDiv == 'cat1')
	{

		document.getElementById('cat3').className='marge_b ';
		document.getElementById('cat4').className='';
		document.getElementById('cat1').className='actif';
	}

	else if(idDiv == 'cat3')
	{
		document.getElementById('cat1').className='';

		document.getElementById('cat4').className='';
		document.getElementById('cat3').className='marge_b actif';
	}
	else if(idDiv == 'cat4')
	{
		document.getElementById('cat1').className='';

		document.getElementById('cat3').className='marge_b ';
		document.getElementById('cat4').className='actif';
	}
}