var variableslide=new Array()

//variableslide[x]=["path to image", "OPTIONAL link for image", "OPTIONAL text description (supports HTML tags)"]

variableslide[0]=['space.gif', '', '\"Nonviolence is the answer to the crucial political and moral questions of our time: the need for man to overcome oppression and violence without resorting to oppression and violence.  Man must evolve for all human conflict a method which rejects revenge, agression, and retaliation.  The foundation of such a method is love.\" - Martin Luther King, Jr']
variableslide[1]=['space.gif', '', '\"How much more are men than nations. How much more are all peoples more than nations.\" - R. W. Emerson']
variableslide[2]=['space.gif', '', '\"There is greater glory in eliminating war by words of peace, than in exterminating enemies by arms.\" - St. Augustine']
variableslide[3]=['space.gif', '', '\"That destructive fury called war turns into wild beasts men who were born to live as brothers.\" - Voltaire']
variableslide[4]=['space.gif', '', '\"These cruel and clumbsy weapons are already reported to have claimed the lives of Iraqi children and this must end.\" - Wiwina Belmonte, UNICEF']
variableslide[5]=['space.gif', '', '\"We must stand together, the four sacred colors of humans, as the one family we are, in the interests of peace. We must abolish nuclear and conventional weapons of war. When warriors are leaders, then you will have war. We must raise leaders of peace.\" - Leon Shenandoah, Tadodaho, Haudenosaunee, Oct. 25, l985 address to the UN General Assembly']
variableslide[6]=['space.gif', '', '\"Above all nations is humanity.\" - Henri Dunant, First recipient of the Nobel Peace Prize, with F. Passy']
variableslide[7]=['space.gif', '', '\"If isolated murder is rightly condemned by the world conscience, how much more should we condemn that vast and terrible organization of homicide which we call war?\" - Frederick Passy, co-winner of the first Nobel Peace Prize']
variableslide[8]=['space.gif', '', '\" ... let no one think that the expenditure of vast sums for weapons and systems of defense can guarantee absolute safety for the cities and citizens of any nation.\" - Dwight D. Eisenhower l953']
variableslide[9]=['space.gif', '', '\"I hope we shall prove how much happier for man the Quaker policy is, and that the life of the feeder is better than that of the fighter.\" - Thomas Jefferson to John Adams, l822']
variableslide[10]=['space.gif', '', '\"Coward and force may often create, but can never cure aversion.\" - Locke']
variableslide[11]=['space.gif', '', '\"There never was a good war or a bad peace.\" - Benjamin Franklin, 9/ll/l773 letter to Josiah Quincy']
variableslide[12]=['space.gif', '', '\"Peace cannot be kept by force; it can only be achieved by understanding.\" - Einstein']

//configure the below 3 variables to set the dimension/background color of the slideshow

var slidewidth='350px' //set to width of LARGEST image in your slideshow
var slideheight='3px' //set to height of LARGEST iamge in your slideshow, plus any text description
var slidebgcolor='#ffffff'

//configure the below variable to determine the delay between image rotations (in miliseconds)
var slidedelay=24000

////Do not edit pass this line////////////////

var ie=document.all
var dom=document.getElementById

for (i=0;i<variableslide.length;i++){
var cacheimage=new Image()
cacheimage.src=variableslide[i][0]
}

var currentslide=0

function rotateimages(){
contentcontainer='<center>'
if (variableslide[currentslide][1]!="")
contentcontainer+='<a href="'+variableslide[currentslide][1]+'">'
contentcontainer+='<img src="'+variableslide[currentslide][0]+'" border="0" vspace="3">'
if (variableslide[currentslide][1]!="")
contentcontainer+='</a>'
contentcontainer+='</center>'
if (variableslide[currentslide][2]!="")
contentcontainer+=variableslide[currentslide][2]

if (document.layers){
crossrotateobj.document.write(contentcontainer)
crossrotateobj.document.close()
}
else if (ie||dom)
crossrotateobj.innerHTML=contentcontainer
if (currentslide==variableslide.length-1) currentslide=0
else currentslide++
setTimeout("rotateimages()",slidedelay)
}

if (ie||dom)
document.write('<div id="slidedom" style="width:'+slidewidth+';height:'+slideheight+'; background-color:'+slidebgcolor+'"></div>')

function start_slider(){
crossrotateobj=dom? document.getElementById("slidedom") : ie? document.all.slidedom : document.slidensmain.document.slidenssub
if (document.layers)
document.slidensmain.visibility="show"
rotateimages()
}

if (ie||dom)
start_slider()
else if (document.layers)
window.onload=start_slider