$(document).ready(function() {
  
  // Menu polozky
  $('.menu a[href="#header"], a[href="#sortiment"], a[href="#provozovna-as"]').each(function(i){
    $(this).click(function(){
      myRe=/.*(#.+)/;
      myArray = myRe.exec(this.href);

      $(".menu").removeClass("act");
      $(this).parents("li").addClass("act");

      $.scrollTo(myArray[1], 1000, {
        easing: "swing"
      });
      
      return false;
    });
  });
  
  // Ostatni odskoky #header
  $('a[href="#header"]').each(function(i){
    $(this).click(function(){

      $(".menu").removeClass("act");
      $("#menu-uvod").parents("li").addClass("act");

      $.scrollTo("#header", 1000);

      return false;
    });
  });
});
