$(document).ready(function() {

	//replace head items
	$('.Head01').each(function() {
		$(this).replaceWith("<h1>" + $(this).text() + "</h1>");
	});
	
	$('.Head02').each(function() {
		$(this).replaceWith("<h4>" + $(this).text() + "</h4>");
	});
	
	$('.Head03').each(function() {
		$(this).replaceWith("<h4>" + $(this).text() + "</h4>");
	});

});
