
smallSizes = new Array(77,77);
mediumSizes = new Array(200,170);
pageName = 'aquascapes_photos.htm';
scriptName = 'aquascapes_photos.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('Serious Water Enthusiast','images/portfolio/small/','images/portfolio/medium/','images/portfolio/big/',
    new Array(
new Array('Photo 1','serwater_brown_lg.jpg',450,393),
new Array('Photo 2','serwater_gustaf2_lg.jpg',450,309),
new Array('Photo 3','serwater_gustaf_lg.jpg',450,283),
new Array('Photo 4','serwater_loizeau_lg.jpg',450,235),
new Array('Photo 5','serwater_lowenthal_lg.jpg',450,479),
new Array('Photo 6','serwater_roberts_lg.jpg',450,325),
new Array('Photo 7','serwater_vella_lg.jpg',500,245)
    ),'Serious water gardening enthusiasts are aiming to bring Mother Nature into their backyards. They`ve always loved babbling water cascading from a waterfall. They`ve always loved fish, turtles, frogs, and toads. There is a hale and hardy outdoor adventurer, a little Norman Rockwell, Tom Sawyer, and Huckleberry Finn lurking beneath the surface of every serious water gardening enthusiast that`s just waiting to be expressed.<br><b>Price range $6,000.00 to $8,000.00</b><br>Includes a Aquascape Pond System, plants and lights for in the pond. This does not include any landscaping outside of the pond. One year warranty on labor and materials is included.'
  ),

  new Array('Advanced Water Enthusiast','images/portfolio/small/','images/portfolio/medium/','images/portfolio/big/',
    new Array(
new Array('Photo 1','adwater_bertelson_lg.jpg',400,406),
new Array('Photo 2','adwater_lally_lg.jpg',500,259),
new Array('Photo 3','adwater_latour_lg.jpg',450,239),
new Array('Photo 4','adwater_mcneil_lg.jpg',450,241)
    ), 'Advanced water gardening enthusiasts have more techno stress in their lives. Advanced enthusiasts usually start and end the day mired in rush hour traffic. They spend their days in a "work a day" world that`s growing more and more technologically oriented. Their challenges and frustrations come in the form of computers, emails, faxes, pagers, and cell phones. Their problems are measured in giga-bytes and RAM. And they can hardly wait to escape from the techno grind at the end of their day.<br><b>Price range $8,500.00 to $16,000.00.</b><br>Includes a Aquascape Pond System, plants and lights for in the pond. This does not include any landscaping outside of the pond. One year warranty on labor and materials is included.'
  ),

  new Array('Extreme Water Enthusiast','images/portfolio/small/','images/portfolio/medium/','images/portfolio/big/',
    new Array(
new Array('Photo 1','exwater_2lg.jpg',450,308),
new Array('Photo 2','exwater_3lg.jpg',450,312),
new Array('Photo 3','exwater_4lg.jpg',450,300),
new Array('Photo 4','exwater_5lg.jpg',450,248),
new Array('Photo 5','exwater_6lg.jpg',450,248),
new Array('Photo 6','exwater_7lg.jpg',450,300)
    ), 'Extreme water gardening enthusiasts can best be characterized as people who know that they want to make water a central part of their lifestyle. This category of enthusiast has always dreamed of having a home on the lake, their property currently lacks water, and they are determined to have their dream... in a big way.<br><b>Price range $16,000.00 & above.</b><br>Includes a Aquascape Pond System, plants and lights for in the pond. This does not include any landscaping outside of the pond. One year warranty on labor and materials is included.'
  ),

  new Array('Waterfalls & Streams','images/portfolio/small/','images/portfolio/medium/','images/portfolio/big/',
    new Array(
new Array('Photo 1','waterfall_1.jpg',300,210),
new Array('Photo 2','waterfall_2.jpg',450,325),
new Array('Photo 3','waterfall_3lg.jpg',500,333),
new Array('Photo 4','waterfall_4lg.jpg',500,276),
new Array('Photo 5','waterfall_5lg.jpg',500,333),
new Array('Photo 6','waterfall_6lg.jpg',397,489),
new Array('Photo 7','waterfall_7lg.jpg',450,390)
    )
  )

)

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]);
}

