// JavaScript Document

function imageSpecs( p_img, p_title, p_class ) {
  this.img = p_img;
  this.title = p_title;
  /* ***************************************************************************
   * p_name is optional
   * *************************************************************************** */
  this.classAttribute = (p_class === undefined)
                 ? ""
                 : (' class = "' + p_class + '"' );
  } // end function imageSpecs
  
/* *****************************************************************************
 * Sample code:
 
allImages[nextimage++] = new imageSpecs( 'file', 'title', 'class' );

 *
 * Replace these fields:
 *   'file' - full file specification 
 *   'title' - title to be displayed
 *             Make this empty quotes if a title is not to appear
 *   'class' - value to appear in the img tag class attribute quotes
 *             Not required
 * ***************************************************************************** */
  
var allImages = new Array();
var nextimage = 0;

allImages[nextimage++] = new imageSpecs( 'images/Chris 005 5x7 h200.jpg', '');
allImages[nextimage++] = new imageSpecs( 'images/Fireplace 004 5x7 h200.jpg', '');
allImages[nextimage++] = new imageSpecs( 'images/Toys and Furniture 029 5x7 h200.jpg', '');
allImages[nextimage++] = new imageSpecs( 'images/Toys and Furnture 5x7 h200.jpg', '');
// allImages[nextimage++] = new imageSpecs( 'images/January 2011 Upload 206 5x7 h200.jpg', '');
allImages[nextimage++] = new imageSpecs( 'images/Furniture 007 5x7 h200.jpg', '');
allImages[nextimage++] = new imageSpecs( 'images/Toys and Furniture 019 5x7 h200.jpg', '');
allImages[nextimage++] = new imageSpecs( 'images/Toys and Furniture 047 5x7 h200.jpg', '');
allImages[nextimage++] = new imageSpecs( 'images/Furniture 003 5x7 h200.jpg', '');


