$(document).ready(function() {
            $("table#highlight tr").mouseover(function() {
                $(this).addClass("hoverHighlighted");
            }).mouseout(function() {
                $(this).removeClass("hoverHighlighted");
            });
        });