var iMaxDot = picture_quantity;
var iCurrentDot = location.href.substring(location.href.lastIndexOf('\/')+1,location.href.lastIndexOf('.htm'));
if (iCurrentDot.substring(0,1) == "0")
  iCurrentDot = iCurrentDot.substring(1,2);

function drawDots(iTotalDots) {
  var sDot;
  
  //iMaxDot = iTotalDots;
  
  document.write("<table width=\"100%\" cellsapcing=\"0\" cellpadding=\"0\"><tr>");

  for (var i=1; i<=iTotalDots; i++) {
   if (i < 10)
     sDot = "0" + i.toString();
   else
     sDot = i.toString();
   if (i != iCurrentDot)  
     document.write("<td align=\"center\" valign=\"middle\"><a href=\""+sDot+".html\"><img src=\"http://www.aaronleefineman.com/2006dot.gif\" alt=\""+sDot+"\" name=\"i"+sDot+"\" width=\"15\" height=\"15\" border=\"0\" id=\"i"+sDot+"\" onmouseover=\"MM_swapImage('i"+sDot+"','','http://www.aaronleefineman.com/2006dot_white.gif',1)\" onmouseout=\"MM_swapImgRestore()\" /></a></td>");
   else
     document.write("<td align=\"center\" valign=\"middle\"><a href=\""+sDot+".html\"><img src=\"http://www.aaronleefineman.com/2006dot_white.gif\" alt=\""+sDot+"\" name=\"i"+sDot+"\" width=\"15\" height=\"15\" border=\"0\" id=\"i"+sDot+"\" onmouseover=\"MM_swapImage('i"+sDot+"','','http://www.aaronleefineman.com/2006dot_white.gif',1)\" onmouseout=\"MM_swapImgRestore()\" /></a></td>");
  }

  document.write("</tr></table>");
}

function goNext() {
  var iNewDot, sDot;
  
  if (parseInt(iCurrentDot) < iMaxDot)
    iNewDot = parseInt(iCurrentDot) + 1;
  else
    iNewDot = 1;

  if (iNewDot < 10)
    sDot = "0" + iNewDot.toString();
  else
    sDot = iNewDot.toString();
  
  location.href = sDot+".html";
}

function goPrev() {
  var iNewDot, sDot;
  
  if (parseInt(iCurrentDot) > 1)
    iNewDot = parseInt(iCurrentDot) - 1;
  else
    iNewDot = iMaxDot;

  if (iNewDot < 10)
    sDot = "0" + iNewDot.toString();
  else
    sDot = iNewDot.toString();
  
  location.href = sDot+".html";
}

