
smallSizes = new Array(77,77);
mediumSizes = new Array(200,170);
pageName = 'gallery_municipal.htm';
scriptName = 'gallery_municipal.js';
countX = 2;
countY = 5;

// sections: name, small images path, medium images path, big images path
// images: name, src, big width, big height


var arImages = new Array(

  new Array('Abilene Christian University','images/gallery/small/','images/gallery/medium/','images/gallery/big/',
    new Array(
      new Array('Photo 1','IMG_3008.jpg',534,400),
      new Array('Photo 2','IMG_3009.jpg',534,400),
      new Array('Photo 3','IMG_3013.jpg',534,400),
      new Array('Photo 4','IMG_3042.jpg',534,400),
      new Array('Photo 5','IMG_3043.jpg',534,400),
      new Array('Photo 6','IMG_3044.jpg',534,400),
      new Array('Photo 7','IMG_3045.jpg',534,400),
      new Array('Photo 8','IMG_3182.jpg',534,400)
    )
  ),

  new Array('Anderson County Law Enforcement','images/gallery/small/','images/gallery/medium/','images/gallery/big/',
    new Array(
      new Array('Photo 1','5.30.06 anderson county law enforcement 006.jpg',534,400),
      new Array('Photo 2','5.30.06 anderson county law enforcement 008.jpg',534,400),
      new Array('Photo 3','ANDERSON CO. & POGUE 068.jpg',534,400),
      new Array('Photo 4','ANDERSON CO. & POGUE 069.jpg',534,400),
      new Array('Photo 5','ANDERSON CO. & POGUE 120.jpg',534,400),
      new Array('Photo 6','ANDERSON CO. & POGUE 139.jpg',534,400),
      new Array('Photo 7','ANDERSON CO. & POGUE 140.jpg',534,400),
      new Array('Photo 8','ANDERSON CO. & POGUE 142.jpg',534,400)
    )
  ),

  new Array('Boyd High School','images/gallery/small/','images/gallery/medium/','images/gallery/big/',
    new Array(
      new Array('Photo 1','BOYD 2A 006.jpg',534,400),
      new Array('Photo 2','BOYD 2A 013.jpg',534,400),
      new Array('Photo 3','BOYD 2A 076.jpg',534,400),
      new Array('Photo 4','Boyd High School Final Pictures 021.jpg',534,400),
      new Array('Photo 5','Boyd High School Final Pictures 028.jpg',534,400),
      new Array('Photo 6','Boyd High School Final Pictures 049.jpg',534,400),
      new Array('Photo 7','Boyd High School Final Pictures 051.jpg',534,400),
      new Array('Photo 8','Boyd High School Final Pictures 052.jpg',534,400),
      new Array('Photo 9','Boyd High School Final Pictures 064.jpg',300,400),
      new Array('Photo 10','Boyd High School Final Pictures 085.jpg',534,400),
      new Array('Photo 11','IMG_0103.jpg',300,400),
      new Array('Photo 12','IMG_0106.jpg',300,400),
      new Array('Photo 13','IMG_3317.jpg',534,400),
      new Array('Photo 14','IMG_3318.jpg',534,400),
      new Array('Photo 15','IMG_3584.jpg',534,400),
      new Array('Photo 16','S4020015.jpg',534,400),
      new Array('Photo 17','S4020024.jpg',534,400),
      new Array('Photo 18','S4020025.jpg',534,400)
    )
  ),

  new Array('Naomi Press Elementary School','images/gallery/small/','images/gallery/medium/','images/gallery/big/',
    new Array(
      new Array('Photo 1','IMG_0170.jpg',534,400),
      new Array('Photo 2','IMG_0206.jpg',534,400),
      new Array('Photo 3','IMG_0233.jpg',534,400),
      new Array('Photo 4','IMG_0299.jpg',534,400),
      new Array('Photo 5','IMG_0300.jpg',534,400),
      new Array('Photo 6','IMG_0301.jpg',534,400),
      new Array('Photo 7','IMG_0302.jpg',534,400),
      new Array('Photo 8','IMG_0305.jpg',534,400)
    )
  ),

  new Array('T.J. Austin Elementary School','images/gallery/small/','images/gallery/medium/','images/gallery/big/',
    new Array(
      new Array('Photo 1','ANDERSON CO. & POGUE 165.jpg',534,400),
      new Array('Photo 2','plastine and tyler 043.jpg',534,400),
      new Array('Photo 3','plastine and tyler 237.jpg',534,400),
      new Array('Photo 4','RPR TJ AUSTIN TYLER 9-6-06 & SIGNATURE HOMES 9-6-06 001.jpg',534,400),
      new Array('Photo 5','RPR TJ AUSTIN TYLER 9-6-06 & SIGNATURE HOMES 9-6-06 002.jpg',534,400),
      new Array('Photo 6','RPR TJ AUSTIN TYLER 9-6-06 & SIGNATURE HOMES 9-6-06 003.jpg',534,400)
    )
  )
)




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]);
}
