 $(document).ready(function(){
	$(".sortable").tablesorter({
		headers: {
			0: { sorter: false },
			1: { sorter: false },
			2: { sorter: false }
		},
		sortList: [[0,0]],
		widgets: ['zebra'],
		dateFormat: "dd/mm/yy"
	});
 });
 
 function productAsc() {
	$(".sortable").tablesorter({
		sortList: [[0,0]],
		widgets: ['zebra']
	});
 }
 
 function productDesc() {
	$(".sortable").tablesorter({
		sortList: [[0,1]],
		widgets: ['zebra']
	});
 }
 
 function genericAsc() {
	$(".sortable").tablesorter({
		sortList: [[1,0]],
		widgets: ['zebra']
	});
 }
 
 function genericDesc() {
	$(".sortable").tablesorter({
		sortList: [[1,1]],
		widgets: ['zebra']
	});
 }
 
 function theraAsc() {
	$(".sortable").tablesorter({
		sortList: [[2,0]],
		widgets: ['zebra']
	});
 }
 
 function theraDesc() {
	$(".sortable").tablesorter({
		sortList: [[2,1]],
		widgets: ['zebra']
	});
 }

 function careerDateAsc() {
	$(".sortable").tablesorter({
		sortList: [[0,0]],
		widgets: ['zebra']
	});
 }
 
 function careerDateDesc() {
	$(".sortable").tablesorter({
		sortList: [[0,1]],
		widgets: ['zebra']
	});
 }

 function careerTitleAsc() {
	$(".sortable").tablesorter({
		sortList: [[1,0]],
		widgets: ['zebra']
	});
 }
 
 function careerTitleDesc() {
	$(".sortable").tablesorter({
		sortList: [[1,1]],
		widgets: ['zebra']
	});
 }
 function careerLocationAsc() {
	$(".sortable").tablesorter({
		sortList: [[2,0]],
		widgets: ['zebra']
	});
 }
 
 function careerLocationDesc() {
	$(".sortable").tablesorter({
		sortList: [[2,1]],
		widgets: ['zebra']
	});
 }
  
 function careerJobtypeAsc() {
	$(".sortable").tablesorter({
		sortList: [[3,0]],
		widgets: ['zebra']
	});
 }
 
 function careerJobtypeDesc() {
	$(".sortable").tablesorter({
		sortList: [[3,1]],
		widgets: ['zebra']
	}); 
 }

 function healthConditionAsc() {
	$(".sortable").tablesorter({
		sortList: [[0,0]],
		widgets: ['zebra']
	});
 }
 
 function healthConditionDesc() {
	$(".sortable").tablesorter({
		sortList: [[0,1]],
		widgets: ['zebra']
	});
 }
 
 function conditionSummaryAsc() {
	$(".sortable").tablesorter({
		sortList: [[1,0]],
		widgets: ['zebra']
	});
 }
 
 function conditionSummaryDesc() {
	$(".sortable").tablesorter({
		sortList: [[1,1]],
		widgets: ['zebra']
	});
 }
 
