// JavaScript Document

//------------------Quote of the Day-----------------
window.onload = QuoteOfDay;

function QuoteOfDay(){
	    var quo = new Array();
    quo[0] = "Injustice anywhere is a threat to justice everywhere.<br /><br />--Martin Luther King, Jr.";
    quo[1] = "If we want a beloved community, we must stand for justice, have recognition for difference without attaching difference to privilege.<br /><br /> -- Bell Hooks";
    quo[2] = "Justice demands integrity. It's to have a moral universe --not only know what is right or wrong but to put things in perspective, weigh things. Justice is different from violence and retribution; it requires complex accounting.<br /><br /> -- Bell Hooks";
    quo[3] = "The power of a movement lies in the fact that it can indeed change the habits of people. This change is not the result of force but of dedication, of moral persuasion. <br /><br />--Steve Biko (1946-77), South African political leader. Interview, July 1976. Quoted in: Donald Woods, Biko, (1978)";
	
	quo[4] = "Injustice anywhere is a threat to justice everywhere. We are caught in an inescapable network of mutuality, tied in a single garment of destiny. Whatever affects one directly, affects all indirectly. <br /><br />--Martin Luther King, Jr ";
	quo[5] = "Once every generation, history brings us to an important crossroads. Sometimes in life, there is that moment when it's possible to make a change for the better. This is one of those moments. <br /><br />--Elizabeth Glaser " ;
    quo[6] = "All that is essential for the triumph of evil is for the good people to do nothing. <br /><br />--Edmund Burke" ;
    quo[7] = "The future will be different if we make the present different. <br /><br />--Peter Maurin" ;
    quo[8] = "Violence is immoral because it thrives on hatred rather than love.  It destroys community and makes brotherhood impossible.  It leaves society in monologue rather than dialogue.  Violence ends by defeating itself.  It creates bitterness in the survivors and brutality in the destroyers. <br /><br />--Martin Luther King, Jr." ;
	
	quo[9] = "We abuse the land because we regard it as a commodity, belonging to us.  When we see land as a community to which we belong, then we may begin to use it with love and respect. <br /><br />--Aldo Leopold" ;
    quo[10] = "All things need food to be alive and to grow, including our love and our hate.  Love is a living thing; hate is a living thing.  If you do not nourish your love it will die. If you cut the source of nutriment for your violence, your violence will also die.<br /><br />--Thich Nhat Hanh" ;
	quo[11] = "As you press on for justice, be sure to move with dignity and discipline, using only the weapon of love.  Let no man pull you so low as to hate him. Always avoid violence.  If you succumb to the temptation of using violence in your struggle, unborn generations will be the recipients of a long and desolate night of bitterness, and your chief legacy to the future will be an endless reign of meaningless chaos.<br /><br />--Martin Luther King, Jr." ;
 	quo[12] = "Now let me suggest first that if we are to have peace on earth, our loyalties must become ecumenical rather that sectional. Our loyalties must transcend our race, our tribe, our class, and our nation; and this means we must develop a world perspective. No individual can live alone; no nation can live alone, and as long as we try, the more we are going to have war in this world. Now the judgment of God is upon us, and we must either learn to live together as brothers or we are all going to perish together as fools.<br /><br />--Martin Luther King, Jr.";
    quo[13] = "What is Success? To know even one life has breathed easier because you have lived. <br /><br />--Ralph Waldo Emerson";
    quo[14] = "Where justice is denied, where poverty is enforced, where ignorance prevails, and where any one class is made to feel that society is an organized conspiracy to oppress, rob and degrade them, neither persons nor property will be safe.  <br /><br />--Frederick Douglass";
	quo[15] = "If people have moral courage to stand up to the smallest injustice-their own and others'-it's kind of like practice for when the big ones come around.<br /><br />--Colleen Kelly";
	quo[16] = "If you are neutral in situations of injustice, you have chosen the side of the oppressor. If an elephant has its foot on the tail of a mouse and you say that you are neutral, the mouse will not appreciate your neutrality.<br /><br />--Archbishop Desmond Tutu";
	
var d=new Date();
var number=d.getDate()%17; 
/*   var number=Math.floor(Math.random()*17);*/

document.getElementById("qSentence").innerHTML = quo[number];

}
//------------------Homepage spotlight-----------------
window.onload = picSpot;
function picSpot(){
	var n=Math.floor(Math.random()*15);
	document.getElementById("H_Picture").src="images/highlight_photo_"+n+".gif";
}