window.addEvent('domready',function(){
	new Tips( [$$('.tooltip')] , {'className':'mootips'} );
	
	// target
	$$('a[rel=external]').addEvent('click',function(oEvenement){
		oEvenement.stop();
		window.open(this.get('href'));
	}).removeProperty('rel');
	
	new Moofle( {'classe':'arrondi'});

	$$('div.defile').each( function( div ){
		new mooquee(div.addClass('mooquee'),{marHeight:div.getSize().y,marWidth:div.getSize().x,direction:'left'});
	});
	
});
 
