$(document).ready(function(){
   // Úvod > Slider
   jQuery('div.header-slider').easySlider();
        $('.ohlasy').cycle()
        
   // Úvod lightbox
   Shadowbox.init({
	});
	
 });
 
//jazykové moduly
$(function () { 
  if($('.leftmenu').length != 0) {
	  var msie6 = $.browser == 'msie' && $.browser.version < 7;
	  
	  if (!msie6) {
	    var top = $('.leftmenu').offset().top - parseFloat($('.leftmenu').css('margin-top').replace(/auto/, 0));
	    $(window).scroll(function (event) {
	      // what the y position of the scroll is
	      var y = $(this).scrollTop();
	      
	      // whether that's below the form
	      if (y >= top) {
	        // if so, ad the fixed class
	        $('.leftmenu').addClass('fixed');
	      } else {
	        // otherwise remove it
	        $('.leftmenu').removeClass('fixed');
	      }
	    });
	  }  
  }
});
