
smallSizes = new Array(50,50);
mediumSizes = new Array(251,170);
pageName = 'sonorastone_cap.htm';
scriptName = 'sonorastone_cap.js';
countX = 3;
countY = 4;

var arImages = new Array(
  new Array('Sonorastone Wall Cap','images/sonorastone_cap/small/','images/sonorastone_cap/medium/','images/sonorastone_cap/big/',
    new Array(
      new Array('','DSC_0007.jpg',598,400,'images/profile/sonorastone_cap/Sonora-End.gif','Sonorastone&reg; Peaked Wall Cap','Playa Vista Apartment Complex','Mortar Set','Straights, Ends','','Porcelain','Sonorastone&reg;'),
      new Array('','DSCN0809.jpg',533,400,'images/profile/sonorastone_cap/Straight.gif','Sonorastone&reg; Peaked Wall Cap','Southern California Residence','Mortar Set','Straights','','Agave Verde','Sonorastone&reg;'),
      new Array('','Sonoracap-Lafayette-26.jpg',533,400,'images/profile/sonorastone_cap/Straight.gif','Sonorastone&reg; Peaked Wall Cap','Lafayette, Northern CA','Mortar Set','Straights, Corners','','Wheat','Sonorastone&reg;'),
      new Array('','DSC_0029-sat-histogram.jpg',535,400,'images/profile/sonorastone_cap/Straight-Corner.gif','Sonorastone&reg; Flat Wall Cap','Product Photograph','Mortar Set','Straights, Corners, Radius Components','','Kahlua','Sonorastone&reg;'),


      new Array('','DSC_0153 Edited2.jpg',598,400,'images/profile/sonorastone_cap/Sonora-End.gif','Sonorastone&reg; Wall Cap','Product Photograph','Mortar Set','Straights, Ends, Corners, Peaked Pilaster Caps & Flat Pilaster Caps','','Wheat','Slate'),
      new Array('','DSCN0856 edited.jpg',507,400,'images/profile/sonorastone_cap/Sonora-End.gif','Sonorastone&reg; Wall Cap','Residence in San Pedro, CA','Mortar Set','Straights, Ends, Corners, Peaked Pilaster Caps & Flat Pilaster Caps','','Agave Verde','Slate'),
      new Array('','DSCN0695.jpg',300,400,'images/profile/sonorastone_cap/Sonora-End.gif','Sonorastone&reg; Wall Cap','Residence in San Pedro, CA','Mortar Set','Straights, Ends & Corners','','Agave Verde','Slate'),
      new Array('','Sonorastone After.jpg',549,400,'images/profile/sonorastone_cap/Sonora-End.gif','Sonorastone&reg; Wall Cap','Southern California Residence','Mortar Set','Straights & Ends','','Agave Verde','Slate')
    )
  )
)

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 showProfileNew(ind) {
  width = arImages[section][4][ind][2]+300;
  height = arImages[section][4][ind][3]+150;
  win = window.open('profile_popup.htm?script='+scriptName+'&section='+section
	+'&ind='+ind,'_blank','width='+width+',height='
	+height+',left=17,top=17,statusbar=no,toolbar=no,scrollbars= never,navbar=no');
  win.focus();
}
