PicNo=19

Path="images/concert/"

Picture = new Array(PicNo)
Picture[0] = "1.jpg"
Picture[1] = "2.jpg"
Picture[2] = "3.jpg"
Picture[3] = "4.jpg"
Picture[4] = "5.jpg"
Picture[5] = "6.jpg"
Picture[6] = "7.jpg"
Picture[7] = "8.jpg"
Picture[8] = "9.jpg"
Picture[9] = "10.jpg"
Picture[10] = "11.jpg"
Picture[11] = "12.jpg"
Picture[12] = "13.jpg"
Picture[13] = "14.jpg"
Picture[14] = "15.jpg"
Picture[15] = "16.jpg"
Picture[16] = "17.jpg"
Picture[17] = "18.jpg"
Picture[18] = "bow.gif"

Caption = new Array(PicNo)
Caption[0] = "1.30 pm: Gathering for the orchestral rehearsal"
Caption[1] = "2.00 pm: Draw breath for the opening"
Caption[2] = "Heads and scores up!"
Caption[3] = "Peter Dyke, our wonderful accompanist has a part to play"
Caption[4] = "The tenors are in good voice"
Caption[5] = "The authentic sound of Marches Baroque"
Caption[6] = "Orchestra and soloists"
Caption[7] = "The view from the chorus"
Caption[8] = "Geraint Bowen, our inspirational conductor, adds the final touches"
Caption[9] = "7.00 pm: The chorus gather 'backstage'"
Caption[10] = "7.00 pm: The chorus gather 'backstage'"
Caption[11] = "Honoured guests arrive and are greeted by our Chairman, Clare Wichbold..."
Caption[12] = "... and by our President, The Very Reverend Michael Tavinor, Dean of Hereford"
Caption[13] = "7.20 pm: The chorus takes its seats..."
Caption[14] = "... and the orchestra tunes up"
Caption[15] = "We await the arrival of the conductor and soloists..."
Caption[16] = "... and ready ourselves to sing ..."
Caption[17] = "Well deserved applause for our soloists..."
Caption[18] = "... and for Geraint Bowen"

// NOTHING TO EDIT BELOW HERE ...

Pos=-1

function slideShow(v) {
Pos=Pos+v
if (Pos>PicNo-1) {Pos=0}
if (Pos<0) {Pos=PicNo-1}
document.getElementById('Slides').src=Path+Picture[Pos]
document.getElementById('Desc').innerHTML=Caption[Pos]
}

