window.addEvent('domready', function() {
	$$('.radio').each(function(item){
		item.addEvent('change', function(event){
			
			for(var i=1; i<=6; i++)
			{
				if($chk($('label_choix_'+i)))
					$('label_choix_'+i).set('class', 'non');
			}
			if($chk($('label_choix_'+item.value))) 
				$('label_choix_'+item.value).set('class', 'oui');
		});
	});
});
