$(document).ready(function() {
    $("#ajx").hide();

    $("body#postlogin div#levels").hover(function() {
        $(this).animate({ backgroundColor: "#ff9100", color: "#fff" }, {queue: false, duration:750});
    }, function() {
        $(this).animate({ backgroundColor: "#fff", color: "#000"  }, {queue: false, duration:750});
    });


    $("body#postlogin div#settlements").hover(function() {
        $(this).animate({ backgroundColor: "#387c2b", color: "#fff"  }, {queue: false, duration:750});
    }, function() {
        $(this).animate({ backgroundColor: "#fff", color: "#000"  }, {queue: false, duration:750});
    });


    $("body#postlogin div#executive").hover(function() {
        $(this).animate({ backgroundColor: "#005a84", color: "#fff"  }, {queue: false, duration:750});
    }, function() {
        $(this).animate({ backgroundColor: "#fff", color: "#000"  }, {queue: false, duration:750});
    });
});
