var FarmPicCnt2=1;
var FarmPicdir2="forward";
var FarmPicLibrary2 = new Array();
FarmPicLibrary2[1] = new Image(500,333);
FarmPicLibrary2[1].src="BeetberryImages/GreenhousePictures/GreenhouseFootprint.JPG";
FarmPicLibrary2[2] = new Image(500,333);
FarmPicLibrary2[2].src="BeetberryImages/GreenhousePictures/FoundationExcavation.JPG";
FarmPicLibrary2[3] = new Image(500,333);
FarmPicLibrary2[3].src="BeetberryImages/GreenhousePictures/FoundationInsulation.JPG";
FarmPicLibrary2[4] = new Image(500,333);
FarmPicLibrary2[4].src="BeetberryImages/GreenhousePictures/FinishingFoundation.JPG";
FarmPicLibrary2[5] = new Image(500,333);
FarmPicLibrary2[5].src="BeetberryImages/GreenhousePictures/GreenhouseFraming.JPG";
FarmPicLibrary2[6] = new Image(500,333);
FarmPicLibrary2[6].src="BeetberryImages/GreenhousePictures/FrameNearCompletion.JPG";
FarmPicLibrary2[7] = new Image(500,333);
FarmPicLibrary2[7].src="BeetberryImages/GreenhousePictures/Installing5Wall.JPG";
FarmPicLibrary2[8] = new Image(500,333);
FarmPicLibrary2[8].src="BeetberryImages/GreenhousePictures/PolycarbonatePanels.JPG";
FarmPicLibrary2[9] = new Image(500,333);
FarmPicLibrary2[9].src="BeetberryImages/GreenhousePictures/GreenhouseCompleted.JPG";
FarmPicLibrary2[10] = new Image(500,333);
FarmPicLibrary2[10].src="BeetberryImages/GreenhousePictures/ViewFromEast.JPG";
FarmPicLibrary2[11] = new Image(500,333);
FarmPicLibrary2[11].src="BeetberryImages/GreenhousePictures/ViewFromWest.JPG";
FarmPicLibrary2[12] = new Image(500,333);
FarmPicLibrary2[12].src="BeetberryImages/GreenhousePictures/RaisedBedsAndPath.JPG";
FarmPicLibrary2[13] = new Image(500,333);
FarmPicLibrary2[13].src="BeetberryImages/GreenhousePictures/ViewInsideGreenhouse.JPG";
FarmPicLibrary2[14] = new Image(500,333);
FarmPicLibrary2[14].src="BeetberryImages/GreenhousePictures/GreenhouseDoorFromWest.JPG";
FarmPicLibrary2[15] = new Image(500,333);
FarmPicLibrary2[15].src="BeetberryImages/GreenhousePictures/SpringGreens.JPG";


var titleLibrary2 = new Array();

titleLibrary2[1] = "Greenhouse footprint with sod removed";
titleLibrary2[2] = "Excavating for the foundation";
titleLibrary2[3] = "Insulating the foundation";
titleLibrary2[4] = "Finishing the foundation";
titleLibrary2[5] = "Framing the greenhouse";
titleLibrary2[6] = "Frame nearing completion";
titleLibrary2[7] = "Installation of 5-Wall polycarbonate nearing completion";
titleLibrary2[8] = "Polycarbonate panels installed";
titleLibrary2[9] = "Greenhouse completed";
titleLibrary2[10] = "View from East";
titleLibrary2[11] = "View from West";
titleLibrary2[12] = "Inside view showing raised beds and stone path";
titleLibrary2[13] = "Inside view of bench and raised beds";
titleLibrary2[14] = "Door of greenhouse, view from West";
titleLibrary2[15] = "Early Spring Salad Garden";


function loadFarmPicarray2(cnt, go)
{
if (go == "back") {
cnt -= 1;
} else{ 
cnt += 1;
}

if (cnt >= 16) {
   cnt = 1;
}
if (cnt <= 0){
   cnt = 15;
}

FarmPicCnt2 = cnt;
var newPicTitle2 = titleLibrary2[FarmPicCnt2];
document.FarmPicgallery2.src = FarmPicLibrary2[cnt].src;
document.FarmPicgallery2.alt = newPicTitle2;
document.FarmPicgallery2.title = newPicTitle2;

document.getElementById("PicTitle3").style.fontStyle = "normal";
document.getElementById("PicTitle3").childNodes[0].nodeValue = newPicTitle2;

}
