



<!-- Begin
// Set up the image files to be used.
var theImages = new Array() ;
var theText = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.


theImages[0] = 'homegraphics/4.jpg'
theImages[1] = 'homegraphics/5.jpg'
theImages[2] = 'homegraphics/6.jpg'
theImages[3] = 'homegraphics/7.jpg'
theImages[4] = 'homegraphics/8.jpg'
theImages[5] = 'homegraphics/9.jpg'
theImages[6] = 'homegraphics/10.jpg'
theImages[7] = 'homegraphics/14.jpg'
theImages[8] = 'homegraphics/15.jpg'
theImages[9] = 'homegraphics/17.jpg'
theImages[10] = 'homegraphics/18.jpg'
theImages[11] = 'homegraphics/19.jpg'
theImages[12] = 'homegraphics/21.jpg'
theImages[13] = 'homegraphics/23.jpg'
theImages[14] = 'homegraphics/25.jpg'
theImages[15] = 'homegraphics/26.jpg'
theImages[16] = 'homegraphics/David_Gordon.jpg'
theImages[17] = 'homegraphics/claudio.jpg'
theImages[18] = 'homegraphics/Early_Mase.jpg'
theImages[19] = 'homegraphics/Alessi.jpg'
theImages[20] = 'homegraphics/steve_james.jpg'





theText[0] = 'Principal Trombonist of the Pihiladelphia Orchestra Nitzan Haroz listens to old Philly stories from Steve Dillon'
theText[1] = 'Philadelphia Orchestra Trumpeter Bob Earley gets some assistance from our trumpet specialist Jim'
theText[2] = 'Future tuba player Fiona and &#34;Tuba&#34; Joe Exley with technician Matt Walters'
theText[3] = 'Members from l&#39;orchestra national de france shop for C Trumpets with trumpet specialist Jim'
theText[4] = 'Lead trumpeter Dave Trigg (Broadway Artist, American Idol) gets some custom mouthpieces done by Vladimir'
theText[5] = 'Ben Griffen (Trombone, US Coast Guard) wails on the contra-band trombone'
theText[6] = 'Tom Hooten & Mike Tiscione from the Atlanta Symphony work with Steve Dillon on Bach Pro-shop custom horns'
theText[7] = 'Worlds collide: James Ross (Trumpet, MET Opera Orchestra) & Roberto &#34;Fats&#34; Fernandez (International Jazz Artist)'
theText[8] = 'We&#39;ve got "Seoul"! The brass section from the Seoul Philharmonic visits from Korea on their way to Carnegie Hall'
theText[9] = 'Our great friend Phil Smith (Principal Trumpet, New York Philharmonic) talks shop with Steve Dillon'
theText[10] = 'Ignacio, John, & Mike from the State Symphony of Mexico (Toluca) take a break from their 2008 U.S. tour'
theText[11] = 'Visiting from Russia, the St. Petersburg Brass Quintet checks out some horns and mouthpieces'
theText[12] = 'Steve Sykes (International Tuba Soloist, Brass Band Aid) with low brass specialists Davin & Matt'
theText[13] = 'Chrystal Torres (trumpet, Beyonce & Roy Hargrove&#39;s RH Factor) stops by after the long tours to get a chem clean'
theText[14] = 'Jazz Legend, Teacher, and long time friend George Rabbai play test horns with students Perry, Rob & Josh'
theText[15] = 'Two great customers and friends, Roy Hempley and Noel Uri. (Roy is on the left, Noel on the right)'
theText[16] = 'David Gordon, principal trumpet of the Seattle Symphony'
theText[17] = 'Claudio Roditi'
theText[18] = 'Bob Early of the Philadelphia Orchestra and Ray Mase of the American Brass Quintet. Both have been long time customers of the store and great friends.'
theText[19] = 'Steve with Joe Alessi'
theText[20] = 'Steve with James Burton III'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

function showText(){
document.write(theText[whichImage]);
}

//  End -->

