window.addEvent('domready', function(){
	 //Grupo
	$('GrupoC').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 300,
				transition: Fx.Transitions.Cubic.easeOut 
			}).tween('top', '-30px');
			$('GrupoCRoll').set('tween', {
				duration: 600,
				transition: Fx.Transitions.Cubic.easeOut 
			}).tween('top', '-74px');
		},
		'mouseleave': function(){
			this.set('tween', {
				duration: 400,
				transition: Fx.Transitions.Cubic.easeOut 
			}).tween('top', '-74px');
			$('GrupoCRoll').set('tween', {
				duration: 200,
				transition: Fx.Transitions.Cubic.easeOut 
			}).tween('top', '-140px');
		}
	});
	//Áreas
	$('AreasC').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 300,
				transition: Fx.Transitions.Cubic.easeOut 
			}).tween('top', '-30px');
			$('AreasCRoll').set('tween', {
				duration: 600,
				transition: Fx.Transitions.Cubic.easeOut 
			}).tween('top', '-74px');
		},
		'mouseleave': function(){
			this.set('tween', {
				duration: 400,
				transition: Fx.Transitions.Cubic.easeOut 
			}).tween('top', '-74px');
			$('AreasCRoll').set('tween', {
				duration: 200,
				transition: Fx.Transitions.Cubic.easeOut 
			}).tween('top', '-140px');
		}
	});
	//Empleo
	$('EmpleoC').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 300,
				transition: Fx.Transitions.Cubic.easeOut 
			}).tween('top', '-30px');
			$('EmpleoCRoll').set('tween', {
				duration: 600,
				transition: Fx.Transitions.Cubic.easeOut 
			}).tween('top', '-74px');
		},
		'mouseleave': function(){
			this.set('tween', {
				duration: 400,
				transition: Fx.Transitions.Cubic.easeOut 
			}).tween('top', '-74px');
			$('EmpleoCRoll').set('tween', {
				duration: 200,
				transition: Fx.Transitions.Cubic.easeOut 
			}).tween('top', '-140px');
		}
	});
	$('PrivadaC').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 300,
				transition: Fx.Transitions.Cubic.easeOut 
			}).tween('top', '-30px');
			$('PrivadaCRoll').set('tween', {
				duration: 600,
				transition: Fx.Transitions.Cubic.easeOut 
			}).tween('top', '-74px');
		},
		'mouseleave': function(){
			this.set('tween', {
				duration: 400,
				transition: Fx.Transitions.Cubic.easeOut 
			}).tween('top', '-74px');
			$('PrivadaCRoll').set('tween', {
				duration: 200,
				transition: Fx.Transitions.Cubic.easeOut 
			}).tween('top', '-140px');
		}
	});
});
