window.addEvent('domready', function(){
	
	
	$$('.champs', '.list1', '.drop', '.bouton').addEvents({
		
		'mouseenter': function(){
			// Always sets the duration of the tween to 1000 ms and a bouncing transition
			// #8B1600
			this.set('tween', {
				duration: 300,
				transition: Fx.Transitions.Expo.easeOut
			}).tween('border-color', '#3c65fa');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			this.set('tween', {}).tween('border-color', '#000E23');
		}
	});
	
	$$('#partenaires img').addEvents({
		
		'mouseenter': function(){
			// Always sets the duration of the tween to 1000 ms and a bouncing transition
			// And then tweens the height of the element
			this.set('tween', {
				duration: 300,
				transition: Fx.Transitions.Expo.easeOut
			}).tween('opacity', '.4');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			this.set('tween', {}).tween('opacity', '1');
		}
	});
	
});



