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

	new Tips( [$$('.tooltip')] , {'className':'mootips'} );
	
	// target
	$$('a[rel=external]').addEvent('click',function(e){
		e.stop();
		window.open(this.get('href'));
	}).removeProperty('rel');
	
	// Marquee
	$$('div.defile').each( function( div ){
		if (div.getParent().getStyle('position') != 'absolute') {
			div.getParent().setStyle('relative');
		}
		new mooquee(div.addClass('mooquee'),{marHeight:div.getSize().y,marWidth:div.getSize().x,direction:'left'});
	});
	
	// Transparence png ie6
	if (Browser.ie6) {
		DD_belatedPNG.fix('.transparent');
	}
	
	// Lien du logo
	$('logo') && $('logo').addEvent('click',function(){document.location.href='index.php'});
	//document.body.getElement('.masque_logo') && document.body.getElement('.masque_logo').addEvent('click',function(){document.location.href='index.php'});

	// Bandeau de démo
	if (window.vars.demo) {
		new Element('div', {styles: {
			background: 'url('+window.vars.demo+') no-repeat',
			position: 'absolute',
			top: 0,
			left: 0,
			width: 150,
			height: 150,
			zIndex: 999999,
			cursor: 'pointer'
		}}).addEvent('click',function(){document.location.href='index.php'}).inject(document.body);
	}

});
 

