function dconv($a) {
  return ($a[2]+$a[1]+$a[0]);
}

$.tablesorter.addParser({ 
    id: 'dates', 
    is: function(s) { 
	return false; 
    }, 
    format: function(s) { 
	return dconv(s.match(/(\d+)/g));
    }, 
    type: 'text' 
});

