  
  var aktimg=0;
  var rychlost=5000;

  $(document).ready(function(){
    $('#menu li').bind('mouseleave',function(){
      $(this).children('ul').hide();
    }).bind('mouseenter',function(){
      $(this).children('ul').show();
    });
    $('#menu li[title=Učitelé]').find('ul').css('width','400px').find('li:even').css({'float':'left','width':'200px'}).parent('ul').find('li:odd').css('margin-left','200px');
    $('img').closest('a[href$=jpg],.webcamlink').lightbox();
    $('#hgal2>img:not(:first)').hide();
    $('#hgal2>div:not(:first)').hide();
    max=Math.max($('#maincontentin').height(),$(window).height()-381);
    $('#maincontentin').height(max);
    setTimeout('slideimages()',rychlost);
  });
  
  function slideimages(){
    pocet=$('#hgal2>img').size();
    $('#hgal2>img:eq('+aktimg+')').fadeOut('slow');
    $('#hgal2>div:eq('+aktimg+')').slideUp('slow');
    aktimg=(aktimg+1)%pocet;
    $('#hgal2>img:eq('+aktimg+')').fadeIn('slow');
    $('#hgal2>div:eq('+aktimg+')').slideDown('slow');
    setTimeout('slideimages()',rychlost);
  }
  
