 $(document).ready(function() {
        $('table#price tr').mouseleave(function() { this.bgColor = "White"; $(this).removeClass("price_hover"); });
        $('table#price tr').hover(function() { this.bgColor = "#DDDDDD"; $(this).toggleClass("price_hover"); });
});
