// ----------- Configuration Parameters --------------

/* Directory where the photos are stored */
var photoDir = '/images/gallery/';

/* Directory where the photo xml is stored*/
var xmlDir = '/includes/xml/';

/* Directory where the thumbnail photos are stored. */
var thumbDir = '/images/gallery/';

/* Prefix of thumbnails. */
var thumbPrefix = 'sm_';

/* Prefix of the pictures. */
var photoPrefix = 'lg_';

/*  File extension of the pictures. */
var photoExtension = '.jpg';

/* The xml file that has the names and descriptions of the photos */
var fileName = "photos.xml"; 

/* How many photos will be displayed per row. */
var maxPhotosPerRow = 4;

/* How many albums will be displayed per row. */
var maxAlbumsPerRow = 3;

/* How many rows will be displayed per page. */
var maxRowsPerPage = 100;