function get_random() {
    var ranNum= Math.floor(Math.random()*34);
    return ranNum;
}
function getQuotes() {
   var quote1=get_random();
   var quote2=get_random();
   var quote3=get_random();

   var quote=new Array(5)
   quote[0]="<li>&quot;Every time I see the U.S. flag, I don't see the flag only as representative of a country, but I see it as a symbol of democracy and of freedom.&quot;<span>&mdash;Italian Prime Minister Silvio Berlusconi</span></li>";
   quote[1]="<li>&quot;It's not broke, it just lacks duct tape.&quot;<span>&mdash;Anonymous</span></li>";
   quote[2]="<li>&quot;Duct tape is like the Force. It has a light side, a dark side and it binds the universe together.&quot;<span>&mdash;Anonymous</span></li>";
   quote[3]="<li>&quot;Microsoft's approach is one of mass production. Like the Ford Model T, you can have any color you want as long as it's black.&quot;<span>&mdash;Anonymous</span></li>";
   quote[4]="<li>&quot;We are told that Christ was killed for us, that His death has washed out our sins, and that by dying He disabled death itself. That is the formula. That is Christianity. That is what has to be believed.&quot;<span>&mdash;C.S. Lewis, &quot;Mere Christianity&quot;</span></li>";
   quote[5]="<li>&quot;Going to church every Sunday doesn't make you a Christian, anymore than standing in a garage makes you a car.&quot;<span>&mdash;Anonymous</span></li>";
   quote[6]="<li>&quot;In a world without walls and fences, who needs Windows and Gates?&quot;<span>&mdash;Anonymous</span></li>";
   quote[7]="<li>&quot;Microsoft's approach is one of mass production. Like the Ford Model T, you can have any color you want as long as it's black.&quot;<span>&mdash;Anonymous</span></li>";
   quote[8]="<li>&quot;There are 10 types of people in this world. Those that understand Binary and those that don't.&quot;<span>&mdash;Anonymous</span></li>";
   quote[9]="<li>&quot;Drive defensively. Buy a tank.&quot;<span>&mdash;Anonymous</span></li>";
   quote[10]="<li>&quot;Four of every three people have multiple personalities.&quot;<span>&mdash;Anonymous</span></li>";
   quote[11]="<li>&quot;If at first you don't succeed, destroy all evidence that you tried.&quot;<span>&mdash;Anonymous</span></li>";
   quote[12]="<li>&quot;My imaginary friend thinks your imaginary friend has mental problems.&quot;<span>&mdash;Anonymous</span></li>";
   quote[13]="<li>&quot;Our college years are being ruined by education.&quot;<span>&mdash;Andrea Conolly</span></li>";
   quote[14]="<li>&quot;From what I know about the HIV, you can clear that up with a bit of Calamine lotion.&quot;<span>&mdash;Brittany Madison</span></li>";
   quote[15]="<li>&quot;All God does is watch us and kill us when we get boring. We must never, ever be boring.&quot;<span>&mdash;Invisible Monsters</span></li>";
   quote[16]="<li>&quot;I am an optimist. But I'm an optimist who takes his raincoat.&quot;<span>&mdash;Harold Wilson</span></li>";
   quote[17]="<li>&quot;Wise men talk because they have something to say. Fools talk because they have to say something.&quot;<span>&mdash;Plato</span></li>";
   quote[18]="<li>&quot;Love is the only force capable of transforming an enemy into a friend.&quot;<span>&mdash;Martin Luther King, Jr.</span></li>";
   quote[19]="<li>&quot;I could take Sean Connery in a fight... I could definitely take him.&quot;<span>&mdash;Harrison Ford</span></li>";
   quote[20]="<li>&quot;I want a sandwich named after me.&quot;<span>&mdash;Jon Stewart</span></li>";
   quote[21]="<li>&quot;If you could be any fictional character, who would you be? Me... I'd be god.&quot;<span>&mdash;Anonymous</span></li>";
   quote[22]="<li>&quot;If guns kill people, then pencils misspell words, cars make people drive drunk, and spoons made Rosie O'Donnell fat.&quot;<span>&mdash;Anonymous</span></li>";
   quote[23]="<li>&quot;If dumb-asses could fly, this place would be an airport.&quot;<span>&mdash;Fingolfin</span></li>";
   quote[24]="<li>&quot;Death is unavoidable; let's have a drink.&quot;<span>&mdash;Roman proverb</span></li>";
   quote[25]="<li>&quot;War determine not who is right, war determine who is left.&quot;<span>&mdash;Chinese proverb</span></li>";
   quote[26]="<li>&quot;Only two things are infinite, the universe and human stupidity, and I'm not sure about the former.&quot;<span>&mdash;Albert Einstein</span></li>";
   quote[27]="<li>&quot;Software is like sex: It's better when it's free.&quot;<span>&mdash;Linus Torvalds</span></li>";
   quote[28]="<li>&quot;If you can shoot yourself in the foot with C, you can blow your whole leg off with C++.&quot;<span>&mdash;Bjarne Stroustrup</span></li>";
   quote[29]="<li>&quot;I contend that we are both atheists. I just believe in one fewer god than you do. When you understand why you dismiss all the other possible gods, you will understand why I dismiss yours.&quot;<span>&mdash;Stephen Roberts</span></li>";
   quote[30]="<li>&quot;Getting through life is tough; it'd be even tougher if you were stupid.&quot;<span>&mdash;Anonymous</span></li>";
   quote[31]="<li>&quot;Not the victory but the action. Not the goal but the game. In the deed the glory.&quot;<span>&mdash;Hartley Burr Alexander</span></li>";
   quote[32]="<li>&quot;CAPS LOCK IS LIKE CRUISE CONTROL FOR COOL.&quot;<span>&mdash;bash.org</span></li>";
   quote[33]="<li>&quot;There is no point in arguing with an idiot, they will just drag you down to their level and beat you with experience.&quot;<span>&mdash;bash.org</span></li>";
   quote[34]="<li>&quot;I hate feet. Especially feet I can see.&quot;<span>&mdash;The Goat</span></li>";
  
   $('#pageRandom div.expander ul.quotes').empty().append(quote[quote1]).append(quote[quote2]).append(quote[quote3]);
}
