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(12);
ideas[0] = "Lead and inspire people. Don’t try to manage and manipulate people. Inventories can be managed but people must be led. <br> <br> - Ross Perot";
ideas[1] = "The difference between a successful person and others is not a lack of strength, not a lack of knowledge, but rather a lack in will. <br> <br> - Vince Lombardi"
ideas[2] = "Most of the shadows of this life are caused by our standing in our own sunshine. <br> <br> - Ralph Waldo Emerson"
ideas[3] = "Character and personal force are the only investments that are worth anything. <br> <br> - Walt Whitman"
ideas[4] = "Try not to become a man of success but a man of value<br> <br>- Albert Einstein "
ideas[5] = "We are what we repeatedly do. Excellence, therefore, is not an act but a habit.<br> <br> - Aristotle"
ideas[6] = "We are still masters of our fate.<br>We are still captains of our souls. <br> <br> - Winston Churchill"
ideas[7] = "Go confidently in the direction of your dreams. Live the life you have imagined.<br> <br>- Henry David Thoreau"
ideas[8] = "So often times it happens that we live our lives in chains, and we never even know we have the key. <br> <br> - “Already Gone” by the Eagles"
ideas[9] = "The future belongs to those who believe in the beauty of their dreams.<br> <br> - Eleanor Roosevelt"
ideas[10] = "I Believe………that our background and circumstances may have influenced who we are, but we are responsible for who we become."
ideas[11] = "Life changes us, however, we are in control of who we become <br><br> - <i>Mary McBride</i>."

// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xffffffff
