// JavaScript Document

function fontOff() {
	var theFonts= document.getElementsByTagName("FONT");
	
	for (var i=0; i<theFonts.length; i++) {
		theFonts[i].removeAttribute('face');
		theFonts[i].removeAttribute('color');
		theFonts[i].removeAttribute('size');
	}
}
function styleInlineOff() {
	
	var conteudo= document.getElementById("TJK_SlideMenu");
	
	var theSpan= conteudo.getElementsByTagName("span");
	
	for (var a=0; a<theSpan.length; a++) {
		theSpan[a].removeAttribute('style');		
	}
}
addLoadEvent(fontOff);
addLoadEvent(styleInlineOff);