	var timeDelay = 3; 			// Tiempo de espera
	
	// ----------------------------------------	
	// Lista de imagenes a ser presentadas
	// ----------------------------------------	
		var Pix = new Array			
	(
	"http://www.cicad.oas.org/en/images/insulza01.jpg",
	"http://www.cicad.oas.org/photos/delegates_sm.jpg",
	"http://www.cicad.oas.org/photos/left_sm.jpg",
	"http://www.cicad.oas.org/photos/lugo_sm.jpg"
	);
	// ----------------------------------------
	
	
	// ----------------------------------------
	// Titulos de las imagenes correspondientes
	// ----------------------------------------		
	var Titles = new Array
	(
	"José Miguel Insulza, OAS Secretary General, at CICAD 45 in Washington",
	"CICAD 45",
	"CICAD 45",
	"Mayor of Lugo, Spain, José Clemente López Orozco"
		);
	// ----------------------------------------
	
	
	// ----------------------------------------
	// Enlaces de las imagenes correspondientes
	// ----------------------------------------		
	var Links = new Array
	(
	"http://www.cicad.oas.org/apps/Sessions.aspx?Lang=ENG&IE=US0090",	
	"http://www.cicad.oas.org/apps/Sessions.aspx?Lang=ENG&IE=US0090",
	"http://www.cicad.oas.org/apps/Sessions.aspx?Lang=ENG&IE=US0090",
	"http://www.cicad.oas.org/apps/Sessions.aspx?Lang=ENG&IE=US0090"
	);
	// ----------------------------------------
	
	
	var howMany = Pix.length;
	timeDelay *= 1250;
	var PicCurrentNum = 0;
	var PicCurrent = new Image();
	PicCurrent.src = Pix[PicCurrentNum];

function startPix() {
	setInterval("slideshow()", timeDelay);
}

function slideshow() {
	PicCurrentNum++;
	if (PicCurrentNum == howMany) {
	PicCurrentNum = 0;
	}
	PicCurrent.src = Pix[PicCurrentNum];
	document["main_picture"].src = PicCurrent.src;
	document["main_picture"].title = Titles [PicCurrentNum];
	document.getElementById('main_link').href = Links [PicCurrentNum];
}
