// JavaScript Document

document.addEvent('domready', function()
{
	$$('.lien_cat').each(function(el)
	{
		el.addEvent("mouseover", function()
		{
			 $('sec_'+this.id).addClass('thematique_on');
		});
		el.addEvent("mouseout", function()
		{
			 $('sec_'+this.id).removeClass('thematique_on');
		});
		$('sec_'+el.id).addEvent("mouseout", function()
		{
			 this.removeClass('thematique_on');
		});
	});
});
