改哪里才能把下面这个函数生成的树形菜单中的字体的样式改了。给个实例。怎样改。
menutree.prototype.addFolder=function(txt,link,show){ 
this.msg[this.node]=[txt,link?link:''] 
this.html+=" <tr> <td class='node'> <nobr>&nbsp;&nbsp; <img src='"+(show?icon[1]:icon[0])+"' id='img"+this.child+"' border=0 align='absmiddle' onclick='"+this.obj+".expand("+this.child+")'> <input type='checkbox' name='treeFolder' onclick='"+this.obj+".checkAll(this,"+this.child+")' style='display:"+(this.showCheck?'':'none')+"'> <span onmouseover='doOver(this)' onmouseout='doOut(this)' onmousedown='"+this.obj+".Light(this,"+this.node+");"+this.obj+".expand("+this.child+")' title='"+txt+"'>"+txt+" </span> </nobr> </td> </tr> <tr id='child"+this.child+"' style='display:"+(show?'':'none')+"'> <td class='node'>" 
this.html+=" <table cellspacing=0 cellpadding=0 border=0 style='margin-left:18;'>" 
this.child++ 
this.node++; 

menutree.prototype.endFolder=function(){ 
this.html+=" </table> </td> </tr>"