$(document).ready(function(){
    $("td[class='previewEscortPhoto'] a").hover(
        function() {
            $(this).parent().attr('style', "background:#000000;");
        }, function() {
            $(this).parent().attr('style', "background:#000000;");
        }
    );
    $("table[class='escortPreviewShort']").hover(
        function() {
            $(this).attr('style', "background:#000000;");
        }, function() {
            $(this).attr('style', "background:#000000;");
        }
    );
});
