$(document).ready(function(){
  // zesvetleni filmu
  $("#film-back").fadeTo(0, 0.1);
  // sestaveni navigace
  $("#navigation").treeview({
    persist: "location",
    collapsed: true
  });
  // zobrazeni navigace
  $("#catalog").show();
  // foto
  $(".nahled").click(function(){
    $(".nahled").css("borderColor","#aaa");
    $(this).css("borderColor","#333");
    if($(this).attr("src").substr($(this).attr("src").length-5)=="s.jpg"){
      $("#foto-large").attr({src:$(this).attr("src").replace("s","l")});
    }
    $(".gal-det").animate({
      top:parseInt($(".gal-det").css("top"),10)+parseInt($("#film").offset().top,10)-parseInt($(this).offset().top,10)-parseInt($(this).height()/2,10)+parseInt($("#film").height()/2,10)
    },350);
  });
  setTimeout("$('.nahled:first').click();",100);
});

