var aMessages=new Array();
var aAuthors=new Array();

// Inspirational Message - add associated author below
aMessages[0]="Without Music, life would be a mistake.";
aMessages[1]="A painter paints pictures on a canvas; musicians paint their pictures on silence.";
aMessages[2]="Music is the poetry of the air.";
aMessages[3]="Music is the medicine of the mind.";
 
// Authors 
aAuthors[0]="Nitzsche";
aAuthors[1]="Leopold Stokowski";
aAuthors[2]="Richter";
aAuthors[3]="John A. Logan";


var randomnum=Math.floor(Math.random()*aMessages.length);

document.write(aMessages[randomnum]+"<br/><br/>"+aAuthors[randomnum]);


