$(document).ready(function(){

$("#predstavitev").click(function () {
  $("#predstavitev_sub").toggle();
  $("#izobrazevalni_sub").hide();
  $("#koledar_sub").hide();
  $("#nastopi_sub").hide();
});

$("#izobrazevalni").click(function () {
  $("#izobrazevalni_sub").toggle();
  $("#predstavitev_sub").hide();
  $("#koledar_sub").hide();
  $("#nastopi_sub").hide();
});

$("#koledar").click(function () {
  $("#koledar_sub").toggle();
  $("#izobrazevalni_sub").hide();
  $("#predstavitev_sub").hide();
  $("#nastopi_sub").hide();
});

$("#nastopi").click(function () {
  $("#nastopi_sub").toggle();
  $("#koledar_sub").hide();
  $("#izobrazevalni_sub").hide();
  $("#predstavitev_sub").hide();
});

});

