window.addEvent('domready', function() {

	

	
			//initialisation de l'effet
			$$('ul#onglets li.none').morph('.pad2');
			$$('ul#onglets li.none').addEvents( {
		
		mouseenter: function(){
			// in
			
			this.set('morph', {duration: 100, wait: true});
			
			this.morph('.pad');
			
		},
		mouseleave: function(){
			// out
			
			this.set('morph', {duration: 400, wait: true});
			this.morph('.pad2');
			
		}
	});
			
			//initialisation de l'effet
			

	$$('a#download').tween('background-color', '#1697d3');
	$$('a#download').addEvents( {
		
		mouseenter: function(){
			// in
			
		this.tween('background-color', '#0287c5');
			
		},
		mouseleave: function(){
			// out
			
			this.tween('background-color', '#1697d3');
			
		}
	});
	
		$$('a#semainier').tween('background-color', '#e0027f');
	$$('a#semainier').addEvents( {
		
		mouseenter: function(){
			// in
			
		this.tween('background-color', '#c30470');
			
		},
		mouseleave: function(){
			// out
			
			this.tween('background-color', '#e0027f');
			
		}
	});
			
		

	
	
});