     // <![CDATA[
      function runTest()
	  {
        hCarousel = new UI.Carousel("horizontal_carousel"); 
      }

      Event.observe(window, "load", runTest);
    // ]]>	
	
	 
	function mueve_oferta(num)
	{
		hCarousel.scrollTo(num); 
		activa_li(num);
	}
	
	function activa_li(num)	
	{
		document.getElementById('opcion0').setAttribute('className','');
		document.getElementById('opcion0').setAttribute('class','');
		document.getElementById('opcion1').setAttribute('className','');
		document.getElementById('opcion1').setAttribute('class','');

		
		obj= document.getElementById('opcion'+num);
		obj.setAttribute('className','active');
		obj.setAttribute('class','active');
	} 
	
	
	i=0;
	function movimiento_automatico()
	{ 
		if (hCarousel.currentIndex()+1 >4)
		{
			i=0;
		}
		else
		{
			i=hCarousel.currentIndex()+1;
		}
		mueve_oferta(i);	
	}
	//setInterval("movimiento_automatico()", 10000);