// JavaScript Document

var seconds=10; /* rotate every 10 seconds */
function rotate()
{
        var Quotation=new Array()

        // QUOTATIONS
        Quotation[0] = '"Yes we can." Barack Obama, 44th President of the United States';
        Quotation[1] = '"Black people have always been Americas wilderness in search of a promised land." Cornel West';
        Quotation[2] = '"I have learned over the years that when ones mind is made up, this diminshes fear." Rosa Parks';
        Quotation[3] = '"Almost always, the creative dedicated minority has made the world better." Dr. Martin Luther King, Jr.';
		Quotation[4] = '"Just like you can buy grades of silk, you can buy grades of justice." Ray Charles'; 
        var which = Math.round(Math.random()*(Quotation.length - 1));         
		document.getElementById('scripturerotator').innerHTML = Quotation[which];
}
function start()
{
  setInterval("rotate()",seconds*1000);
}

