/**
 * @author JunLisondra
 *
 * does the hover effects on journal and poetry tables
 */
Event.observe(window, 'load', function(){
    $$("table#category_list tbody tr").each(function(row){
        $(row).observe("mouseover", function(){
            $(row).descendants().each(function(d){
                if ($(d).tagName == "TD") {
                    $(d).setStyle({
                        backgroundColor: "#99CCCC;"
                    })
                }
            })
        });
        $(row).observe("mouseout", function(){
            $(row).descendants().each(function(d){
                var mycolor = $(row).hasClassName("alte") ? "#EFECC9;" : "#E8E3B3;";
                if ($(d).tagName == "TD") {
                    $(d).setStyle({
                        backgroundColor: mycolor
                    })
                }
            })
        });
    });
});
