/*
 * Simple Album
 * Copyright © 2007 Hawke AI
 *
 * JavaScript Configuration Module module
 *
 * Use the variables in this module to make the default settings
 * for Simple Album. All of the variables are commented and the suggested
 * default values are given. The values are sorted in the following areas.
 * 
 * 1. Directories
 * 2. Interface Settings
 * 3. Automation
 *
 */

// 1. Directories
/*  Define the subfolder that the assets are found in relative to the 
 *  path of the album file driving Simple Album.
 *  This variable is a string variable that takes a directory path.
 *  NOTE: This variable MUST contain the final slash!
 *  Default value: album_assets/
 */
	var assetDir = "media/";

/*  Define the subfolder that the album content (photos) are found in 
 *  relative to the  path of the album file driving Simple Album.
 *  This variable is a string variable that takes a directory path.
 *  NOTE: This variable MUST contain the final slash!
 *  Default value: album_content/
 */
	var contentDir = "album_content/";

/*  Define the subfolder that contains the image files to drive the skin
 *  relative to the  path of the album file driving Simple Album.
 *  This variable is a string variable that takes a directory path.
 *  NOTE: This variable MUST contain the final slash!
 *  Default value: album_assets/sadefault/images/
 */
	var skinDir = "images/album/";
/*************************[ End of Section ]****************************/

//2. Interface Settings
/*  Define how many thumbnails to display across the top of the page.
 *  This will change according to the skin you're using.
 *  This variable is an integer and takes a value minimum value of 1
 *  Default value: 6
 */
	var numThumbs = 5;

/*  Define how many thumbnails to display in the page index.
 *  This will change according to the skin you're using.
 *  This variable is an integer and takes a value minimum value of 1
 *  Default value: 24
 */
	var numGrid = 20;

/*  Define the border colors for the thumbnails when they are not rolled 
 *  over This should be changed according to the values of the skin you're 
 *  using.
 *  This variable takes a hexadecimal color code.
 *  Default: #FFFFFF;
 */
	var tnBorderColorNormal = "#FFFFFF";

/*  Define the border colors for the thumbnails when they are rolled 
 *  over This should be changed according to the values of the skin you're 
 *  using.
 *  This variable takes a hexadecimal color code.
 *  Default: #000000;
 */
	var tnBorderColorSelect =  "#000000";

/*  Define whether or not to write captions out. Note that if you do use this
 *  you MUST have a valid captions.txt file in your album content subfolder.
 *  See the user guide for more information.
 *  This variable is a boolean variable and only takes the values true or false.
 *  Default: false
 */
	var writeCapt = true;

/*************************[ End of Section ]****************************/

//3. Automation
/*  Set whether or not to automatically start the slide show feature of
 *  Simple Album. 
 *  This variable is a boolean variable and only takes the values true or false.
 *  Default: false
 */
	var ssAutostart = false;

/* Set the pause cycle between slides in seconds.
 * This takes an integer between 0 and 60
 * In order to disable the slideshow feature set this variable to 0
 * Default: 3
 */
 	var ssPause = 5;
/*************************[ End of Section ]****************************/

