

//jQuery.noConflict();

$.fn.extend({
    scrollTo: function (speed, easing) {
        return this.each(function () {
            var targetOffset = jQuery(this).offset().top;
            jQuery("html,body,form").animate({ scrollTop: targetOffset }, speed, easing);
        });
    }
});

$(document).ready(function () {
    $("a#lnkhakkimda").click(function () {
        //        alert("deneme");
        $("div.footer").scrollTo(2500);
    });

    $("a#toplink").click(function () {
        //        alert("deneme");
//        window.location.hash = $(this).attr("href");
        $("html,body,form").scrollTo(2500);
    });
});

