document.writeln("<TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0>");
document.writeln("<TR><TD class='lightgray' rowspan=" + subsection_lengths[current_section] + ">");
document.writeln("<img src='../images/pixel.gif' height='99' width='1'></TD>");

var section_loop_num = subsection_lengths[current_section];

	for (var jj=1; jj<=section_loop_num; ++jj) {
	var tt = "";	
		
		if(jj > 1){
		tt += "<TR>";
		}
		tt += "<TD class='lightgray'>";
			tt += "<a ";
				tt += "href='";
					tt+= "/";
					tt += section_names[current_section];
					tt += "/";
					tt += subHrefs[current_section][jj];
					
					tt += "?";
					tt += "section=";
					tt += current_section;
					tt += "&sub=";
					tt += jj;
					tt += "' ";
					tt += "onMouseOver='msoverSub(";
					tt += jj;
					tt += ")' ";
					tt += "onMouseOut='msoutSub(";
					tt += jj;
					tt += ")' ";
					
			tt += ">";
				tt += "<img ";
				tt += "src='";
					tt += "/images/nav";
					tt += current_section;
					tt += "-";
					tt += jj;
					
					if (jj == current_sub) {
						tt += "_on";
					}
					else
					{
					tt += "_off";
					}
					tt += ".gif";
				tt += "' ";
				tt += "border='0' ";
				tt += "NAME='";
					tt += "nav";
					tt += current_section;
					tt += "-";
					tt += jj;
				tt += "' ";
			tt += ">";
				
			tt += "</A>";
		tt += "</TD></tr>";
		//debug(tt);
	document.writeln(tt);	
	}

document.writeln("</TABLE>");
