google.load("jqueryui", "1.5.2");

    $(document).ready(function() {        
        $("table.tableOver tbody tr:even").addClass("alt");
        $("table.tableOver tbody tr:odd").addClass("normal");
        
        $('table.tableOver tbody tr.alt').hover(
            function() {
                $(this).find('td').stop().animate({backgroundColor : '#E0E8E2'},500);
            },
            function() {
                $(this).find('td').stop().animate({backgroundColor : '#EAE9E3'},200);
            }
        );
        
        $('table.tableOver tbody tr.normal').hover(
            function() {
                $(this).find('td').stop().animate({backgroundColor : '#E0E8E2'},500);
            },
            function() {
                $(this).find('td').stop().animate({backgroundColor : '#FFF'},200);
            }
        );
    });
