function makeArray(len) {
for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

// you add as many quotes as you want here just make sure to change the makeArray(number)

ideas = new makeArray(22);
ideas[0] = "The democracy will cease to exist when you take away from those who are willing to work and give to those who would not.<br>  Thomas Jefferson";
ideas[1] = "The spirit of resistance to government is so valuable on certain occasions that I wish it to be always kept alive.<br> Thomas Jefferson"
ideas[2] = "Experience hath shewn, that even under the best forms (of government) those entrusted with power have, in time, and by slow operations, perverted it into tyranny.<br> Thomas Jefferson"
ideas[3] = "That government is best which governs the least, because its people discipline themselves.<br> Thomas Jefferson"
ideas[4] = "A society that will trade a little liberty for a little order will lose both, and deserve neither.<br> Thomas Jefferson"
ideas[5] = "A democracy is nothing more than mob rule, where fifty-one percent of the people may take away the rights of the other forty-nine.<br> Thomas Jefferson"
ideas[6] = "All tyranny needs to gain a foothold is for people of good conscience to = remain silent.<br> Thomas Jefferson"
ideas[7] = "Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a well-armed lamb contesting the vote!<br> Benjamin Franklin"
ideas[8] = "You have enemies? Good. That means you've stood up for something, sometime in your life.<br> Winston churchill"
ideas[9] = "I know not what course others may take; but as for me, give me liberty or give me death!<br> Patrick Henry"
ideas[10] = "Evil is powerless if the good are unafraid.<br> Ronald Reagan"
ideas[11] = "How do you tell a communist? Well, it's someone who reads Marx and Lenin. And how do you tell an anti-Communist? It's someone who understands Marx and Lenin.<br> Ronald Reagan"
ideas[12] = "Government is not a solution to our problem, government is the problem.<br> Ronald Reagan"
ideas[13] = "Government's view of the economy could be summed up in a few short phrases: If it moves, tax it. If it keeps moving, regulate it. And if it stops moving, subsidize it.<br> Ronald Reagan"
ideas[14] = "It isn't that liberals are ignorant, it's just that they know so much that isn't so.<br> Ronald Reagan"
ideas[15] = "A free people ought not only to be armed but disciplined; ... but they should have sufficient arms and ammunition to maintain a status of independence from any who might attempt to abuse them, which would include their own government.<br> George Washington"
ideas[16] = "Oppressors can tyrannize only when they achieve a standing army, an enslaved press, and a disarmed populace.<br> James Madison"
ideas[17] = "And I'm proud to be an American, Where at least I know I'm free, And I won't forget the men who died, Who gave that right to me, And I'll proudly stand up next to him to defend her still today.<br> Lee Greenwood"
ideas[18] = "America will never be destroyed from the outside. If we falter and lose our freedoms, it will be because we destroyed ourselves.<br> Abraham Lincoln"
ideas[19] = "You and I have a rendezvous with destiny. We will preserve for our children (America), the last best hope of man on earth, or we will sentence them to take the first step into a thousand years of darkness.<br> Ronald Reagan"
ideas[20] = "Sure I wave the American flag. Do you know a better flag to wave? Sure I love my country with all her faults. I'm not ashamed of that, never have been, never will be.<br> John Wayne"
ideas[21] = "Silly Liberal, Paychecks are for Workers!<br> Unknown Author"

// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xffffffff