$(document).ready(function(){

  $('div#centre-column a.image').fancybox();

  // Set the video width & height.

  var videoWidth  = 640;
  var videoHeight = 385;

  // Handle video clicks (Fancybox -> iframe).

  $('div#centre-column a.video').fancybox({
    type: 'iframe',
    titleShow: false,
    scrolling: 'no',
    overlayColor: '#000',
    overlayOpacity: 0.5,
    width: videoWidth,
    height: videoHeight,
    onCleanup: function() {
      $('iframe#fancybox-frame').remove();
    }
  });

});
