// JavaScript Document
//script created by Computerhope http://www.computerhope.com

images = new Array(19);
images[0] = "<img src='http://www.brandonpeat.com/images/quotes/quote01.gif'>";
images[1] = "<img src='http://www.brandonpeat.com/images/quotes/quote02.gif'>";
images[2] = "<img src='http://www.brandonpeat.com/images/quotes/quote03.gif'>";
images[3] = "<img src='http://www.brandonpeat.com/images/quotes/quote04.gif'>";
images[4] = "<img src='http://www.brandonpeat.com/images/quotes/quote05.gif'>";
images[5] = "<img src='http://www.brandonpeat.com/images/quotes/quote06.gif'>";
images[6] = "<img src='http://www.brandonpeat.com/images/quotes/quote07.gif'>";
images[7] = "<img src='http://www.brandonpeat.com/images/quotes/quote08.gif'>";
images[8] = "<img src='http://www.brandonpeat.com/images/quotes/quote09.gif'>";
images[9] = "<img src='http://www.brandonpeat.com/images/quotes/quote10.gif'>";
images[10] = "<img src='http://www.brandonpeat.com/images/quotes/quote11.gif'>";
images[11] = "<img src='http://www.brandonpeat.com/images/quotes/quote12.gif'>";
images[12] = "<img src='http://www.brandonpeat.com/images/quotes/quote13.gif'>";
images[13] = "<img src='http://www.brandonpeat.com/images/quotes/quote14.gif'>";
images[14] = "<img src='http://www.brandonpeat.com/images/quotes/quote15.gif'>";
images[15] = "<img src='http://www.brandonpeat.com/images/quotes/quote16.gif'>";
images[16] = "<img src='http://www.brandonpeat.com/images/quotes/quote17.gif'>";
images[17] = "<img src='http://www.brandonpeat.com/images/quotes/quote18.gif'>";
images[18] = "<img src='http://www.brandonpeat.com/images/quotes/quote19.gif'>";
images[19] = "<img src='http://www.brandonpeat.com/images/quotes/quote20.gif'>";
images[20] = "<img src='http://www.brandonpeat.com/images/quotes/quote21.gif'>";

index = Math.floor(Math.random() * images.length);
document.write(images[index]);
