//-- M. Valmaseda 2008
//-- Este fichero recoge los comentarios correspondientes a las fotos de la Galería de
//-- la página web www.valmam.com.es. 


//---------------------------------------------------------------------------------

var num=0;

Theme = [ 'Galería de Fotos:  ' , 
   'Pulsar sobre la imágen con el botón derecho del ratón y elegir la opción Set as Background/Establecer como Fondo'];

Title = [

'paseo de la tarde',
'fiesta de verano',
'al pie de la montaña',
'sin límites',
'tormenta',
'Madrd',
'tarde extraña de verano',
'allanando el terreno',
'ya llegamos tarde',
'llueve sobre mojado',
'otros ojos',
'obra',
'camino al ocaso',
'siempre brilla el sol',
'camino de hierro'


]
;

imgArray = [
['Picture_001.jpg' , Title[0] , Theme[0] ] ,
['Picture_002.jpg' , Title[1] , Theme[0] ] ,
['Picture_003.jpg' , Title[2] , Theme[0] ] ,
['Picture_004.jpg' , Title[3] , Theme[0] ] ,
['Picture_005.jpg' , Title[4] , Theme[0] ] ,
['Picture_006.jpg' , Title[5] , Theme[0] ] ,
['Picture_007.jpg' , Title[6] , Theme[0] ] ,
['Picture_008.jpg' , Title[7] , Theme[0] ] ,
['Picture_009.jpg' , Title[8] , Theme[0] ] ,
['Picture_010.jpg' , Title[9] , Theme[0] ] ,
['Picture_011.jpg' , Title[10] , Theme[0] ] ,
['Picture_012.jpg' , Title[11] , Theme[0] ] ,
['Picture_013.jpg' , Title[12] , Theme[0] ] ,
['Picture_014.jpg' , Title[13] , Theme[0] ] ,
['Picture_015.jpg' , Title[14] , Theme[0] ] 
/*
,
['Picture_016.jpg' , Title[15] , Theme[0] ] ,
['Picture_017.jpg' , Title[16] , Theme[0] ] ,
['Picture_018.jpg' , Title[17] , Theme[0] ] ,
['Picture_019.jpg' , Title[18] , Theme[0] ] ,
['Picture_020.jpg' , Title[19] , Theme[0] ] ,
['Picture_021.jpg' , Title[20] , Theme[0] ] ,
['Picture_022.jpg' , Title[21] , Theme[0] ] ,
['Picture_023.jpg' , Title[22] , Theme[0] ] ,
['Picture_024.jpg' , Title[23] , Theme[0] ] ,
['Picture_025.jpg' , Title[24] , Theme[0] ] ,
['Picture_026.jpg' , Title[25] , Theme[0] ] ,
['Picture_027.jpg' , Title[26] , Theme[0] ] ,
['Picture_028.jpg' , Title[27] , Theme[0] ] ,
['Picture_029.jpg' , Title[28] , Theme[0] ] ,
['Picture_030.jpg' , Title[29] , Theme[0] ] ,
['Picture_031.jpg' , Title[30] , Theme[0] ] 
*/

]
;


/* ------------------------ funciones ------------------------------------------- */

function OnLoad() {

document.getElementById('burns').innerText=imgArray[0][2];
document.getElementById('marke').innerHTML="1 - " + imgArray[0][1];

}
//---------------------------------------------------------------------------------

function slideshow(slide_num) {
  document.getElementById('mypic').src=imgArray[slide_num][0];
  document.getElementById('mypic').alt=Theme[1];
  document.getElementById('burns').innerText=imgArray[slide_num][2];
  document.getElementById('marke').innerText=(slide_num + 1) + " - " + imgArray[slide_num][1];

}
//---------------------------------------------------------------------------------

function slideshowUp() {
  num++;
  num = num % imgArray.length;
  slideshow(num);
}
//---------------------------------------------------------------------------------

function slideshowBack() {
  num=num-1;
  if (num < 0) {num=imgArray.length-1;}
  num = num % imgArray.length;
  slideshow(num);
}
//---------------------------------------------------------------------------------	  

