$(function(){
	$('table.dataTable tbody tr').live('mouseover', function(){
		$(this).children().addClass('highlighted');
		
	});
	$('table.dataTable tbody tr').live('mouseout', function(){
		$(this).children().removeClass('highlighted');
	});
	
})
