
$(document).ready(function () {

    $("#tableListDiv table tr").mouseover(function () {
        if ( ($(this).attr('class') == 'tableListTR1') || ($(this).attr('class') == 'tableListTR2') ) {
            $(this).addClass("tableListTROver");
        }
    }).mouseout(function(){
        $(this).removeClass('tableListTROver');
    })

    /*
    $(".offerListBoxClass").mouseover(function () {
        $(this).addClass("tableListTDOver");
    }).mouseout(function(){
        $(this).removeClass('tableListTDOver');
    })
    */

});

