// 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/MagnarellaTijerinaAubol1.jpg" height="175" width="250" alt="David Mack Aubol">',
'<img src="img/random/WickhamsAubol1.jpg" height="187" width="250" alt="David Mack Aubol">',
'<img src="img/random/BBKing2_000.jpg" height="230" width="172" alt="David Mack Aubol">',
'<img src="img/random/ACC2003HolidayConcert076acopy_000.jpg" height="153" width="250" alt="David Mack Aubol">',
'<img src="img/random/DavidJazzCroped.jpg" height="188" width="250" alt="David Mack Aubol">',
'<img src="img/random/DaveStarsStripscopy_000.jpg" height="385" width="210" alt="David Mack Aubol">');
var max = mess1.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess1[num]);
