

$(document).ready(function(){	
 $("#slider").easySlider({
 auto: true, 
 continuous: true
 });
});

		$(document).ready(function(){
		
	      $('header').css('opacity', '0');
	      $('header').animate({opacity : 1.0}, 2000);
		  $('.button:odd').animate({top : '+=40px'}, 1000);
		  $('.button:even').animate({top : '+=60px'}, 1000);
		  $('.button:odd').animate({top : '-=40px'}, 2000);
		  $('.button:even').animate({top : '-=60px'}, 2000);
		 
		 $("a[href='#uvod']").click(function() {
          $('html, body').animate({scrollTop: $("#uvod").offset().top}, 2000);
		  $('.button2').attr('class', 'button');
		  $('.button').eq(0).attr('class', 'button2');
         });
		 
		 $("a[href='#sluzby']").click(function() {
          $('html, body').animate({scrollTop: $("#sluzby").offset().top}, 2000);
		   $('.button2').attr('class', 'button');
		  $('.button').eq(1).attr('class', 'button2');
         });
		 
		 $("a[href='#reference']").click(function() {
          $('html, body').animate({scrollTop: $("#reference").offset().top}, 2000);
		  $('.button2').attr('class', 'button');
		  $('.button').eq(2).attr('class', 'button2');
         });
		 
		 $("a[href='#kontakt']").click(function() {
          $('html, body').animate({scrollTop: $("#kontakt").offset().top}, 2000);
		  $('.button2').attr('class', 'button');
		  $('.button').eq(3).attr('class', 'button2');
         });
		 
		 $("a[href='#napiste_nam']").click(function() {
          $('html, body').animate({scrollTop: $("#napiste_nam").offset().top}, 2000);
		  $('.button2').attr('class', 'button');
		  $('.button').eq(4).attr('class', 'button2');
         });
		 
		 $("a[href='#podpora']").click(function() {
          $('html, body').animate({scrollTop: $("#podpora").offset().top}, 2000);
          $('.button2').attr('class', 'button');
		  $('.button').eq(5).attr('class', 'button2');
         });
		 
		 });

