$(document).ready(function()
  {
    $(".fotky a").lightBox();

    // odkazy s http do noveho okna
    $("a:[href^=http://]").each(function() {
      $(this).addClass("out-link");
      $(this).attr('title', $(this).attr('title') + " - Odkaz do nového okna");
      $(this).attr({
        target: "_blank"
      });
    });

    // main menu
    $("#nav li:has(ul)").hover(function()
    {
      if (!$(this).children("ul").is(':animated'))
      {
        $(this).children("ul").css("display", "none");
        $(this).children("ul").slideDown("normal");
      }
    },
    function()
    {
      $(this).children("ul").slideUp("fast");
    });

    $("#nav li").hover(function()
    {
      $(this).children("a").addClass("active");
    },
    function()
    {
      $(this).children("a").removeClass("active");
    });

  });

