
smallSizes = new Array(77,77);
mediumSizes = new Array(280,176);
pageName = 'gallery.htm';
scriptName = 'gallery.js';
countX = 3;
countY = 1;

// sections: name, small images path, medium images path, big images path
// images: name, src, big width, big height
var arImages = new Array(
  new Array('','images/gallery/small/','images/gallery/medium/','images/gallery/big/',
    new Array(
      new Array('Photo 1','GALLEA_MAISON_1.jpg',450,313),
      new Array('Photo 2','MAISON_F.jpg',450,316),
      new Array('Photo 3','MAISON_G.jpg',450,286),
      new Array('Photo 4','MAISON_H.jpg',450,315),
      new Array('Photo 5','MAISON_I.jpg',450,420),
      new Array('Photo 6','MAISON_J.jpg',450,305),
      new Array('Photo 7','MAISON_K.jpg',450,311)
    )
  )
)

section = getParameter(self.document.location.href, 'section');
if (isNaN(section) || (section=='') || (section<0) || (section>arImages.length))
  section = 0; 

ind = getParameter(self.document.location.href, 'ind');
if (isNaN(ind) || (ind=='') || (ind<0) || (ind>arImages[section][4].length))
  ind = 0; 

var arPreloadImages = new Array();
function preload() {
  if (arImages[section][2]!='') {
    for (i=ind;(i<(Number(ind)+Number(countX*countY))) && (i<arImages[section][4].length);i++) {
      arPreloadImages[i] = new Image(mediumSizes[0],mediumSizes[1]);
      arPreloadImages[i].src = arImages[section][2]+arImages[section][4][i][1];
    }
  }
}
  
function showImageMedium(number) {
  showImage('imagemedium',arImages[section][2]+arImages[section][4][number][1]);
  showMessage('imagemediumname',arImages[section][4][number][0]);
}

function showImageBig(number) {
  showImagePopup(scriptName,section,number,arImages[section][4][number][2],
   arImages[section][4][number][3]);
}
