						
		jQuery(function() {
			jQuery('table.tablesorter').each(function () {
				/*jQuery(this).find('thead tr').each(function () {
					var strR = jQuery(this).html().replace(new RegExp('<td','gi'),'<th');
					var strR = strR.replace(new RegExp('<\/td','gi'),'<\/th');
					
					jQuery(this).replaceWith( strR );
					//alert(jQuery(this).html()+'\n'+strR);					  
				});*/
					
			}).tablesorter();
			
			//alert(jQuery('table.sortable_table').html());
		});
						
						