$(function () {

  var $btw = $('#book-trailer-wrapper');
  var $bt = $('#book-trailer');

  $bt.load('/BECA/book-video/random-embed.php', function () {
    if ($bt.is(':parent')) {
      $bt.show();
      $btw.fadeIn();
    }
  });

  $('#see-more-video A').click(function (e) {
    e.preventDefault();
    $btw.css('height', $btw.height() + 'px');
    $bt.fadeOut(function () {
      $bt.load('/BECA/book-video/random-embed.php',
        { not_id: $('#the-video').data('video-id') },
        function () {
          $bt.fadeIn();
          $btw.css('height', 'auto');
        });
    });
  });

  $bt.delegate('.text', 'click', function () {
    window.location = $bt.find('.buy-book').attr('href');
  });

});

/* End of file. */

