        
var speed=5000;
var aktnews=0;

  $(document).ready(function(){
    $('#menu li').bind('mouseleave',function(){
      $(this).children('ul').hide();
    }).bind('mouseenter',function(){
      $(this).children('ul').show();
    });
    
    $('img').closest('a[href$=jpg]').lightbox();
    
    $('#novinky>a:not(:first)').hide();
    
    if ($('#novinky>a').size()>1){
      setTimeout('rotatenews()',speed);
    }
    
    /*$('#weather').animate({opacity: 0.4},1);
    $('#weather').bind('mouseleave',function(){
      $(this).animate({opacity: 0.4},500);
    }).bind('mouseenter',function(){
      $(this).animate({opacity: 1},500);
    });*/
  });

  function rotatenews(){
    $('#novinky>a').fadeOut('slow');
    pocet=$('#novinky>a').size();
    aktnews=(aktnews+1)%pocet;
    $('#novinky>a:eq('+aktnews+')').fadeIn('slow');
    setTimeout('rotatenews()',speed);
  }