$.extend($.fn, {
    scrollTo: function(){
        this.click(function(){
            $("html:not(:animated),body:not(:animated)").animate({scrollTop: jQuery('a[name="'+this.href.split("#")[1]+'"]').offset().top-100},300);
            return false;
        });
    }
});

