$(document).ready(
         function()
         {
            // Styling for styled vanilla tables
            zebraStripe("table.styled tr");
            $("table.styled").each(function() { $(this).find("th").eq(0).addClass("title") } );
            $("table.styled tr td:first-child, table.styled tr th:first-child").addClass("first");
            
            $("table.styled span.right").each(
                function()
                {
                    $(this).children("img").eq(0).attr("title", $(this).children("span.tip").eq(0).html());
                    $(this).children("span.tip").remove();
                    $(this).css("display", "block");
                }
            );
            
            // Assign the Tooltips
            $("table.styled span.right img").tooltip({
                    showURL: false,
                    track: true
            });
         }
    )