/*
 * Mexico D.F. 2010
 *El contenido de este archivo fue desarrollado por :
 *Rogelio Argumedo Uribe rogelio.argumedo@sip.gob.mx para la 
 *Presidencia de la República a través del Sistema Internet de la
 *Presidencia (SIP sip.gob.mx).
 *
 *Bajo la Licencia: 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("margin-top", "-208px");
				//fx2.start("height", "208px");
				fx.start("bottom", "-4px");
			//	alert('entra');
			},
			'mouseleave': function(e) { 
				e.stop(); 
				//fx.start("margin-top", "-48px");
				fx.start("bottom", "-164px");
				//fx2.start("height", "48px");
			//alert('sale');
			} 
		}); 

	});	
	
});


