//store the quotations in arrays
quotes = new Array(16);
authors = new Array(16);
quotes[0] = "http://www.the-voices.net/reviews/pics/5fdp1.jpg";
authors[0] = "Ivan Moody of Five Finger Death Punch, 2008";
quotes[1] = "http://www.the-voices.net/qas/pics/bfmv03.JPG";
authors[1] = "Bullet for my Valentine, Mayhem Fest 2009";
quotes[2] = "http://www.the-voices.net/qas/pics/SP-4.JPG";
authors[2] = "Emma of Sick Puppies, 2009";
quotes[3] = "http://www.the-voices.net/qas/pics/ffdp4.jpg";
authors[3] = "Ivan Moody of FFDP, 2008";
quotes[4] = "http://www.the-voices.net/qas/pics/ffdp3.jpg";
authors[4] = "Zoltan Bathory of FFDP, 2008";
quotes[5] = "http://www.the-voices.net/qas/pics/ffdp2.jpg";
authors[5] = "Matt Snell of FFDP, 2008";
quotes[6] = "http://www.the-voices.net/qas/pics/ffdp1.jpg";
authors[6] = "Darrell Roberts of FFDP, 2008";
quotes[7] = "http://www.the-voices.net/reviews/pics/smay5.jpg";
authors[7] = "Phillip Labonte of All That Remains, 2009";
quotes[8] = "http://www.the-voices.net/reviews/pics/smay3.jpg";
authors[8] = "Jeanne Sagan of All That Remains, 2009";
quotes[9] = "http://www.the-voices.net/reviews/pics/smay4.jpg";
authors[9] = "Slayer, 2009";
quotes[10] = "http://www.the-voices.net/reviews/pics/smay2.jpg";
authors[10] = "Behemoth, 2009";
quotes[11] = "http://www.the-voices.net/reviews/pics/smay1.jpg";
authors[11] = "Marilyn Manson, 2009";
quotes[12] = "http://www.the-voices.net/reviews/pics/rotr/tep1.jpg";
authors[12] = "Early Pearl, RotR 2009";
quotes[13] = "http://www.the-voices.net/reviews/pics/rotr/ths1.jpg";
authors[13] = "Halestorm, RotR 2009";
quotes[14] = "http://www.the-voices.net/reviews/pics/rotr/ths3.jpg";
authors[14] = "Arejay Hale, Halestorm, RotR 2009";
quotes[15] = "http://www.the-voices.net/reviews/pics/rotr/tsx1.jpg";
authors[15] = "Wayne Static, Static X, RotR 2009";








//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DL>\n");
document.write("<img src="+quotes[index]+" alt='random concert photo'>");
document.write("<DD>" + "-- " + authors[index] + "\n");
document.write("</DL>\n");

//done
