/*startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {	
if (navRoot.childNodes[i].nodeName=="LI") {
navRoot.childNodes[i].onmouseover=function() {
this.className+=" over";
  }
  navRoot.childNodes[i].onmouseout=function() {
  this.className=this.className.replace
	(" over", "");
   }
   }
  }
 }
}
window.onload=startList;*/

/* Chama SWF e tira barra de ativação do IE */
function addSWF(URL, WIDTH, HEIGHT, TRANSPARENT) {
 document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '); 
 document.write('width="'+ WIDTH +'" height="'+ HEIGHT +'">');
 document.write(' <param name="movie" value="'+ URL +'">');
 document.write(' <param name="quality" value="high">');

 if ( TRANSPARENT ) {
  document.write(' <param name="Wmode" value="transparent">'); 
 }

 document.write(' <embed src="'+ URL +'" quality="high" ');

 if ( TRANSPARENT ) {
  document.write('Wmode = "transparent" ');
 }
 document.write ('type="application/x-shockwave-flash" width="'+ WIDTH +'" height="'+ HEIGHT +'"></embed> ');
 document.write ('</object>');
}

function mudaTitulo(TITULO){
	document.title = TITULO;
}