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

	$('actualite').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 750
			}).tween('height', '180px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '30px');
		}
	});
	
	$('lana').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 750
			}).tween('height', '150px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '30px');
		}
	});
	
	$('events').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 750
			}).tween('height', '150px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '30px');
		}
	});
	
	$('presse').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 750
			}).tween('height', '150px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '30px');
		}
	});
	
	$('contact').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 750
			}).tween('height', '150px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '30px');
		}
	});
	
});