$(function() {
  $('#screenshots .scrollable').scrollable({
    size: 1,
    interval: 5000,
    loop: true,
    speed: 200,
  });
  
  $('#tabs').tabs(".pane", {
    history: true,
    effect: 'default'
  });
  
  $('a[rel*="external"]').click(function(){
    window.open(this.attr('href'));
    return false;
  });
  
});