window.addEvent('domready', function(){
	/*
	$('company_menu').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
			}).tween('height', '35px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '15px');
		}
	});
	*/
	
	$('services_menu').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
			}).tween('height', '130px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '15px');
		}
	});
	
	/*
	$('clients_menu').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
			}).tween('height', '45px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '15px');
		}
	});
	*/
});