// JavaScript Document
var efectoMenu = function(){
	//var myFx = new Fx.Tween(this,{duration:800,transition: Fx.Transitions.Sine.easeOut});
	//Transitions the background color of the Element from black to red:
	//myFx.start('opacity', 0, 1);
	/* myFx.start('height', 2, 194);
	myFx.addEvent('complete',function(){
		$$('.nameMenu').setStyle('opacity', .4);
		$$('#menuMujeres h1.nameMenu').setStyle('display', 'block');
	})	 */
	//myVerticalSlide.show();
	//alert(this.myVerticalSlide);
}

function handleMenu(){
	$$('#menuMujeres h1.nameMenu').setStyle('display', 'none');
	$('boxMujeres').setStyle('opacity',0);
	$('boxHombres').setStyle('opacity',0);
	$('boxNinos').setStyle('opacity',0);
	$('boxAcces').setStyle('opacity',0);	
	//$$('.nameMenu').setStyle('opacity',0);
	
	
	//var myVerticalSlide = new Fx.Slide('menuMujeres').hide();	
	//efectoMenu.delay(3000+(index*500),item);
	//(function(){myVerticalSlide.slideIn()}).delay(3000+(index*500));	
	
	
 $$('.boxMenu').each(function(item, index){
	$('detalle_home').setStyle('opacity',0);
	//item.setStyle('opacity',0);
	var myVerticalSlide = new Fx.Slide(item).hide();	
	//efectoMenu.delay(3000+(index*500),item);
	(function(){
		myVerticalSlide.slideIn();
		$$('.nameMenu').setStyle('opacity', .4);
		$$('#menuMujeres h1.nameMenu').setStyle('display', 'block');		
	}).delay(1000+(index*500));

	(function(){ 
		$('detalle_home').tween('opacity',[0,1]);
	}).delay(3000);	
	
})	
/*
	var myFx = new Fx.Tween('menuMujeres',{duration:800,transition: Fx.Transitions.Sine.easeOut});
	//Transitions the background color of the Element from black to red:
	myFx.start('height', 2, 194);
	myFx.addEvent('complete',function(){
		$$('.nameMenu').setStyle('opacity', .4);
		$$('#menuMujeres h1.nameMenu').setStyle('display', 'block');
	});
*/
	
	
	$('menuMujeres').addEvent('mouseenter', function(ev){
		$('boxMujeres').morph({
			'width':192,
			'height':192,
			'left':0,
			'top':0,
			'opacity':1
			},{duration: 'long', transition: 'bounce:out'});		
		$('menuMujeresLink').morph({
			'opacity':1
			});				
	});
	$('menuMujeres').addEvent('mouseleave', function(ev){
		$('boxMujeres').morph({
				'width':173,
				'height':173,
				'left':10,
				'top':10,
				'opacity':0
			});	
		$('menuMujeresLink').morph({
			'opacity':.4
			});			
						   
	});
	
	$('menuHombres').addEvent('mouseenter', function(ev){
		$('boxHombres').morph({
			'background-color':'#fb348f',
			'width':192,
			'height':192,
			'left':0,
			'top':0,
			'opacity':1
			});														 
		$('menuHombresLink').morph({
			'opacity':1
		});			
	});
	$('menuHombres').addEvent('mouseleave', function(ev){
		$('boxHombres').morph({
				'background-color':'#1d1d1d',
				'width':173,
				'height':173,
				'left':10,
				'top':10,
				'opacity':0
			});	
		$('menuHombresLink').morph({
			'opacity':.4
			});				
	});	
	$('menuNinos').addEvent('mouseenter', function(ev){
		$('boxNinos').morph({
			'background-color':'#fb348f',
			'width':192,
			'height':192,
			'left':0,
			'top':0,
			'opacity':1
			});													   
		$('menuNinosLink').morph({
			'opacity':1
		});			
	});
	$('menuNinos').addEvent('mouseleave', function(ev){
		$('boxNinos').morph({
				'background-color':'#1d1d1d',
				'width':173,
				'height':173,
				'left':10,
				'top':10,
				'opacity':0
			});
		$('menuNinosLink').morph({
			'opacity':.4
		});				
	});		
	$('menuAcces').addEvent('mouseenter', function(ev){
		$('boxAcces').morph({
			'background-color':'#fb348f',
			'width':192,
			'height':192,
			'left':0,
			'top':0,
			'opacity':1
			});				
		$('menuAccLink').morph({
			'opacity':1
		});				
	});
	$('menuAcces').addEvent('mouseleave', function(ev){
		$('boxAcces').morph({
				'background-color':'#1d1d1d',
				'width':173,
				'height':173,
				'left':10,
				'top':10,
				'opacity':0
			});									   
		$('menuAccLink').morph({
			'opacity':.4
		});				
	});		
	
	
	/*$('linkImage').addEvent('click', function(ev){
		ev.stop();									  
		 window.location.href=ev.href;							   
	});		*/
}	
