
//store the quotations in arrays
quotes = new Array(16);
authors = new Array(16);
from = new Array(16);
quotes[0] = "I am, Jiraiya, the epitome of manliness! I shall fall for no woman's wiles! When you're me, you only need to flash that sexiness to have women fall at your feet.";
authors[0] = "Jiraiya";
from[0] = "Naruto";
quotes[1] = "I had a smaller one but I guess I left it at home!";
authors[1] = "Dracule Mihawk";
from[1] = "One Piece";
quotes[2] = "Angels banished from heaven have no choice but to become devils.";
authors[2] = "Vicious";
from[2] = "Cowboy Bebop";
quotes[3] = "Five people and a cat.";
authors[3] = "Ichigo";
from[3] = "Bleach";
quotes[4] = "Look you're fat there's no getting around it.";
authors[4] = "Gotenks to Buu";
from[5] = "Dragon Ball Z";
quotes[5] = "Nothing, its just that I uh... like your shirt.";
authors[5] = "Trunks to Vegeta";
from[5] = "Dragon Ball Z";
quotes[6] = "I'm sorry, Suwabara. I'm winning this match.";
authors[6] = "Azuma Kazuma";
from[6] = "Yakitate Japan";
quotes[7] = "Don't believe in yourself! Believe in me, who believes in you!";
authors[7] = "Kamina";
from[7] = "Tengen Toppa Gurren Lagann";
quotes[8] = "I'll take a potato chip...and EAT IT!";
authors[8] = "Light Yagami";
from[8] = "Death Note";
quotes[9] = "That day, all female officers will be required to wear tiny miniskirts!";
authors[9] = "Roy Mustang";
from[9] = "Full Metal Alchemist";
quotes[10] = "Why do humans always look to the sky? Why do you try so hard to fly when you don't have any wings?";
authors[10] = "Kiba";
from[10] = "Wolf's Rain";
quotes[11] = "Maybe I am trying to save him... This is quite a surprise. I'm a lot nicer of a person than I thought. Pay me a compliment.";
authors[11] = "Ikuno";
from[11] = "Angel Densetsu";
quotes[12] = "Pride also has a bill! Get ready to pay it!";
authors[12] = "Zoro";
from[12] = "One Piece";
quotes[13] = "Wrong. No killing the old man you've been assigned to protect.";
authors[13] = "Kakashi, to Naruto";
from[13] = "Naruto";
quotes[14] = "Your drill is the drill that will pierce the heavens!";
authors[14] = "Kamina, to Simon";
from[14] = "Tengen Toppa Gurren Lagann";
quotes[15] = "Weird. I absolutely thought it was an unconscious mistake... But he's right. A backhand to the face seems odd for an unconscious thing...";
authors[15] = "Ikuno";
from[15] = "Angel Densetsu";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("<DD>" + "- " + authors[index] + "\n").style.fontSize=6;
document.write("<DD>" + "from: " + from[index] + "\n")
document.write("</DL>\n");

//done


