function handleCloseVideo(event) {
  $$('.lightbox_background')[0].hide();
  var billboard = $('normal_site');
  billboard.appear();
  var video = $('video_wrapper');
  video.hide();
  // Blow away the contents of video_wrapper... This is required for IE
  // since hiding the swfobject isn't enough to stop the audio of the
  // Flash movie

  var slimlist = video.select(".slimlist-player")[0];
  if (slimlist) {
    video = slimlist;
  }
  video.update("");

  $$(".billboard-close")[0].hide();
  if (pageTracker)
    pageTracker._trackEvent("videos", "close");
  if (gVideoTimeout)
      window.clearTimeout(gVideoTimeout);
  
}

function handlePlayVideo(event) {
  $$('.lightbox_background')[0].show();
  var billboard = $('normal_site');
  billboard.hide();
  var video = $('video_wrapper');
  video.show();
  $$(".billboard-close")[0].show();
  if (pageTracker)
    pageTracker._trackEvent("videos", "play");
  gVideoTimeout = handleVideoFinished.delay(110);
}

function handleVideoFinished() {
  if (pageTracker)
    pageTracker._trackEvent("videos", "stop");
  gVideoTimeout = undefined;
}
