/* Animación de rollo cine
 * 
 */
jQuery(document).ready(function(){
  
  $('#screenRecientes').serialScroll({
    target:'#grupos',
    items:'li.anime', 
    prev:'p.prev',
    next:'p.next',
    axis:'x',
    duration:800,
    force:true,
    
    onBefore:function( e, elem, $pane, $items, pos ){
      e.preventDefault();
      if( this.blur )
        this.blur();
    },
    onAfter:function( elem ){
      //'this' is the element being scrolled ($pane) not jqueryfied
    }
  });
  
  $('#screenRecientes').serialScroll({
    target:'#grupos',
    items:'li.anime', 
    prev:'img.prevfb',
    next:'img.nextfb',
    axis:'x',
    duration:800,
    force:true,
    
    onBefore:function( e, elem, $pane, $items, pos ){
      e.preventDefault();
      if( this.blur )
        this.blur();
    },
    onAfter:function( elem ){
      //'this' is the element being scrolled ($pane) not jqueryfied
    }
  });
 
});
