$(document).ready(function()
{
    $("ul.topnav li a").hover(
        function()
        {
            $(this).animate(
                {
                    backgroundColor: "#8DCF0C"
                }, 200);
        },
        function()
        {
            $(this).animate(
                {
                    backgroundColor: "#BFE27E" 
                }, 600);
        }
    );
});

