function get_random(maxNum)
{
 var ranNum= Math.floor(Math.random()*(maxNum));
 return ranNum;
}

function getaQuote()
{
  if (document.getElementById && document.createTextNode) 
  {
	  
     var quote=new Array()
       quote[0]="Pots evitar fàcilment ser criticat si no dius res, si no fas res, si no ets res. - Aristòtil";
       quote[1]="Tots som molt ignorants. El que ocorre és que no tots ignorem les mateixes coses. -Albert Einstein";
       quote[2]="La superstició duu mala sort. -Raymond Smullyan";   
       quote[3]="Troba un treball que t'agradi i no tornaràs a treballar ni un sol dia de la teva vida. -Confunci";
       quote[4]="Obriu escoles per tancar presons. -Víctor Hugo";
       quote[5]="Un cap ben moblat sempre serà millor i preferible a un cap molt ple. -Michel E. de Montaigne";
       quote[6]="Vaig malbaratar el temps i ara el temps em malbarata a mi. -William Shakespeare";
       quote[7]="";
       quote[8]="";
       quote[9]="";
    
	 var whichQuote=get_random(quote.length);
	 
	var thequote = document.getElementById("my_quote");
    thequote.innerHTML = quote[whichQuote];
  }
} 

getaQuote();

