<!--

// Store some random quotations

function rand ( n )
{
	return ( Math.floor ( Math.random ( ) * n + 1 ) );
}

var random_quote = new Array ( );
var random_author = new Array ( );

// Enter Quotes here
random_quote[0]  = "Fiction reveals truth that reality obscures.";
random_author[0] = "Ralph Waldo Emerson";
random_quote[1]  = "Truth is stranger than fiction, but it is because Fiction is obliged to stick to possibilities; Truth isn't.";
random_author[1] = "Mark Twain";
random_quote[2]  = "For truth is always strange; stranger than fiction.";
random_author[2] = "Lord Byron";
random_quote[3]  = "A writer is congenitally unable to tell the truth and that is why we call what he writes fiction.";
random_author[3] = "William Faulkner";
random_quote[4]  = "Imagination and fiction make up more than three-quarters of our real life.";
random_author[4] = "Simone Weil";
random_quote[5]  = "The only imaginative fiction being written today is income tax returns.";
random_author[5] = "Herman Wouk";
random_quote[6]  = "Fiction was invented the day Jonas arrived home and told his wife that he was three days late because he had been swallowed by a whale.";
random_author[6] = "Gabriel Garcia Marquez";
random_quote[7]  = "Fiction is not a dream. nor is it guesswork. It is imagining based on facts, and the facts must be accurate or the work of imagining will not stand up.";
random_author[7] = "Margaret Culkin Banning";
random_quote[8]  = "The reason that fiction is more interesting than any other form of literature, to those who really like to study people, is that in fiction the author can really tell the truth without humiliating himself.";
random_author[8] = "Jim Rohn";
random_quote[9]  = "Fiction is an act of revenge.";
random_author[9] = "John Hawkes";
random_quote[10]  = "Emotional truths can sometimes be conveyed more effectively, more compellingly, through fiction.";
random_author[10] = "Diana Ossana <i> </i>";
random_quote[11] = "";
random_author[11]= "";

// enter total number of quotes here
var count = 11;


// find a different random numbers in range
var randnr = rand(count)-1;

// assign quote and author
var randquote = random_quote[randnr];
var randauthor = random_author[randnr];

// write output
document.write(randquote + "<br><b>-- " + randauthor + "</b>");


//-->