$(document).ready(function()
{
  function TogglePlayer()
  {
    $("#video").toggle();
  }
  
  $("a#mentions_legales_link").fancybox(
  {
    titleShow: false,
    overlayOpacity: 0.6,
    overlayColor: "#000",
    onStart: function()
    {
      $("#video").hide();
    },
    onClosed: function()
    {
      $("#video").show();
    },
    autoDimensions: false,
    width: 600,
    height: 350
  });
  
  $("a#contactForm_link").fancybox(
  {
    enableKeyboardNavigation: false,
    titleShow: false,
    overlayOpacity: 0.6,
    overlayColor: "#000",
    onStart: function()
    {
      $("#video").hide();
    },
    onClosed: function()
    {
      $("#video").show();
      $("#errorBoxContact").hide();
    },
    autoDimensions: false,
    width: 400,
    height: 430
  });
});
