/** Developed by azzurri **/
// Create Array for storing quotation strings
var Quote= new Array();
var Author= new Array();
for (i=0; i<=33; i++) {
	Author[i]="unknown";
}
// Insert quotations
Quote[0]="How do I know my youth is spent? My get-up-and-go has got-up-and-went";
Author[0]="Pete Seeger";
Quote[1]="If you don't know where you are going, then any road will take you there.";
Quote[2]="If the going gets easy, you may be going downhill.";
Quote[3]="A quitter never wins, and a winner never quits.";
Quote[4]="By failing to prepare, we prepare to fail.";
Quote[5]="It's not the size of the dog in the fight, but the size of the fight in the dog.";
// Lord of the Rings: Return of the King
Quote[6]="All you have to do, is to decide what to do with the time that is given to you.";
Author[6]="Gandalf";
Quote[7]="Cold be hand and heart and bone; Cold be travellers far from home; They do not see what lies ahead; When sun has failed and moon is dead."
Author[7]="Gollum";
Quote[8]="Put aside the Ranger; Become who you were born to be.";
Author[8]="Lord Elrond";
// Fight Club
Quote[9]="This is your life, and it's ending one minute at a time.";
Author[9]="Tyler Durden";
Quote[10]="On a long enough timeline, the survival rate of everyone drops to zero.";
Author[10]="Tyler Durden";
Quote[11]="If you wake up at a different time, in a different place, could you wake up as a different person?";
Author[11]="Jack";
Quote[12]="It's only after you've lost everything that you're free to do anything.";
Author[12]="Tyler Durden";
Quote[13]="Now a question of etiquette; as I pass, do I give you the ass or the crotch...?";
Author[13]="Tyler Durden";
Quote[14]="We're consumers. We are by-products of a lifestyle obsession.";
Author[14]="Tyler Durden";
Quote[15]="Marla's philosophy of life is that she might die at any moment. The tragedy, she said, was that she didn't.";
Author[15]="Jack | Narrator";
Quote[16]="Reject the basic assumptions of civilization, especially the importance of material possessions.";
Author[16]="Tyler Durden";
// The Usual Suspects
Quote[17]="The greatest trick the Devil ever pulled, was convincing the world he didn't exist.";
Author[17]="Charles Baudelaire";
// Big Fish
Quote[18]="The biggest fish in the river gets that way by never being caught.";
Author[18]="Witch | Big Fish";
Quote[19]="We were like strangers who knew each other very well.";
Author[19]="Will Bloom";
// Hellboy
Quote[20]="Look, Sammy, I'm not a very good shot ... but the Samaritan here fires really big bullets.";
Author[20]="Hellboy";
Quote[21]="Second date, no tongue!";
Author[21]="Hellboy";
Quote[22]="If there's trouble, all us freaks have, is each other.";
Author[22]="Abe Sapien";
// Pirates of the Caribbean: Curse of the Black Pearl
Quote[23]="This is either madness or brilliance ... It’s remarkable how often those two traits coincide.";
Author[23]="Will Turner | Jack Sparrow";
Quote[24]="It’ll be one pistol as before and you can be the gentleman and shoot the lady and starve to death yourself.";
Author[24]="Captain Barbossa";
Quote[25]="She's safe, just like I promised. She's all set to marry Norrington, just like she promised. And you get to die for her, just like you promised.";
Author[25]="Jack Sparrow";
Quote[26]="So what now, Jack Sparrow? Will it be it two immortals locked in an epic battle until Judgment Day and trumpets sound?";
Author[26]="Captain Barbossa";
// Troy
Quote[27]="I chose nothing. I was born and this is what I am";
Author[27]="Achilles | Troy";
// Spiderman
Quote[28]="We are who we choose to be... now, choose.";
Author[28]="Green Goblin | Spiderman";
Quote[29]="The cunning warrior attacks neither body nor mind.";
Author[29]="Green Goblin | Spiderman";
// Songs
Quote[30]="So don't delay, act now! Supplies are running out! Allow, if you're still alive, six to eight years to arrive ...";
Author[30]="Smash Mouth";
Quote[31]="This is the sound of someone losing the plot, making out that they're okay when they're not.";
Author[31]="Pulp | The Fear";
Quote[32]="The female of the species is more deadly than the male";
Author[32]="Space";
Quote[33]="You stay here and grow a spine; I'll be right back";
Author[33]="Garfield";
// Dynamically count items in array
var items = Quote.length;
// Get random item number
var randquote=Math.round(Math.random()*(items-1));
// Output quotes
document.write("<h2 class=\"hide\">Random Quote</h2>");
document.write("<p>&quot;"+ Quote[randquote] +"&quot;<br /><span class=\"floatright\">");
document.write(Author[randquote]+"</span><br /></p>");