﻿/* Requires jQuery */
$(document).ready(function() {
    $("#content table").hover(
        function() {
            $(this).css('backgroundColor', "#111111");
        },
        function() {
            $(this).css('backgroundColor', "black");
            //$(this).animate({ backgroundColor: "black" }, 200);
        }
    );
});