$(document).ready(function()
{
	$("table.tablesorter tr.tabelrow").hover(function()  
	{
		$(this).removeClass("tabelrow").addClass("hover");
   	},
   	function() 
   	{
		$(this).removeClass("hover").addClass("tabelrow");
	});
	$("table.tablesorter tr.expand-child").hover(function()  
	{
		$(this).removeClass("expand-child").addClass("hover");
   	},
   	function() 
   	{
		$(this).removeClass("hover").addClass("expand-child");
	});
});
