function toggleZone(nomZone)
{
  $(".hideBlock").hide();
  $("#" + nomZone).fadeIn(2000);
}

$(".hideBlock").hide();

