$(document).ready(function()
    {
        $(".width100 tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
        $(".width100 tr:even").addClass("bg");
    });
