
function manipulate_htmltags() {
    if(document.getElementById("navi")) {
    	theTitles = document.getElementById("navi").getElementsByTagName("a");
    	for(var i=0; i < theTitles.length; i++) {
    		theTitles[i].removeAttribute('title');
    	}
    }
    
    if(document.getElementsByTagName("object")) {
    	theObjects = document.getElementsByTagName("object");
    	for (var i = 0; i < theObjects.length; i++) {
    		theObjects[i].outerHTML = theObjects[i].outerHTML;
    	}
    }
    
    if(document.getElementsByTagName("embed")) {
    	theEmbeds = document.getElementsByTagName("embed");
    	for (var i = 0; i < theEmbeds.length; i++) {
    		theEmbeds[i].outerHTML = theEmbeds[i].outerHTML;
    	}
    }
}

function addManipulatingLoadEvent(func) {
	var oldonload = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = func;
	} else {
		window.onload = function() {
			if (oldonload) {
				oldonload();
			}
			func();
		}
	}
}


addManipulatingLoadEvent(manipulate_htmltags);





