var totalEntries;

function JF_galleryList (thisDate) {

  totalEntries = galleryPageList.length -1;  

  document.write("<table width='120' border='0' cellspacing='0' cellpadding='0' align='center' background='images/transparent.gif'>"); 

  for (count=0 ; count <= totalEntries ; count++) {
    if (galleryPageList[count]!=thisDate) {
      document.write("<tr><td height='12' class='otherpage'><div align='center'>");
      document.write("<a href='gallery"+(count+1)+".htm'>"+galleryPageList[count]+"<\/a><\/div><\/td><\/tr>");} else
      {
      document.write("<tr><td height='12' class='thispage'><div align='center'>");
      document.write(galleryPageList[count]+"<\/div><\/td><\/tr>");
    }
    
  }
  document.write("<\/table>"); 
 
}

