/**
 * Custom parsers for the jQuery TableSorter plug-in.
 * @author rovargas
 */

$.tablesorter.addParser({ 
	id: "mileage",
	is: function(s) {
		return false;
	},
	format: function(s) {
		return $.tablesorter.formatFloat(s.replace(new RegExp(/,/g),""));
	},
	type: "numeric"
});
