$(document).ready(function () {
	// Apply transformation to h1 elements
	$('#content h1').each(function() {
		$(this).replaceWith('<h1><span>' + $(this).text() + '</span></h1>');
	});
}
);

