$(document).ready(function() {
  
  $('.linkList a, .popup').click(function(event) {
    window.open(event.target);
    
    return false;
  });
  
  $('#bookCycle').cycle({
    timeout: 0,
    speed: 0,
    next: '#bookCycle img'
  });
  
});
