// JavaScript Document
// Gallery script.
// With image cross fade effect for those browsers that support it.
// Script copyright (C) 2004 www.cryer.co.uk.
// Script is free to use provided this copyright header is included.

var inicio = 7;
var numero = 7;
var cantidad = 22;

nombre=new Array(cantidad); 

function LoadGallery1(pictureName,imageFile,titleCaption,captionText)
{  
  numero = numero + 1;
  if (numero > cantidad) numero = inicio;
  if (document.all)
  {
    document.getElementById(pictureName).style.filter="blendTrans(duration=1)";
    document.getElementById(pictureName).filters.blendTrans.Apply();
  }
  document.getElementById(pictureName).src = '/tour/' + numero + '.jpg';

  if (document.all)
  {
    document.getElementById(pictureName).filters.blendTrans.Play();
  }
 }

function LoadGallery2(pictureName,imageFile,titleCaption,captionText)
{  
  numero = numero - 1;
  if (numero < inicio) numero = cantidad;
  if (document.all)
  {
    document.getElementById(pictureName).style.filter="blendTrans(duration=1)";
    document.getElementById(pictureName).filters.blendTrans.Apply();
  }
  document.getElementById(pictureName).src = '/tour/' + numero + '.jpg';

  if (document.all)
  {
    document.getElementById(pictureName).filters.blendTrans.Play();
  }
}