﻿$(document).ready(function(){

  $("table .svoz").hide();
  $("table .svoz#legend").show();



  $("map area").click(function(){
    var name = $(this).attr("href");
    $("table .svoz").hide();
    $("table .svoz" + name).show();
    $("table .svoz#back").show();
    //alert(name);
  });

  $("table .svoz#back a#showlegend").click(function(){
    $("table .svoz").hide();
    $("table .svoz#legend").show();
  });

  $("table .svoz#legend a#showall").click(function(){
    $("table .svoz").show();
  });

});

