<!--[31,143,398] published at 2009-03-13 13:49:55 from #150 by 2428-->
<!--[31,143,398] published at 2009-03-11 15:43:04 from #150 by 2428-->
document.writeln('<table style="width:150px;" border="0" cellpadding="0" cellspacing="0">');
for (var i=0;i<item.length;i++){
	document.writeln('<tr onClick="ShowItem(' +i+ ');" style="cursor:pointer;color:#D23A2C" id="menu' +i+ '">');
	document.writeln('<td style="height:23px;line-height:23px;border-bottom:1px #ffffff solid;padding-bottom:0px;"><img style="float:left;margin-right:5px;" src="http://i3.sinaimg.cn/cj/images/tools2.gif" id="tImg' +i+ '" style="height:23px;line-height:23px;"/>');
	document.writeln(item[i][0]+ '</td>');
	document.writeln('</tr>');
	document.writeln('<tr id=item' +i+ ' style="display:none;">');
	document.writeln('<td style="background-color:BBE4F5;border-bottom:1px solid #ffffff">');
	document.writeln('<table style="width:150px;border:0;" cellpadding="0" cellspacing="0">');
	for (var j=0;j<item[i][1].length;j++){
		document.writeln('<tr>');
		document.writeln('<td style="text-align:right;padding-right:10px;width:127px;height:23px;background-color:#BBE4F5;border-bottom:1px solid #ffffff;"><a href="' +item[i][1][j][1]+ '" > ' +item[i][1][j][0]+ '</a></td>');
		document.writeln('</tr>');
	}
	document.writeln('</table>');
	document.writeln('</td>');
	document.writeln('</tr>');
}
document.writeln('</table>');
ShowItem(navIndex);
//¼ÆËãÆ÷×ó²àµ¼º½
