$(function() { 
    $("table.online_table > tbody > tr:nth-child(odd)").addClass("odd");
    $("table.online_table > tbody > tr:nth-child(even)").addClass("even");
    $(".nsitem").hover(
	function(){$(this).addClass("light");},
	function(){$(this).removeClass("light");}
    );
    //$('.shtitle').corner("round 8px").parent().css('padding', '2px').corner("round 10px");
});
