jQuery(document).ready(function () {
    $(".navigation li:not(.active) a").hover(
        function () {
//            $(this).css("margin-left", "3em");
            $(this).animate({
                marginLeft: "3em",
            }, "slow");
        },
        function () {
//            $(this).css("margin-left", "0");
            $(this).animate({
                marginLeft: "0",
            }, "slow");
        }
    );
    // Use absolute positioning to display contact info
    // just below center of page on the right of container
    $(".container").css("position", "relative");
    
});