


// jQuery(document).ready(function(){
//   jQuery('a[href*=#]').click(function() {
//     if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
//     && location.hostname == this.hostname) {
//     
//       var jQuerytarget = jQuery(this.hash);
//       
//       
//       jQuerytarget = jQuerytarget.length && jQuerytarget
//       || jQuery('[name=' + this.hash.slice(1) +']');
//       if (jQuerytarget.length) {
//         var targetOffset = jQuerytarget.offset().top-160;
//         jQuery('html,body')
//         .animate({scrollTop: targetOffset}, 1000, 'easeOutSine');
//        return false;
//       }
//     }
//   });
// });





// v3

// $(document).ready(function() {
//   function filterPath(string) {
//   return string
//     .replace(/^\//,'')
//     .replace(/(index|default).[a-zA-Z]{3,4}$/,'')
//     .replace(/\/$/,'');
//   }
//   var locationPath = filterPath(location.pathname);
//   $('a[href*=#]').each(function() {
//     var thisPath = filterPath(this.pathname) || locationPath;
//     if (  locationPath == thisPath
//     && (location.hostname == this.hostname || !this.hostname)
//     && this.hash.replace(/#/,'') ) {
//       var $target = $(this.hash), target = this.hash;
//       if (target) {
//         var targetOffset = $target.offset().top;
//         $(this).click(function(event) {
//           event.preventDefault();
//           $('html, body').animate({scrollTop: targetOffset}, 400, function() {
//             location.hash = target;
//           });
//         });
//       }
//     }
//   });
// });
//  


// v4
jQuery(document).ready(function() {
  function filterPath(string) {
  return string
    .replace(/^\//,'')
    .replace(/(index|default).[a-zA-Z]{3,4}jQuery/,'')
    .replace(/\/jQuery/,'');
  }
  var locationPath = filterPath(location.pathname);
  var scrollElem = scrollableElement('html', 'body');
 
  jQuery('a[href*=#]').each(function() {
    var thisPath = filterPath(this.pathname) || locationPath;
    if (  locationPath == thisPath
    && (location.hostname == this.hostname || !this.hostname)
    && this.hash.replace(/#/,'') ) {
      var jQuerytarget = jQuery(this.hash), target = this.hash;
      if (target) {
        var targetOffset = jQuerytarget.offset().top - 160;
        jQuery(this).click(function(event) {
          event.preventDefault();
          jQuery(scrollElem).animate({scrollTop: targetOffset}, 2200, function() {
            //location.hash = target;
          });
        });
      }
    }
  });
 
  // use the first element that is "scrollable"
  function scrollableElement(els) {
    for (var i = 0, argLength = arguments.length; i <argLength; i++) {
      var el = arguments[i],
          jQueryscrollElement = jQuery(el);
      if (jQueryscrollElement.scrollTop()> 0) {
        return el;
      } else {
        jQueryscrollElement.scrollTop(1);
        var isScrollable = jQueryscrollElement.scrollTop()> 0;
        jQueryscrollElement.scrollTop(0);
        if (isScrollable) {
          return el;
        }
      }
    }
    return [];
  }
 
});
