	var slidespeed=7000;
	
	function slideimages(actimg){
		pocet=$('#header>img').size();
		if (pocet && actimg<pocet){
			$('#header>img').fadeOut('slow');
			$('#header>img:eq('+actimg+')').fadeIn('slow');
			setTimeout("slideimages("+((actimg+1)%pocet)+")",slidespeed);
		}
	}
  
  tab="";
  
  $(document).ready(function(){
    $('.pano').ceebox({htmlWidth: 460,htmlHeight: 350});
    $('#menu li:eq(1)').css('background-image','none');
    $('#menu li a:not(:first)').map(function(){
      if ($(this).attr('href')==location.href){
        $(this).attr('class','active');
      }
    });
    if ($('#tabs').size()){
      getanchor();
      opentab();
    }
    $('#submenu a').click(function(){
      tab="#"+$(this).attr('href').split('#')[1];
      opentab();
      $('.tellafriendform').hide('slow');
    });
    $('img').closest('a[href$=jpg]').attr('rel','gallery').lightbox();
    $('.thickbox').lightbox();
    $('.datepicker').datepicker();
    $('#header>img:not(:first)').hide();
    setTimeout("slideimages(1)",slidespeed);
    
    setsize();
  });
  
  $(window).resize(function(){ setsize(); });
  
  function setsize(tabsize){
    tabsize=(tabsize)?tabsize:0;
    max=Math.max(tabsize,$('#maincontent').height(),$(window).height()-$('#header').height()-$('#footer').height()-110);
    max=(tabsize==max)?max+10:max;
    if ($('.subpage').size()){
      $('#leftcol').height(max-120); //-505
    }
    max=(tab=="#location")?max+80:max+20;
    $('#maincontent').height(max);
  }

  function getanchor(){
		x=document.location.toString().split('#')[1]; 
		tab="#"+((x)?x:"overview");
  }
  
  function opentab(){
    $('#tabs>div').hide();
    $(tab).show();
    $('#submenu a').attr('class','nonactive');
    $('#submenu a[href*='+tab+']').attr('class','active');
    setsize($(tab).height());
    $('#location iframe').map(function(){
      $(this).attr('src',$(this).attr('src'));
    });
  }
  
