function removeDiv(whichDiv){
	document.getElementById(whichDiv).style.display = 'none';
}

function displayDiv(whichDiv){
	document.getElementById(whichDiv).style.display = 'block';	
}

function getStartingQuote()
{
  startQuote = Math.round(Math.random()*rotatingQuotes.length) -1;
  return startQuote;
}

function startRotation(currentQuote)
{
  for(index=0; index < rotatingQuotes.length ; index++)
  {
    removeDiv('quote' + index);
  }
  currentQuote = currentQuote + 1;
  if(currentQuote == rotatingQuotes.length)
  {
	currentQuote = 0;
  }
  displayDiv('quote' + currentQuote);
  setTimeout("startRotation(" + currentQuote + ")", 10000);
}

var quotes = new Array();

quotes['q0'] = "<p>&ldquo;I have started my business with only $60,000.00 cash raised from an equity line in 1999.  Michael Noda helped me get into a 44 bed facility in Pleasant Hill, CA.  I would not have this success without Mr. Noda‘s sincere support from day 1 in 1999.  We now own and operate 4 mid size facilities in the Bay Area. &ldquo;</p><p><strong>- Tony & Letecia Perez, Pleasant Hill, CA<br></strong></p>";

quotes['q1'] = "<p>&ldquo;When I met Michael Noda I was operating a few 6 bed facilities in the East Bay.  He has helped me make my dream come true.  I now own and operate a 90 bed facility.  He has changed my view in the operation of care homes.  I am very happy Mr. Noda came into my business. &ldquo;</p><p><strong>- Elizabeth Cortez, Oakland, CA<br></strong></p>";

quotes['q2'] = "<p>&ldquo;We are so happy we met Michael Noda.  We just call him whenever we need financial assistance.  Michael makes things happen. &ldquo;</p><p><strong>- Nick & Matt, San Rafael, CA<br></strong></p>";

quotes['q3'] = "<p>&ldquo;Michael Noda helped us acquire two care homes in 9 months with only $30,000.00 cash. &ldquo;</p><p><strong>- Romi, Santa Rosa, CA<br></strong></p>";

quotes['q4'] = "<p>&ldquo;I did not know anything about the care home business when I met Michael Noda one year ago.  Now I am excited about buying my second care home. &ldquo;</p><p><strong>- Ben, Sacramento, CA<br></strong></p>";

quotes['q5'] = "<p>&ldquo;Michael, I knew nothing when I got into this business.  I left the business with so much information about the business.   I was very happy dealing with you for three years during my ownership of a 40 bed facility in Berkeley, CA. &ldquo;</p><p><strong>- Dr. Miller, Mill Valley, CA<br></strong></p>";

quotes['q6'] = "<p>&ldquo;Guess what, I was a 6 bed care home operator.  Now I operate a 78 bed facility  with your tremendous effort... &ldquo;</p><p><strong>- Deb,  Fremont, CA<br></strong></p>";

// copy the quotes
var rotatingQuotes = new Array;
rotatingQuotes[0] = quotes['q0'];
rotatingQuotes[1] = quotes['q1'];
rotatingQuotes[2] = quotes['q2'];
rotatingQuotes[3] = quotes['q3'];
rotatingQuotes[4] = quotes['q4'];
rotatingQuotes[5] = quotes['q5'];
rotatingQuotes[6] = quotes['q6'];

function getQuotes() 
{
  for(index=0; index < rotatingQuotes.length; index++)
  {
    document.write('<div class=quote id="quote' + index + '">' + rotatingQuotes[index] + '</div>');
  }
  startRotation(getStartingQuote());
}
