jQuery(document).ready(function(){

  function stopVideo() {
    $("#fancy_wrap").remove();
  }

  $(".video-box .video a").fancybox({
    'frameWidth':345,
    'frameHeight':288,
    'hideOnContentClick': false,
    'padding':0,
    'overlayShow': false,
    'callbackOnClose': stopVideo 

  });

  return false;

});