// JavaScript Document
window.addEvent('domready',function(){ 
	
	//=====================================
	//==== SERVICIOS
	
	var fndFx = [];
	var underoverFx = [];
	
	$$('.servicios img').each(function(el,i) {
		el.addEvent('click',function(e){
			//alert(el.parentNode.parentNode);
			document.location.href=el.parentNode.parentNode; 
		});
		underoverFx[i] = new Fx.Morph(el, {duration:250, wait:false,transition:Fx.Transitions.Expo.easeOut}).set({'margin-top':21})
	});
	$$('.servicios .item').each(function(el,i) { 
		fndFx[i] = new Fx.Morph(el, {duration:250, wait:false,transition:Fx.Transitions.Expo.easeOut}).set({'background-color': '#41453E'})
	});
	
	$$('.servicios .item').each(function(el,i) {
		el.addEvents({
			'mouseover':
				function(e){
					underoverFx[i].start({'margin-top':10});
					fndFx[i].start({'background-color': '#52564F'});
				},
			'mouseleave':
				function(e){ 
					underoverFx[i].start({'margin-top':21});
					fndFx[i].start({'background-color': '#41453E'});
				}
		});
	}); 
	
	
})