(function($) {
	$.tablesorter.addWidget({
		id: 'multisort',
		format: function(table) {
			var sortList = table.config.sortList;
			
			if ( sortList.length > 0) {
				jQuery(".ASSET_TABLE").each(function() {
					var compSort = this.config.sortList;			
					
					if(sortList != compSort) {
						$(this).trigger('sorton', [sortList]);
					}
				});
			}
		}
	});
})(jQuery);
