$(document).ready(function()
{

  $("#main-menu li:has(ul)").children("ul").css("display", "none");

  //horizontal menu
  $("#main-menu li:has(ul)").hover(function()
    {
      if (!$(this).children("ul").is(':animated'))
      {
        $(this).addClass("hover");
        $(this).children("ul").slideDown(300);
      }
    },
    function()
    {
      $(this).removeClass("hover");
      $(this).children("ul").slideUp(150);
    }
  );

  $(".fotogalerie a").lightBox();
});


