var i;

var toc = new Array(14);
var colWidth = 140;
var borWidth = 2;
var borColor = "#ffffff";

function constructToc(tName, tURL, tTarget)
{
   this.name = new String(tName);
   this.URL = new String(tURL);
   this.target = new String(tTarget);
}


toc[0] = new constructToc("Our 2010<br>ENERGY STAR<br>home", "stillriver.htm", "_self");
toc[1] = new constructToc("Gallery of<br>homes", "homegallery.htm", "_self");
toc[2] = new constructToc("Gallery of<br>Additions", "additiongallery.htm", "_self");
toc[3] = new constructToc("Photo History<br>of a Remodel", "remodel.htm", "_self");
toc[4] = new constructToc("A Solar House<br>Revisited", "solarhouse.htm", "_self");
toc[5] = new constructToc("Kitchens & <br> Baths", "kitch.htm", "_self");
toc[6] = new constructToc("Gallery of<br>Sun Rooms & Decks", "sungallery.htm", "_self");
toc[7] = new constructToc("Gallery of<br>Plans", "plansgallery.htm", "_self");
toc[8] = new constructToc("Weekend Project", "weekend.htm", "_self");
toc[9] = new constructToc("About Warren<br>Design Build", "company.htm", "_self");
toc[10] = new constructToc("Alternative<br>Septic System", "altsepticsystem.htm", "_self");
toc[11] = new constructToc("What is Sun<br>Tempering?", "suntempering.htm", "_self");
toc[12] = new constructToc("Why use Fresh<br>Air Ventilation?", "freshair.htm", "_self");
toc[13] = new constructToc("About Solar<br>Staircase<span class=\"smallCopyText\"><sup>TM</sup></span>", "solarstaircase.htm", "_self");
toc[14] = new constructToc("Links we<br>like", "Links.htm", "_self");
toc[15] = new constructToc("Home", "index.shtml", "_self");






document.write("    <td align=\"center\" valign=\"top\" width=\""+colWidth+"\" rowspan=\"5\">\n");
document.write("      <table cellspacing=\"0\" cellpadding=\"0\" width=\""+colWidth+"\" border=\"0\" bgcolor=\""+borColor+"\">\n");
document.write("        <tr>\n");
document.write("          <td rowspan=\""+((toc.length * 2)+2)+"\"><img src=\"images/shim.gif\" width=\""+borWidth+"\" height=\"2\" border=\"0\"></td>\n");
document.write("          <td colspan=\"2\"><img src=\"images/shim.gif\" width=\""+(colWidth-(borWidth*2))+"\" height=\""+borWidth+"\" border=\"0\"></td>\n");
document.write("          <td rowspan=\""+((toc.length * 2)+2)+"\"><img src=\"images/shim.gif\" width=\""+borWidth+"\" height=\"2\" border=\"0\"></td>\n");
document.write("        </tr>\n");
for (i = 0; i < toc.length; i++)
{
   document.write("        <tr>\n");
   document.write("          <td bgcolor=\"#990000\" valign=\"middle\"><img id=\"toc"+i+"\" name=\"toc"+i+"\" border=\"0\" src=\"images/tocDeSelect.gif\"></td>\n");
   document.write("          <td bgcolor=\"#990000\" valign=\"top\" class=\"toc\">");
   document.write("<a class=\"toc\" href=\""+toc[i].URL+"\" target=\""+toc[i].target+"\"\n");
   if (document.all)
   {
      document.write("             onMouseOver=\"this.style.color='#eeee66'\";\n");
      document.write("             onMouseOut=\"this.style.color='#CCCC66';\">\n");
   }
   else
   {
      document.write("             onmouseover=\"toc"+i+".src='images/tocSelect.gif';\"\n");
      document.write("             onMouseOut=\"toc"+i+".src='images/tocDeSelect.gif';\">");
   }
   document.write(toc[i].name+"</a></td>\n");
   document.write("        </tr>\n");
   document.write("        <tr><td bgcolor=\"#990000\" colspan=\"2\">&nbsp;</td></tr>\n");
}
document.write("        <tr>\n");
document.write("          <td colspan=\"2\"><img src=\"images/shim.gif\" width=\""+(colWidth-(borWidth*2))+"\" height=\"2\" border=\"0\"></td>\n");
document.write("        </tr>\n");
document.write("      </table>\n");
// document.write("      </td></tr></table>\n");
document.write("    </td>\n");
