// Note: Maximum image width on the AMSF main column is 460px   
// make sure to assign each new pics item a new array number, eg., if last one listed is pics[6], the next one added should be pics[7] (in brackets and not parentheses)
// when you add a picture, change the digits in the three places noted with "add picture:" comment below
function create() {
this.width = ''
this.height = ''
this.src = ''
this.href = ''
this.border = ''
this.mouseover = ''
this.caption = ''
}

pics = new Array()
// add picture: - >>loop control<<: when you add a picture, change the i<=# digit in the following
for(var i=1; i<=16; i++) { pics[i] = new create() }

// add picture: - >>array<<: when you add a picture, use the next digit in sequence for the array counter
//              - remember to change the width and height too! width will probably be 460, but make sure you change the height to match picture's height

pics[1].width = "460"
pics[1].height = "325"
pics[1].src = "Images/donnaandbriansm.jpg"
pics[1].caption = "Brian Ganz offers some valuable preparation tips to Donna Baldwin after her performance of Moszkowski\'s Etudes 7, 10 and 11, Op 91."

pics[2].width = "460"
pics[2].height = "373"
pics[2].src = "Images/dalebriansm.jpg"
pics[2].caption = "Brian Ganz works with Dale Dean to bring out the beauty and nuance of the Rachmaninoff melody that is surrounded by a complex accompaniment in the lovely Prelude in Eb Major, Op 23, No 6."

pics[3].width = "460"
pics[3].height = "345"
pics[3].src = "Images/anneandbriansm.jpg"
pics[3].caption = "We\'re serious about our music. . . but we\'re here to have a good time too. Anne Williams and Brian Ganz laugh with one another after Anne's performance of the beautiful Brahms Intermezzo Op. 117, No 2."

pics[4].width = "460"
pics[4].height = "370"
pics[4].src = "Images/ellenstrathmoresm.jpg"
pics[4].caption = "Ellen Tenenbaum plays in an AMSF Encore Recital, Strathmore Mansion, Rockville, MD."

pics[5].width = "460"
pics[5].height = "300"
pics[5].src = "Images/triostrathmoresm.jpg"
pics[5].caption = "Clarinetist Steve Rosenthal, pianist Felicia Weiss, and violist Marion Richter perform in an AMSF Encore Recital, Strathmore Mansion, Rockville, MD."

pics[6].width = "460"
pics[6].height = "434"
pics[6].src = "Images/tomhaugcredenzasm.jpg"
pics[6].caption = "Tom Haug tries out the piano at a Cadenza Recital."

pics[7].width = "460"
pics[7].height = "359"
pics[7].src = "Images/tommarthastrathmoresm.jpg"
pics[7].caption = "Martha Strickland with accompanist Tom Haug at the Strathmore Mansion, Rockville, MD."

pics[8].width = "460"
pics[8].height = "330"
pics[8].src = "Images/patrickbriansm.jpg"
pics[8].caption = "Feel that beat; clap that rhythm! Free yourself. Now play it like that, Brian Ganz instructs Patrick Shea in playing Bartok\'s 1st Dance in Bulgarian Rhythms from Mikrokosmos Vol 6, No 148."

pics[9].width = "460"
pics[9].height = "364"
pics[9].src = "Images/ganzaudiencesm.jpg"
pics[9].caption = "An obviously rapt audience seeks to benefit from performance tips from Brian Ganz."

pics[10].width = "460"
pics[10].height = "454"
pics[10].src = "Images/florencebriansm.jpg"
pics[10].caption = "Brian Ganz shares some insight with Florence Rollwagen prior to practice in loosening her shoulders and leaning into the keyboard in playing Chopin\'s Polonaise in C# minor, Op 26, No 1."

pics[11].width = "460"
pics[11].height = "472"
pics[11].src = "Images/donnabaldwinsm.jpg"
pics[11].caption = "Pianist Donna Baldwin at a Cadenza Recital."

pics[12].width = "460"
pics[12].height = "280"
pics[12].src = "Images/davidframsm.jpg"
pics[12].caption = "David Fram plays in an AMSF Encore Recital, Strathmore Mansion, Rockville, MD."

pics[13].width = "460"
pics[13].height = "434"
pics[13].src = "Images/tomhaugcadenzasm.jpg"
pics[13].caption = "Pianist Tom Haug at a Cadenza recital"

pics[14].width = "400"
pics[14].height = "525"
pics[14].src = "Images/stringsMC1.jpg"
pics[14].caption = "Violinist Holly Hamilton provides instruction at a master class."

pics[15].width = "460"
pics[15].height = "400"
pics[15].src = "Images/stringsMC2.jpg"
pics[15].caption = "A chamber group practices at a master class with Holly Hamilton."

pics[16].width = "460"
pics[16].height = "325"
pics[16].src = "Images/stringsMC4.jpg"
pics[16].caption = "Holly Hamilton instructs a violin student at a string master class."

// add picture: - >>random ceiling<<: when you add a picture, change the 4 non-zero digits in the following to match the pics[#] # digit
var n = Math.random() + ''
n = parseInt(n.charAt(16))
if(n >16) {
        n = n - 16
}
else if(n==0) {
        n = n + 16
}
n += ""

var image = pics[n]
var pic = ""
pic += '<img src="' + image.src + '" width=' + image.width
pic += '\n height=' + image.height + ' border=0' 
pic += '\n><p class=imgcaption>' + image.caption + '</p>'
				
document.write(pic)


