﻿	var tablesorterMonths = {};
	tablesorterMonths["jan"] = "01";
	tablesorterMonths["feb"] = "02";
	tablesorterMonths["fév"] = "02";
	tablesorterMonths["mrt"] = "03";
	tablesorterMonths["mar"] = "03";
	tablesorterMonths["apr"] = "04";
	tablesorterMonths["avr"] = "04";
	tablesorterMonths["mei"] = "05";
	tablesorterMonths["mai"] = "05";
	tablesorterMonths["jun"] = "06";
	tablesorterMonths["jul"] = "07";
	tablesorterMonths["jui"] = "07";
	tablesorterMonths["aug"] = "08";
	tablesorterMonths["aoû"] = "08";
	tablesorterMonths["sep"] = "09";
	tablesorterMonths["okt"] = "10";
	tablesorterMonths["oct"] = "10";
	tablesorterMonths["nov"] = "11";
	tablesorterMonths["dec"] = "12";
	
	$j.tablesorter.addParser( {
		id :'DD-MMM-YY',
		is : function(s) {
			return false;
		},
		format : function(s) {
			s = '' + s; // Make sure it's a string
		var hit = s.match(/(\d{2}) ([^]{3}) (\d{4})/);
		if (hit && hit.length == 4) {
			return hit[3] + tablesorterMonths[hit[2]] + hit[1];
		} else {
			return s;
		}
	},
	type :'text'
	});