// JavaScript Document
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
var theAuthors = new Array()
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = '/images/random/jooctjo.jpg'
theAuthors[0] = 'Jeff Osborne'

theImages[1] = '/images/random/m_josb1.jpg'
theAuthors[1] = 'Jeff Osborne'

theImages[2] = '/images/random/m_josb2.jpg'
theAuthors[2] = 'Jeff Osborne'

theImages[3] = '/images/random/m_josb3.jpg'
theAuthors[3] = 'Jeff Osborne'

theImages[4] = '/images/random/m_jcox1.jpg'
theAuthors[4] = 'Jim Cox'

theImages[5] = '/images/random/m_jcox2.jpg'
theAuthors[5] = 'Jim Cox'

theImages[6] = '/images/random/m_jcox3.jpg'
theAuthors[6] = 'Jim Cox'

theImages[7] = '/Members/gallery/hmary/herb01.jpg'
theAuthors[7] = 'Herb Marynell'

theImages[8] = '/Members/gallery/hmary/m_hmary2.jpg'
theAuthors[8] = 'Herb Marynell'

theImages[9] = '/Members/gallery/hmary/m_hmary3.jpg'
theAuthors[9] = 'Herb Marynell'

theImages[10] = 'Members/gallery/mmary/m_mmary1.jpg'
theAuthors[10] = 'Mark Marynell'

theImages[11] = '/Members/gallery/mmary/mark01.jpg'
theAuthors[11] = 'Mark Marynell'
theImages[12] = 'Members/gallery/mmary/m_mmary3.jpg'
theAuthors[12] = 'Mark Marynell'

theImages[13] = '/images/random/m_artb1.jpg'
theAuthors[13] = 'Art Bickers'
theImages[14] = '/images/random/m_artb2.jpg'
theAuthors[14] = 'Art Bickers'
theImages[15] = '/images/random/m_artb3.jpg'
theAuthors[15] = 'Art Bickers'

theImages[16] = '/images/random/m_acamp1.jpg'
theAuthors[16] = 'Allen Campbell'
theImages[17] = '/images/random/m_acamp2.jpg'
theAuthors[17] = 'Allen Campbell'
theImages[18] = '/images/random/m_acamp3.jpg'
theAuthors[18] = 'Allen Campbell'

theImages[19] = '/images/random/m_kweb1.jpg'
theAuthors[19] = 'Kim Whitmore-Weber'
theImages[20] = '/images/random/m_kweb2.jpg'
theAuthors[20] = 'Kim Whitmore-Weber'
theImages[20] = '/images/random/m_kweb3.jpg'
theAuthors[20] = 'Kim Whitmore-Weber'

theImages[21] = '/images/random/m_drp1.jpg'
theAuthors[21] = 'Daniel R. Patmore'
theImages[22] = '/images/random/m_drp2.jpg'
theAuthors[22] = 'Daniel R. Patmore'
theImages[23] = '/images/random/m_drp3.jpg'
theAuthors[23] = 'Daniel R. Patmore'

theImages[24] = '/images/random/m_jesik1.jpg'
theAuthors[24] = 'Jesika Ellis'
theImages[25] = '/images/random/m_jesik2.jpg'
theAuthors[25] = 'Jesika Ellis'
theImages[26] = '/images/random/m_jesik3.jpg'
theAuthors[26] = 'Jesika Ellis'

theImages[27] = '/images/random/m_bobg1.jpg'
theAuthors[27] = 'Bob Gwaltney'
theImages[28] = '/images/random/m_bobg2.jpg'
theAuthors[28] = 'Bob Gwaltney'
theImages[29] = '/images/random/m_bobg3.jpg'
theAuthors[29] = 'Bob Gwaltney'

theImages[30] = '/images/random/m_joshw1.jpg'
theAuthors[30] = 'Josh Williams'
theImages[31] = '/images/random/m_joshw2.jpg'
theAuthors[31] = 'Josh Williams'
theImages[32] = '/images/random/m_joshw3.jpg'
theAuthors[32] = 'Josh Williams'
theImages[33] = '/images/random/m_joshw4.jpg'
theAuthors[33] = 'Josh Williams'

theImages[34] = '/Members/gallery/hmary/herb02.jpg'
theAuthors[34] = 'Herb Marynell'

theImages[35] = '/Members/gallery/hmary/herb03.jpg'
theAuthors[35] = 'Herb Marynell'

theImages[36] = '/Members/gallery/hmary/herb04.jpg'
theAuthors[36] = 'Herb Marynell'

theImages[37] = '/Members/gallery/mmary/mark02.jpg'
theAuthors[37] = 'Mark Marynell'
theImages[38] = '/Members/gallery/mmary/mark03.jpg'
theAuthors[38] = 'Mark Marynell'
theImages[39] = '/Members/gallery/mmary/mark04.jpg'
theAuthors[39] = 'Mark Marynell'



// do not edit anything below this line

var j = 0
var p = theImages.length;

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'" width="286" border="1">');
}

function showAuthor(){
document.write(theAuthors[whichImage]);
}

//  End -->
