tickInit = function(){};
$(document).ready(function(){
	$('div.coltitle').each(function(){
		var div = $(this);
		var h3 = $('<h3/>');
		h3.html(div.html());
		div.before(h3);
		div.remove();
	});
	$('div.col').each(function(){
		var div = $(this);
		div.before(div.html());
		div.remove();
	});
	$('div.colcontent').each(function(){
		var div = $(this);
		div.before(div.html());
		div.remove();
	});
});
