/*
	Classes NouveauMonde (nm.js)
		Spécific classes for NM interface

	Usage:
		See below
	
	Require:
		ifbox.js
	
	About:
		nm.js v.1.0 for mootools v1.1 08 / 2007

		by Floor SA (http://www.floor.ch) MIT-style license
		Created by Jerome Vial
*/

window.addEvent('domready', function() {

	new IFBox({
		'target' : '.item',
		'skin' : 'vibes',
		'mode' : 2
	});

	 
	$('nouveaumonde').addEvent('mouseenter', function(){
		$('content').fade(0);
	});
	
	$('nouveaumonde').addEvent('mouseleave', function(){
			$('content').fade(1);
	});
	/*
	new Tips($$('.tooltips'), {
		initialize : function(){ 
			this.fx = new Fx.Tween(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
		},
		onShow : function(toolTip) { this.fx.start(1);},
		onHide : function(toolTip) { this.fx.start(0);}
	});*/
});
