    var i=1;
	function swapDestacat() {
	   var $active = $('#destacat_' + i);
	   j=i+1;
	   var $next = $('#destacat_' + j);
	   if ($next.length<=0) {
		   i=0;
		   j=i+1;
		   var $next = $('#destacat_' + j);
	   }
	   $active.fadeOut("slow",function(){$next.fadeIn("slow");});
	   //alert($active.class);
	   //$active.removeClass('active');
      // var $next = ($('#destacats_variables .active').next().length > 0) ? $('#destacats_variables .active').next() : $('#destacats_variables a:first');
      /*$active.fadeOut(function(){
      $active.removeClass('active');
      $next.fadeIn().addClass('active');
      }); */
	  i=i+1;
    }
	function swapDestacatLent() {
	      //alert('k');
		   
		   var $active = $('#destacat_' + i);
		   j=i+1;
		   var $next = $('#destacat_' + j);
		   if ($next.length<=0) {
			   i=0;
			   j=i+1;
			   var $next = $('#destacat_' + j);
		   }
		   $active.fadeOut(2000,function(){$next.fadeIn(2000);});
		  i=i+1;
	    }

