$(function(){ 

	$('#tsl').tableSorter({
		sortClassAsc: 'tslasc',
		sortClassDesc: 'tsldesc'
	});
	
	$('#tsl th').mouseover(function(){
		$(this).addClass('hover');
		$(this).attr('title','Kliknij, aby posortować względem tej kolumny');
	}).mouseout(function(){
		$(this).removeClass('hover');	
	});			
	$('#tsl tr').mouseover(function(){
		$(this).addClass('hover');		
	}).mouseout(function(){
		$(this).removeClass('hover');	
	}).click(function(){
		window.location.href = '/'+$(this).attr('id')+'/';			
	});
	$('#tsl tr td').mouseover(function(){
		$(this).addClass('hover');		
	}).mouseout(function(){
		$(this).removeClass('hover');	
	});		

		
});
