window.addEvent('domready', function() {
	$('sub').setOpacity (0);
/************************MENU****************************************/
	/* Declara Elemento a animar */
	var el = $('sub');
	/* Anima Submenu al Situar mouse en Proyectos */
	var sub_aparece = new Fx.Morph(el,{
		duration: 750,
		transition: Fx.Transitions.Back.easeOut
		})	
		$('sub_project').addEvent('mouseenter', function(e){		
		sub_aparece.start({
			'margin-left': [393],
			'opacity': [0.7],
			wait: 'true'
		})
		Event.stop(e);
	})
	/* Anima Submenu al Retirar el mouse de Proyectos */
	var sub_desaparece = new Fx.Morph(el,{
		duration: 750,
		transition: Fx.Transitions.Back.easeOut
	})	
	$('sub').addEvent('mouseleave', function(de){
		sub_desaparece.start.delay( 0, sub_aparece, {
			'margin-left': [-500],
			'opacity': [0.7, 0],
			wait: 'true'
		})
		Event.stop(de);
	})
});