function quoteRotate(sec,quote_id) {
    var Quotation=new Array()

    // QUOTATIONS
    Quotation[0] = new Array(5);
    Quotation[0][0] = "&quot;Corebox really is a good system and everyone should be using it.&quot;";
    Quotation[0][1] = "David Coffin";
    Quotation[0][2] = "HRA Advisories";
    Quotation[0][3] = "http://www.hraadvisory.com/";
    Quotation[0][4] = "15px";
    Quotation[1] = new Array(5);
    Quotation[1][0] = "&quot;I find it very useful as a geologist and an investor to see drill traces in three dimensions and have the ability to spin them in space.&quot;";
    Quotation[1][1] = "Neil Adshead";
    Quotation[1][2] = "";
    Quotation[1][3] = "";
    Quotation[1][4] = "12px";
    Quotation[2] = new Array(5);
    Quotation[2][0] = "&quot;I often give presentations on our Yukon gold discovery to fund managers and brokers.  It is not uncommon for them to ask if we have Corebox on our web site, and when I answer yes they commonly say, good, that makes it easy for me to see your results.&quot;";
    Quotation[2][1] = "Adrian Fleming";
    Quotation[2][2] = "Underworld Resources";
    Quotation[2][3] = "http://www.underworldresources.com/";
    Quotation[2][4] = "12px";
    Quotation[3] = new Array(5);
    Quotation[3][0] = "&quot;If you're proud of your property, it should be on this site.&quot;";
    Quotation[3][1] = "Brent Cook";
    Quotation[3][2] = "Exploration Insights";
    Quotation[3][3] = "http://www.explorationinsights.com/";
    Quotation[3][4] = "15px";
    

    document.getElementById('quote_text').innerHTML = Quotation[quote_id][0];
    document.getElementById('quote_text').style.fontSize = Quotation[quote_id][4];
    document.getElementById('quote_author').innerHTML = Quotation[quote_id][1];
    document.getElementById('quote_url').innerHTML = Quotation[quote_id][2];
    document.getElementById('quote_url').href = Quotation[quote_id][3];

    if (quote_id < (Quotation.length - 1)) {
      // advance quote by one
      quote_id = quote_id + 1;
   } else {
   	// reset quote to beginning of array
      quote_id = 0;
   }

   setTimeout('quoteRotate('+sec+','+quote_id+')', sec*1000);

}
