// JavaScript Document
window.addEvent('domready',function(){ 
		
	//=====================================
	//==== NEWS HOME
	
	var overImgFx = [];
	var overCatControlsFx = [];
		var catControls_cat = [];
	var overTituloFx = [];
		var titulo_tit = [];
	var overMasInfoFx = [];
	var overMainLinksFx = [];
	var over = false;
	
	$$('.cuadro .overImg').each(function(el,i){
		el.addEvent('click',function(e){ 
			if(el.getPrevious().get('target') == null) {
				document.location.href=el.getPrevious().get('href');
			} else {
				window.open(el.getPrevious().get('href'),'_blank');
			}
		}); 
		overImgFx[i] = new Fx.Morph(el, {duration:300, wait:false,transition:Fx.Transitions.Expo.easeOut}).set({'opacity':0, 'background-color': '#41453E'});
	});
	
	$$('.cuadro .overCatControls').each(function(el,i){
		el.addEvent('click',function(e){ 
			if(el.getPrevious().getPrevious().get('target') == null) {
				document.location.href=el.getPrevious().getPrevious().get('href');
			} else {
				window.open(el.getPrevious().getPrevious().get('href'),'_blank');
			}
		}); 
		overCatControlsFx[i] = new Fx.Morph(el, {duration:500, wait:false,transition:Fx.Transitions.Expo.easeOut}).set({'background-color': 'transparent'});
	});
	$$('.cuadro .overCatControls .categoria').each(function(el,i){
		catControls_cat[i] = el;
	});
	
	$$('.cuadro .overTitulo').each(function(el,i){
		overTituloFx[i] = new Fx.Morph(el, {duration:10000, wait:false,transition:Fx.Transitions.Expo.easeOut}).set({'background-color': 'transparent'});
	});
	$$('.cuadro .overTitulo .titulo').each(function(el,i){
		titulo_tit[i] = el;
	});
	
	$$('.cuadro .overMasInfo').each(function(el,i){
		el.addEvent('click',function(e){
			if(el.getPrevious().getPrevious().getPrevious().getPrevious().getPrevious().getPrevious().get('target') == null) {
				document.location.href=el.getPrevious().getPrevious().getPrevious().getPrevious().getPrevious().getPrevious().get('href');
			} else {
				window.open(el.getPrevious().getPrevious().getPrevious().getPrevious().getPrevious().getPrevious().get('href'),'_blank');
			}
		});
		overMasInfoFx[i] = new Fx.Morph(el, {duration:0, wait:false,transition:Fx.Transitions.Expo.easeOut}).set({'background-color': 'transparent', 'margin-top':'60px', 'visibility':'visible'});
	});
	
	$$('.cuadro .mainLink').each(function(el,i){ 
		overMainLinksFx[i] = new Fx.Morph(el, {duration:300, wait:false,transition:Fx.Transitions.Expo.easeOut}).set({'background-color': '#41453E'})
	});
	//
	$$('.cuadro .item').each(function(el,i){
		el.addEvents({
			'mouseover':
				function(e){
					overImgFx[i].start({'opacity':0.9});
					if(over == false){
						overCatControlsFx[i].set({'margin-top':'-115px'});
						overTituloFx[i].set({'margin-top':'49px', 'color':'#BAD405'});
						overMasInfoFx[i].set({'margin-top':'10px'});
						over = true;
					}
					overCatControlsFx[i].start({'margin-top':'-132px', 'color':'#BAD405'});
					
					overMainLinksFx[i].start({'background-color': '#BAD405'});
					//swfClr(catControls_cat[i], 'BAD405');
					//swfClr(titulo_tit[i], 'BAD405');
				},
			'mouseleave':
				function(e){
					if(over == true) {
						overCatControlsFx[i].set({'margin-top':'-17px'});
						overTituloFx[i].set({'margin-top':'0', 'color':'#959C92'});
						overMasInfoFx[i].set({'margin-top':'60px'});
						over = false;
					}
					overImgFx[i].start({'opacity':0});
					overCatControlsFx[i].start({'margin-top':'0', 'color':'#959C92'});
					overMainLinksFx[i].start({'background-color': '#41453E'});
					//swfClr(catControls_cat[i], '959C92');
					//swfClr(titulo_tit[i], '959C92');
				}
		});
	});
	
})