<!--

// 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]  = "I read your articles over at Romance Central and thought they were interesting, particularly the vampire article. 

I'm a paranormal writer myself and thought Margaret had some good insights as to why vamps are fun to write. Good job.
";
random_author[0] = "Rene, reader";
random_quote[1]  = "Shalla, I'm so happy to hear you are writing away and getting pieces published. Awesome!!
 
Also I love the idea of the free book. You provide such a great service and resource to writers. You are a power house!";
random_author[1] = "Stephanie, literary agent";
random_quote[2]  = " If I am successful in what I am trying to do, I can directly attribute it to your website...";
random_author[2] = "Lois, writer";
random_quote[3]  = " your site and the information you have provided thus far since I joined last year has been a TREMENDOUS benefit and help to me......
 
Thanks again!";
random_author[3] = "Lois, writer";
random_quote[4]  = "Just wanted to say I like what you're doing to help writers.
Educated writers are a publisher's dream! :)";
random_author[4] = "-Dave Smitherman
Palari Publishing";
random_quote[5] = "";
random_author[5]= "";

// enter total number of quotes here
var count = 5;


// 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>");


//-->