// "Random" image generation
// Jonathan Lequire

//Gallery images
var galImgs = new Array()

galImgs[0] = 'bzulanc'
galImgs[1] = 'fweeden'
galImgs[2] = 'jdkilli'
galImgs[3] = 'jimmy'
galImgs[4] = 'kpease'
galImgs[5] = 'sam_b'
galImgs[6] = 'jbaulch'
galImgs[7] = 'tbethea'

var g = galImgs.length;

var whichGalImage = Math.round(Math.random()*(g-1));

function showGalleryImage() {
  document.write('<a href="img/gallery/'+galImgs[whichGalImage]+'_full.jpg" border="0" title="Gallery" target+"_blank"><img src="img/gallery/'+galImgs[whichGalImage]+'_thumb.jpg" width="320" height="240" border="0"></a>');
}
