$(document).ready(function () {
    /* This code is executed after the DOM has been completely loaded */
    $("#kayana1").addClass("active");
    $('.fragmana_git a').click(function (e) {

        // If a link has been clicked, scroll the page to the link's hash target:
        if (this.hash == "#article1") {
            $.scrollTo(this.hash || 0, 1500, { offset: 280 });
        } else {
            $.scrollTo(this.hash || 0, 1500, { offset: -100 });
        }
        e.preventDefault();
    });



});
