// JavaScript Document
window.onload = initLinks;

var myPix = new Array("images/VMP001.jpg","images/VMP002.jpg","images/VMP003.jpg","images/VMP004.jpg","images/VMP005.jpg","images/VMP006.jpg","images/VMP007.jpg","images/VMP008.jpg","images/VMP009.jpg","images/VMP010.jpg","images/VMP011.jpg","images/VMP012.jpg","images/VMP013.jpg","images/VMP014.jpg","images/VMP015.jpg","images/VMP016.jpg","images/VMP017.jpg","images/VMP018.jpg","images/VMP019.jpg","images/VMP020.jpg");
var myLocation= new Array("audios/P001-El_Amor.mp3","audios/P004-LaVerdaderaFelicidad.mp3","audios/P005-LaVerdaderaFelicidad_II.mp3","audios/P006-LaEsperanza.mp3","audios/P007-LaFeQueTraeSalud.mp3","audios/P008-LaFeQueEdifica.mp3","audios/P009-LaFeQueEdifica_II.mp3","audios/P010-ElArrepentimiento.mp3","audios/P011-ImportanciaDeLaSinceridad.mp3","audios/P013-LosSentimientos.mp3","audios/P014-LasMentirasBlancas.mp3","audios/P015-LasSendasAntiguas.mp3","audios/P016-LasSendasAntiguas.mp3","audios/P018LasSendasAntiguas.mp3","audios/P019-ElFavorDeDios.mp3","audios/P020-ComoMantenerElGozo.mp3","audios/P021-NuestrosValores.mp3","audios/P022-ElPlanDeDios.mp3","audios/P023-LaFidelidadDeDios.mp3","audios/P025-EsperanzaEnDios.mp3");
var thisPic = 0;

function initLinks() {
	
	//document.getElementById("prevLink").onclick = processPrevious(AmyPix,BthisPic);
	//document.getElementById("nextLink").onclick = processNext(AmyPix,BthisPic);

	document.getElementById("prevLk").onclick = processPrevious;
	document.getElementById("nextLk").onclick = processNext;
	document.getElementById("playLk").onclick = playMelody;
}

//function processPrevious(myPix,thisPic) {
function processPrevious() {
	
		
	if (thisPic == 0) {
		thisPic = myPix.length;
	}
	thisPic--;
	
	document.getElementById("myPicture").src = myPix[thisPic];
	//document.getElementById("playLk").onclick = playMelody(thisPic);
	return false;
}

//function processNext(myPix,thisPic) {
function processNext() {
	
	thisPic++;
	if (thisPic == myPix.length) {
		thisPic = 0;
	}
	document.getElementById("myPicture").src = myPix[thisPic];
	//document.getElementById("playLk").onclick = playMelody(thisPic);
	return false;
}

function playMelody(){
	document.location = myLocation[thisPic];
	return false;
		
}