<!-- Hide script from old browsers


//hey this is easy - just populate this array with

//the pictures you want in this slide show.

var thisPic = 0;  //the counter for the image array
var lastPic = 5;  //the last cell in our array = (number of pictures - 1)

nexPix = new Array(lastPic)

for(var i=0;i<=lastPic;i++){
nexPix[i] = new Image()}

nexPix[0].src="img/00.jpg";
nexPix[1].src="img/01.jpg";
nexPix[2].src="img/02.jpg";
nexPix[3].src="img/03.jpg";
nexPix[4].src="img/04.jpg";
nexPix[5].src="img/05.jpg";


/* above is the array that holds our images, it is indexed from 0 to 
   (number of elements - 1) */
   
nexCaptions = new Array(lastPic)

nexCaptions[0]="Fr. Robert Hale enjoys the view from the deck. Robert is now residing at Incarnation Monastery, and is on the  faculty of JSTB at GTU. Robert was prior at the Hermitage for 12 years before coming to teach in Berkeley.";
nexCaptions[1]="Br. Mark Mahoney in the kitchen during a short stay at Incarnation Monastery. Mark assisted Robert while both  Arthur and Andrew were in Italy. Mark is an artist and potter, and resides at the Hermitage in Big Sur.";
nexCaptions[2]="A beautiful view of the bay area is available to enhance the contemplative atmosphere.";
nexCaptions[3]="L. to R.: Fr. Arthur Poulin, Bro. Michael Harrington, Fr. Robert Hale, and Fr. Andrew Colnagni (Prior). Bro. Michael Harrington is visiting from the Hermitage in Big Sur, and is attending a weekend class for inner spiritual development. The monks are preparing for mass in their newly renovated chapel. Fr. Arthur, the resident artist at Incarnation, did the painting of the crucified Christ with his arms extended over the Bay Area.";
nexCaptions[4]="Fr. Robert with some of the local community gather for Sunday mass.";
nexCaptions[5]="Fr. Arthur, and some of the local community, stand as Fr. Andrew says the opening prayers for Sunday’s mass. Fr. Andrew is the prior of Incarnation Monastery, and the chaplain of the Italian Catholic Federation.";

function processPrevious() {
        if (document.images) {
                if (thisPic==0) //if at the very beginning of array
                {
                    thisPic=lastPic; //goto the last cell in the array
                 }
                 else 
                 {
                    thisPic--; //else simply decrement the counter                    
                 }
                  document.myPicture.src=nexPix[thisPic].src;
                  document.caption.capbox.value=nexCaptions[thisPic];
        }
}

function processNext() {
        if (document.images) {
                if (thisPic==lastPic) //if at the very end of the array
                {
                    thisPic=0; //goto the first cell of the array
                 }
                 else 
                 {
                thisPic++; //else simply increment the counter
                }
                document.myPicture.src=nexPix[thisPic].src;
                                document.caption.capbox.value=nexCaptions[thisPic];
        }
}

//End hiding script from old browsers -->