function displayGallery() {
	var thumbImages = new Array(7);
    var thumbName = new Array(7);	
	var patternPath = "/china_shop/johnson_brothers/";	
	var pageName = "/index.php";
	var imageName = "/images/thumb.jpg";
    thumbImages[0] = "blue_denmark"; thumbName[0] = "Blue Denmark";
	thumbImages[1] = "brookshire"; thumbName[1] = "Brookshire";	
    thumbImages[2] = "eternal_beau"; thumbName[2] = "Eternal Beau";
    thumbImages[3] = "heritage_white"; thumbName[3] = "Heritage White";
    thumbImages[4] = "old_britain_castles_blue"; thumbName[4] = "Old Britain Castles Blue";
    thumbImages[5] = "old_britain_castles_pink"; thumbName[5] = "Old Britain Castles Pink";	
	thumbImages[6] = "rose_chintz_pink"; thumbName[6] = "Rose Chintz Pink";
// Begin the table.
  document.write("<table border=\"0\" width=\"100%\" cellpadding=\"1\" cellspacing=\"0\" id=\"galleryContent\">");
// Write out the table rows.
  for (var i=0; i < thumbImages.length; i++) {
    var docString = "<td align=\"center\" valign=\"top\" width=\"100\"><a href=\"javascript: chgLoc('" + patternPath + thumbImages[i] + pageName + "')\"><table id=\"galleryPicBorder\"><tr><td><img src=\"" + patternPath + thumbImages[i] + imageName + "\" border=\"0\"></td></tr></table><a href=\"javascript: chgLoc('" + patternPath + thumbImages[i] + pageName + "')\">" + thumbName[i] + "</td>";
    if (i==0 || i==6 || i==12 || i==18 || i==24 || i==30 || i==36 || i==42 || i==48 || i==54 || i==60) {
      document.write("<tr>" + docString);
    } else if (i==5 || i==11 || i==17 || i==23 ||i==29	|| i==35 || i==41 || i==47 || i==53 || i==59 || i==65) {
      document.write(docString + "</tr>");
    } else {
      document.write(docString);
    }
  }
// Close the table.
  document.write("</table>");
}