$(document).ready(function () {
    $.localScroll()
});
$(document).ready(function () {
    $(".menu a").hover(function () {
        $(this).animate({
            color: "#e31f26"
        }, 400)
    }, function () {
        $(this).animate({
            color: "#eaeaea"
        }, 500)
    });
    $(".footermenu a").hover(function () {
        $(this).animate({
            color: "#e31f26"
        }, 400)
    }, function () {
        $(this).animate({
            color: "#eaeaea"
        }, 500)
    });
    $(".footermenu-blog a").hover(function () {
        $(this).animate({
            color: "#e31f26"
        }, 400)
    }, function () {
        $(this).animate({
            color: "#eaeaea"
        }, 500)
    })
});

