window.addEvent('load', function() {
	
	// Mootools plugin : Tips (bubble informations)
	/*new Tips($$('.tip-infobulles'), {
		className: 'bulle-daide',
		initialize:function(){
			this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
		},
		onShow: function(toolTip) {
			this.fx.start(1);
		},
		onHide: function(toolTip) {
			this.fx.start(0);
		}
	});*/
	
	$$('a.dossier-montables-variantes').each(function(current) {
		current.addEvent('click', function(e) {
										   
			var currentId = current.getProperty('id');
			if ($E('div[name=' + currentId + ']').getStyle('display') != 'block') {
				$$('div[name=' + currentId + ']').each(function(fig) {
					fig.setStyle('display', 'block');
				});
			} else {
				$$('div[name=' + currentId + ']').each(function(fig) {
					fig.setStyle('display', 'none');
				});
			}
			
			e = new Event(e);  
			e.stop(); 
			return false; 
		});
	});
	
});