/*
 *Creative Commons Attribution-NonCommercial-ShareAlike 3.0 
 *http://creativecommons.org/licenses/by-nc-sa/3.0/deed.es_MX
*/
window.addEvent('domready', function(){
	$$('#carrusel .desplegable').each(function(el) { 
		var fx = new Fx.Tween(el,{ 
			duration: 640,
			link: 'cancel',
			transition: Fx.Transitions.Quint.easeOut
		}); 
		el.addEvents({ 
			'mouseenter': function(e) { 
				e.stop(); 
				fx.start("bottom", "-4px");
			},
			'mouseleave': function(e) { 
				e.stop(); 
				fx.start("bottom", "-164px");
			} 
		}); 
	});	
});


