	
function bindSorter(){
	$('.tablesorter').tablesorter(
		{
			headers: {0: {sorter: false},1:{sorter: false},5: {sorter: false}},
			cssAsc: 'tarifsSortUp',
			cssDesc: 'tarifsSortDown',
			cssHeader: 'tarifsHeader'
		}
	);

	return;	
}

function changeCurrencyResponse( data )
{
	
	if(data) {
		$('div.ajax-loader').remove();
		$('#tarifTable_' + currentCategory).after(data).remove();
	}

	bindSorter();
}

$(function(){	
	bindSorter();
});