smallSizes = new Array(77,55);
mediumSizes = new Array(265,190);
pageName = 'photos_rehersal2.htm';
scriptName = 'photos_rehersal2.js';
countX = 3;
countY = 2;
// sections: name, small images path, medium images path, big images path
// images: name, src, big width, big height
var arImages = new Array(
/*
  new Array('C.C.W. Gett`in A Bite To Eat Before They Roll Into Rehearsal','images/photos/New Rehersal Photos/small/','images/photos/New Rehersal Photos/medium/','images/photos/New Rehersal Photos/big/',
    new Array(
      new Array('','DSC00107.jpg'),
      new Array('','DSC00108.jpg'),
      new Array('','DSC00117.jpg')
    )
  ),
*/

  new Array('C.C.W. Rehearsal Nov. 20-21st 2006','images/photos/New Rehersal Photos/small/','images/photos/New Rehersal Photos/medium/','images/photos/New Rehersal Photos/big/',
    new Array(
      new Array('','DSC00035.jpg'),
      new Array('','DSC00036.jpg'),
      new Array('','DSC00037.jpg'),
//      new Array('','DSC00039.jpg'),
      new Array('','DSC00043-copy.jpg'),
      new Array('','DSC00049.jpg'),
      new Array('','DSC00050.jpg'),
      new Array('','DSC00063.jpg'),
      new Array('','DSC00075-copy.jpg')
//      new Array('','DSC00090-copy.jpg')
    )
  ),

  new Array('Rehearsal Photos','images/photos/New Rehersal Photos/small/','images/photos/New Rehersal Photos/medium/','images/photos/New Rehersal Photos/big/',
    new Array(
      new Array('','0166.jpg'),
      new Array('','0180.jpg'),
      new Array('','0184.jpg'),
      new Array('','0202.jpg'),
      new Array('','0209.jpg'),
      new Array('','0215.jpg'),
      new Array('','0219.jpg'),
      new Array('','100_0117.jpg'),
      new Array('','100_0121.jpg'),
      new Array('','100_0137.jpg'),
      new Array('','100_0168.jpg'),
      new Array('','100_0169.jpg'),
      new Array('','100_0185.jpg'),
      new Array('','100_0187.jpg'),
      new Array('','100_0207.jpg'),
      new Array('','100_0211.jpg'),
      new Array('','100_0228.jpg'),
      new Array('','DSC00243.jpg'),
      new Array('','DSC00250.jpg'),
      new Array('','DSC00253.jpg'),
      new Array('','DSC00271.jpg'),
      new Array('','DSC00304.jpg'),
      new Array('','DSC00312.jpg')
    )
  )

)

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) {
  width = 660;
  height = 600;
  win = window.open('big_image.htm?script='+scriptName+'&section='+section
	+'&ind='+number,'_blank','width='+width+',height='+height
	+',left=17,top=17,statusbar=no,toolbar=no,scrollbars= never,navbar=no');
  win.focus();
}

