﻿function get_random()
{
    var ranNum= Math.floor(Math.random()*4);
    return ranNum;
}

window.onload=function() {
   var whichQuote=get_random();

    var quote=new Array(4)
     quote[0]="\"With Blue Goose Technology’s iChannel solution,<br />we did not see any limitations, only potential.\"<br /><span>- Cathy Chafin, <em>Vice President of Information Technology, Bouchard Insurance</em></span>";
     quote[1]="\"When we considered our overall objectives beyond document management...<br />Blue Goose was by far the obvious choice.\"<br /><span>- Nancy Sheinberg, <em>Bouchard Insurance</em></span>";
     quote[2]="\"Having a file structure we can control makes it easier for us<br />if we ever had to change management systems, for example.\"<br /><span>- Cyndi Tullos, <em>Executive Assistant for Operations, SouthGroup</em></span>";   
     quote[3]="\"With iChannel, we can attach any document type to a customer file.\"<br /><span>- Ronnie Tubertini, <em>President and CEO, SouthGroup</em></span>";
  
   document.getElementById("taglineText").innerHTML = (quote[whichQuote]);
  }