// JavaScript Document

// From javascript.about.com -- http://javascript.about.com/library/blrand.htm
// Modified and annotated by Brian Wold, Brian Wold Consulting -- http://www.brianwold.com/
// The arrays can accept any valid HTML (i.e. images or text)
// Note that robots will not see this HTML

// Photo
var mess1 = new Array(
'<img src="img/random/headshot.jpg" height="172" width="258" alt="David Mack Aubol">',
'<img src="img/random/bbking2.jpg" height="195" width="250" alt="David Mack Aubol">',
'<img src="img/random/choirboy.jpg" height="203" width="250" alt="David Mack Aubol">',
'<img src="img/random/onstage.jpg" height="211" width="250" alt="David Mack Aubol">',
'<img src="img/random/bassist.jpg" height="183" width="250" alt="David Mack Aubol">',
'<img src="img/random/sitting1.jpg" height="249" width="250" alt="David Mack Aubol">',
'<img src="img/random/headshot.jpg" height="172" width="258" alt="David Mack Aubol">');
var max = mess1.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess1[num]);