
pageName = 'samples.htm';
scriptName = 'samples.js';
countX = 7;
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('','images/samples/small/','','images/samples/big/',
    new Array(
      new Array('','austincityentertainment.jpg',750,692),
      new Array('','eco-air.jpg',750,692),

      new Array('','kentdesormeaux.jpg',750,760),
      new Array('','brownnelms.jpg',512,384),
      new Array('','canineheadquarters.jpg',512,384),
      new Array('','cutlerlegal.jpg',512,384),
      new Array('','ipacstar.jpg',512,384),
      new Array('','june-snaps-24.jpg',512,384),
      new Array('','june-snaps-57.jpg',512,384),
      new Array('','june-snaps-60.jpg',512,384),
      new Array('','kblamerica.jpg',512,384),
      new Array('','orthotechsports.jpg',512,384),
      new Array('','pavetech.jpg',512,384),
      new Array('','schwartzstonestore.jpg',512,384),
      new Array('','tes-laec.jpg',512,384),
      new Array('','weallsave.jpg',512,384),
      new Array('','wrenchmints.jpg',512,384),
      new Array('','alliancepavers_home_7d.jpg',800,856),
      new Array('','darhele_home_fin.jpg',800,800),
      new Array('','legacylandscapegroupllc.jpg',800,828),
      new Array('','pavers101_home.jpg',800,933),
      new Array('','rkhardscaping_home.jpg',800,933),
      new Array('','slopesolutionsllc_home.jpg',800,855),
      new Array('','southburystoneandsupply2.jpg',800,866),
      new Array('','thorpelandscape_home.jpg',800,933),
      new Array('','appianpavers_home2.jpg',800,720),
      new Array('','cabobrickandstone_home_A.jpg',800,809),
      new Array('','cvbs_home6.jpg',800,800),
      new Array('','egans_group_a.jpg',800,889),
      new Array('','evergreenlandproperty_home.jpg',800,889),
      new Array('','ecologylandscape_home.jpg',800,720),
      new Array('','landscape-planet-crop.jpg',800,967),
      new Array('','jppavers_home.jpg',800,851),
      new Array('','gsbestllc_home.jpg',800,758),
      new Array('','greenangelslandscaping_3.jpg',800,699),
      new Array('','poolstospas_home.jpg',800,758),
      new Array('','supremegaragefloors3_home.jpg',800,851),
      new Array('','southcoastsupplyinc4_home.jpg',800,760),
      new Array('','vista-stone_home_b.jpg',800,720),
      new Array('','wadsworthlandscaping_home.jpg',800,667),
      new Array('','backyardtropics_home.jpg',800,629),
      new Array('','besttikis_home.jpg',800,733),
      new Array('','masonrysolutionsllc_home.jpg',800,672)
//      new Array('','riverrockch_home.jpg',800,632),
//      new Array('','rogersdevelopment_home.jpg',800,772),
//      new Array('','moslandscaping_home.jpg',800,844),
//      new Array('','paverstonedesigngroup9_home.jpg',800,720),
//      new Array('','fentonlandscape_home.jpg',800,720),
//      new Array('','vtpavers_home2.jpg',800,933),
//      new Array('','russellscapes_home.jpg',800,933),
//      new Array('','new-leaflandscapes_home.jpg',800,884),
//      new Array('','designoutdoor_home_2.jpg',800,845),
//      new Array('','jnl-enterprise_home_alt.jpg',800,933),
	)
  )
)

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; 

function showImageBig(number) {
  showImagePopup(scriptName,section,number,arImages[section][4][number][2],
   arImages[section][4][number][3]);
}

