jQuery(function(){
	if(jQuery('.tablesorter').length > 0) {
		jQuery('.tablesorter').tablesorter({
			sortList: [[0,1]],
			widgets: ['zebra']
		})
		.tablesorterPager({
			container: jQuery("#talbesorterPager"),
			positionFixed: false,
			size: 25
		});
		jQuery('#talbesorterPager')
			.insertAfter('.tablesorter')
			.css('display', 'block')
		;
	}
});
