$(document).ready(function(){
	$("#main-content p").each(function() {
		$(this).removeAttr("style");
	});
	$("#main-content span").each(function() {
		$(this).removeAttr("style");
	});
	$("#main-content a").each(function() {
		var attribut = $(this).attr("href");
		var attribut2 = $(this).attr("name");
		if(attribut && attribut.indexOf("#") != -1) {
			stringarray = attribut.split("#");
			if($(this).attr('class') != "jump-up") {
				if($("#main-content a[name*='"+stringarray[1]+"']").html() == null && $("#main-content h1[id*='"+stringarray[1]+"']").html() == null && $("#main-content h2[id*='"+stringarray[1]+"']").html() == null) {
					$(this).replaceWith($(this).text());
				}
			}
		}
		if(attribut2 && attribut2.indexOf("_") != -1) {
			stringarray = attribut2.split("_");
			if($("#main-content a[href*='"+stringarray[1]+"']").html() == null) {
				$(this).replaceWith($(this).text());
			}
		}
	});
});
