$(document).ready(function() { 
    $("table").tablesorter(); 
    $("#industry").click(function() { 
        // set sorting column and direction, this will sort on the column 1 + 2, column index starts at zero 
        var sorting = [[1,0],[0,1]];
        // sort on the first column 
        $("table").trigger("sorton",[sorting]); 
        // return false to stop default link action 
        return false; 
    }); 
    $("#client").click(function() { 
	     // set sorting column and direction, this will sort on the column 1 + 2, column index starts at zero 
	     var sorting = [[0,0],[1,1]];
	     // sort on the first column 
	     $("table").trigger("sorton",[sorting]); 
	     // return false to stop default link action 
	     return false; 
    }); 
});



$(document).ready(function() {
	$("tbody tr").hover(
		function() 
		{
		$(this).toggleClass('hover');
		}, 
		function() 
		{
		$(this).toggleClass('hover');
		}
	);
});
