var cobgalleryobjects = 
[
{file:'cobgallery01.html',title:"Getting Organized"},
{file:'cobgallery02.html',title:"The first dig"},
{file:'cobgallery03.html',title:"More tamping and digging"},
{file:'cobgallery04.html',title:"Refinements to the dig"},
{file:'cobgallery05.html',title:"Testing the drainage"},
{file:'cobgallery06.html',title:"Protecting the dig"},
{file:'cobgallery07.html',title:"Lining the trench, and gravelling"},
{file:'cobgallery08.html',title:"Adding the drain pipe"},
{file:'cobgallery09.html',title:"Finishing the drainage well"},
{file:'cobgallery10.html',title:"Filling the trench with gravel"},
{file:'cobgallery11.html',title:"Covering the trench with broken concrete, part I"},
{file:'cobgallery12.html',title:"Covering the trench with broken concrete, part II"},
{file:'cobgallery13.html',title:"Building the foundation, part I"},
{file:'cobgallery14.html',title:"Building the foundation, part II"},
{file:'cobgallery15.html',title:"Making Cob, a Test"},
{file:'cobgallery16.html',title:"Making a lot of Cob"},
{file:'cobgallery17.html',title:"Laying the first Cob"},
{file:'cobgallery18.html',title:"Laying more Cob, and installing the firepit crane"},
{file:'cobgallery19.html',title:"Hunkering Down I"},
{file:'cobgallery20.html',title:"Hunkering Down II, and the fireplace base"},
{file:'cobgallery21.html',title:"Hunkering Down III"},
{file:'cobgallery22.html',title:"Roughing in the plumbing, and the fireplace wall"},
{file:'cobgallery23.html',title:"Finish Roughing in the plumbing"},
{file:'cobgallery24.html',title:"Finish Roughing in the fireplace"},
{file:'cobgallery25.html',title:"Rough in the electrical; start a window frame"},
{file:'cobgallery26.html',title:"Giving the wall shape, Part I"},
{file:'cobgallery27.html',title:"Giving the wall shape, Part II"},
{file:'cobgallery28.html',title:"Adding Bits and Pieces"},
{file:'cobgallery29.html',title:"More building, more details I"},
{file:'cobgallery30.html',title:"More building, more details II"},
{file:'cobgallery31.html',title:"More building, more details III"},
{file:'cobgallery32.html',title:"The Mosaic Team does some recon"},
{file:'cobgallery33.html',title:"A cobber's pictures"},
{file:'cobgallery34.html',title:"The final cobbing push: Details I"},
{file:'cobgallery35.html',title:"The final cobbing push: Details II"},
{file:'cobgallery36.html',title:"The final cobbing push: Carpentry & Windows"},
{file:'cobgallery37.html',title:"The final cobbing push: The Fireplace"},
{file:'cobgallery38.html',title:"The final cobbing push: Kids"},
{file:'cobgallery39.html',title:"Cobbing the home stretch I, and shingles"},
{file:'cobgallery40.html',title:"Cobbing the home stretch II, and fireplace plastering"},
{file:'cobgallery41.html',title:"Cobbing the home stretch III, and window forming"},
{file:'cobgallery42.html',title:"Cobbing the home stretch IV, City TV, counters, roof"},
{file:'cobgallery43.html',title:"Plastering I, and counter mosaics"},
{file:'cobgallery44.html',title:"Plastering II"},
{file:'cobgallery45.html',title:"Plastering III, and wall mosaics"},
{file:'cobgallery46.html',title:"Wall mosaics, and carpentry"},
{file:'cobgallery47.html',title:"Wall mosaics, and testing out the sinks"},
{file:'cobgallery48.html',title:"Finalizing the wall, I"},
{file:'cobgallery49.html',title:"Finalizing the wall, II"},
{file:'cobgallery50.html',title:"Finalizing the wall, III"},
{file:'cobgallery51.html',title:"Celebration, September 23, 2005"}
]
var thecobgallerypagenamesplit=location.pathname.split("/");
var thecobgallerypagename=thecobgallerypagenamesplit[thecobgallerypagenamesplit.length-1];
var thecobgallerypageindex;
for (var i=0;i<cobgalleryobjects.length;i++) {
 if (cobgalleryobjects[i].file==thecobgallerypagename) {
  thecobgallerypageindex=i;
  break;
 }
}

function writecobswitch() {
var theString='';
 if (thecobgallerypageindex>0) {
  theString='<a href="'+cobgalleryobjects[thecobgallerypageindex-1].file+'">&lt;&lt; Previous</a>';
 }
 if (thecobgallerypageindex<(cobgalleryobjects.length-1)) {
  if (theString) theString+=" | ";
  theString+='<a href="'+cobgalleryobjects[thecobgallerypageindex+1].file+'">Next &gt;&gt;</a>';
 }
 if (theString) document.write('<p>'+theString+'</p>');
}

function writecobgallerypageswitch() {
var theString='';
 writecobswitch();
 theString='<h4>Page '+(thecobgallerypageindex+1)+': '+cobgalleryobjects[thecobgallerypageindex].title+'</h4>';
 document.write(theString); 
}

function writecobgallerycontents() {
 var theString;
 theString='<h3 class="section-divider-major">Table of Contents</h3><p class="compact">page/title</p>';
 theString+='<ol class="narrow">';
 for (var i=0;i<cobgalleryobjects.length;i++) {
  theString+='<li><a href="'+cobgalleryobjects[i].file+'">'+cobgalleryobjects[i].title+'</a></li>';
 }
 theString+='</ol>';
 document.write(theString);
}

