
	
/****************************************************************************************************
*
*	Copyright notice
*
*	This file is part of killerCMS.
*
*	killerCMS is a browser-based web content management system with in-place-editing features.
*	killerCMS was developed by Philipp Killer at web-manufaktur gmbh, Zurich from 2004 - 2011.
*
*   Copyright (C) 2004-2011 by Philipp Killer of web-manufaktur gmbh, Zurich
*	(killer@web-manufaktur.com, PhilippKiller@gmx.ch)
*
*    This program is free software: you can redistribute it and/or modify
*    it under the terms of the GNU General Public License as published by
*    the Free Software Foundation, version 3 of the License.
*
*    This program is distributed in the hope that it will be useful,
*    but WITHOUT ANY WARRANTY; without even the implied warranty of
*    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*    GNU General Public License for more details.
*
*    You should have received a copy of the GNU General Public License version 3
*    along with this programm (killerCMS).  If not, see <http://www.gnu.org/licenses/>.
*
*	This copyright notice MUST APPEAR in all copies of the script and be left unchanged!
*	
****************************************************************************************************/
/*JavaScript Copyright notice*/	

 						
		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());
		});
						
						
