



<!-- 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] = 'images/Product/medium/ae00-5019.jpg'
theImages[1] = 'images/Product/medium/ae00-5022.jpg'
theImages[2] = 'images/Product/medium/ae00-5543.jpg'
theImages[3] = 'images/Product/medium/ae00-3204.jpg'
theImages[4] = 'images/Product/medium/ae00-5556.jpg'



theText[0] = 'Godin 5th Avenue - Black'
theText[1] = 'Godin 5th Avenue Kingpin - P90 type pickup Cognac Burst'
theText[2] = '<h2>Tim Reede Venetian Cutaway #5 Maple / Spruce.</h2>he Venetian cutaway archtop guitar has curly AAA European maple back and sides, a curly maple neck and a AAA European spruce soundboard with some nice bear claw figure. It has a 17" lower bout. The accent wood is African blackwood and the inlays are black mother of pearl and gold mother of pearl block markers. The scale length is 25". It has parallel bracing for a more traditional construction and greater projection. This guitar now has a Kent Armstrong suspended pickup on it. The finish is Lacquer.'
theText[3] = '<h2>Collings MT - Gloss Top</h2> The Collings MT has a fully carved top and back and is crafted with a seasoned select spruce top and maple back and sides with tone bars. A radiused fingerboard extends to the 22nd fret with a graceful extension that compliments the headstock. The adjustable Collings ebony bridge is custom made in our shop. <a href="p-15201-collings-mt-gloss-top.aspx">more</a> '
theText[4] = 'Used Gibson ES-335 "Duke Robillard"'


// 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 -->

