$(function () {
    // Hover effect on the Get Started button
    $("a#getStartedLink").click(function () {
        window.location = $(this).attr("href");
    });
    $("a#getStartedLink").mouseenter(function () {
        $(this).find("div").animate({ height: 69, marginTop: 0 }, 500, function () { });
    });
    $("a#getStartedLink").mouseleave(function () {
        $(this).find("div").animate({ height: 43, marginTop: 21 }, 500, function () { });
    });
});


