﻿$(document).ready(function () {
    $(".linkanne a").bind("click", function (event) {
        event.preventDefault();
        var target = $(this).attr("href");
        $("html, body").stop().animate({
            scrollLeft: $(target).offset().left,
            scrollTop: $(target).offset().top
        }, 1200);
    });
    $('.towebdesign').click(function () {
        $("#sitedesign").slideto({
            highlight: false,
            highlight_duration: 'slow'
        });
 
    });
}); 
