// MenuMatic

window.addEvent('domready', function() {			
var myMenu = new MenuMatic();
});

// ShadowBox

Shadowbox.init({
language: 'fr',
players:  ['img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv']
});

// Lexique

function visibilite(thingId)
{
var targetElement;
targetElement = document.getElementById(thingId) ;
if (targetElement.style.display == "none")
{
targetElement.style.display = "" ;
} else {
targetElement.style.display = "none" ;
}
}

// DIV Mask
function visibilite(thingId)
{
var targetElement;
targetElement = document.getElementById(thingId) ;
if (targetElement.style.display == "none")
{
targetElement.style.display = "" ;
} else {
targetElement.style.display = "none" ;
}
}
