$(document).ready(function(){
  $('.headerbox .box').cycle({
    fx:'scrollLeft',timeout:6000,delay:2000,pause:1,cleartypeNoBg:true
    ,pager:'ul.hmenu'
    ,pagerAnchorBuilder: function(idx,slide){
      if(!this.els){
        this.els=$('ul.hmenu').children();
        this.els=this.els.clone();
        $('ul.hmenu').html('');
      }
      return $('<div>').append($(this.els[idx]).clone()).remove().html();
    }
    ,before:function(currSlideElement, nextSlideElement, options, forwardFlag){
      if(options.currSlide==4) $('.headerbox .box').animate({borderTopColor:'#fff',borderLeftColor:'#fff',borderRightColor:'#fff',borderBottomColor:'#fff'},'fast');
      if($('.headerbox .box').hasClass('an') && options.currSlide==0) $('.headerbox .box').animate({borderTopColor:'#ccc',borderLeftColor:'#ccc',borderRightColor:'#ccc',borderBottomColor:'#ccc'},'fast');
      $('.headerbox .box').addClass('an');
    }
  });
  $('#content.home .tweets .contenido').jScrollPane({showArrows:true,horizontalGutter:0});
});
