function MagicPageFix() {

	// jquery version
	// because of other page styles that might mess up the page rendering
	// we actually remove the content from inside blocka and paste it into blockb

	if ($("#magic-blocka").length > 0) {
		if ($("#magic-blockb").length > 0) {
			var objmagiccontent = $("#magic-blocka").html();
			$("#magic-blocka").html('');
			$("#magic-blockb").html(objmagiccontent);
	  }
	}

}


