$(document).ready(function() {

    // mouseover + mouseout on tables.pp
    $('.pp tr').mouseover(function() {
        $(this).addClass('highlight');
    });
    $('.pp tr').mouseout(function() {
        $(this).removeClass('highlight');
    });

});
