$(document).ready(function() {
	$('fieldset').each(function() {
		var heading = $('legend', this).remove().text();
		$('<h3></h3>')
		.text(heading)
		.prependTo(this);
	});
});