<!-- Hide script from old browsers

//hey this is easy - just populate this array with

//the pictures you want in this slide show.

var dolPix = new Array(

	"slides/eritrea_trainingMaiAini.jpg",

	"slides/lao_community.jpg",

	"slides/posters_teach.jpg",

	"slides/afghanistan_kids.jpg",

	"slides/afghanistan_victimLeg.jpg",

	"slides/eritrea_refugeecamp.jpg",
	
	"slides/peacegame_board.jpg",
	
	"slides/playing_peacegame.jpg",
	
	"slides/eritrea_educationprogramme.jpg"

);

/* above is the array that holds our images, it is indexed from 0 to 

   (number of elements - 1) */

var thisPic = 0;  //the counter for the image array

var lastPic = 8;  //the last cell in our array = (number of pictures - 1)

	

var dolCap = new Array(

"Mine risk education brings communities of people together to learn about the dangers of landmines and unexploded ordnance. This is extremely important so that people are aware of the dangers while mine clearance is taking place. Mine risk education teaches through posters, maps, singing, plays and dancing. Here are some examples of programs in action.",


"A community in Lao PDR learns about the dangers of mines and UXO through a risk education programme.",


"Posters teach people not to touch or pick up unexploded ordnance.",


"In Afghanistan, children are taught to be careful and avoid landmines and UXO.",


"A man shows his artificial limb to a group of children. His leg was partially destroyed in a landmine accident. The artificial limb is called a prosthesis, or prosthetic limb. This is part of a UNICEF-assisted landmine education project run by the NGO Save the Children USA in Kabul, Afghanistan.",
	
	
"Children from a refugee camp in Eritrea participate in mine risk reduction education.",


"In Angola, a child's hand places a game token on the board of a \"Peace Game\" on landmine awareness.",

	
"Children in Eritrea learn about the dangers of landmines playing this \"Peace Game\".",
		

"Children in Eritrea learn about landmines through a mine risk reduction education programme."

);

	

var do2Cap = new Array(

	"PHOTO CREDIT",

	"PHOTO CREDIT",

	"PHOTO CREDIT",

	"PHOTO CREDIT",

	"PHOTO CREDIT",

	"PHOTO CREDIT",

	"PHOTO CREDIT",
	
	"PHOTO CREDIT",

	"PHOTO CREDIT"

);	

var thisCap = 0;  //the counter for the caption array

var lastCap = 8;  //the last cell in our array = (number of captions - 1)



function processPrevious() {

        if (document.images) {

                if (thisPic==0) //if at the very beginning of array

                 {

                    thisPic=lastPic; //goto the last cell in the array

                    thisCap=lastCap; //goto the last cell in the array

                 }

                 else 

                 {

                    thisPic--; //else simply decrement the counter                    

                    thisCap--; //else simply decrement the counter                    

                 }

                  document.myPicture.src=dolPix[thisPic];

                  document.capform.caption.value=dolCap[thisCap];

				  //document.capform2.caption2.value=do2Cap[thisCap];

        }

}

function processNext() {

        if (document.images) {

                if (thisPic==lastPic) //if at the very end of the array

                 {

                    thisPic=0; //goto the first cell of the array

                    thisCap=0; //goto the first cell of the array

                 }

                 else 

                 {

                    thisPic++; //else simply increment the counter

                    thisCap++; //else simply increment the counter

                 }

                document.myPicture.src=dolPix[thisPic];

                document.capform.caption.value=dolCap[thisCap];

				//document.capform2.caption2.value=do2Cap[thisCap];

        }

}



//End hiding script from old browsers -->

