/* SVN FILE: $Id: config.js 93 2009-01-08 19:32:31Z jleveille $ */
/**
 * Main configuration file
 * @filesource
 * @copyright		Copyright, Video On Location.
 * @version			$Rev: 93 $
 * @modifiedby		$LastChangedBy: jleveille $
 * @lastmodified	$Date: 2009-01-08 14:32:31 -0500 (Thu, 08 Jan 2009) $
 */

var g_config = {
	
	playerMode : 'l',                   //options include l (live) and a (archive)      
	skinPlayer : true,                  //Should the player be skinned (options include true/false)
										//NOTE: If the browser is IE6 or below the player will not be skinned, regardless of this setting
	chatEnabled : true,                 //Should chat be enabled (if the playermode is archived this setting will default to false)
	firstSlide : '001',
	lastSlide : '005',
	
	/****** configure player identity ******/
	logo : 'neaLogo.png',           //the filename of the logo image (this assumes the image is located in player-identity
	
	logoHeight : '38',
	logoWidth : '543',
	companyTitle : 'National Endowment for the Arts',
	bodyBackgroundColor : '#669ACC',    //this should be a valid html color (either hex or supported named color)
	bodyHasBackgroundImage : true,      //options include true/false
	backgroundImage : 'body.jpg',       //if bodyHasBackgroundImage this should be set to a valid image filename (this assumes the image is located in player-identity
									    //the assumption here is that the image will only repeat horizontally, along the x-axis
													
	headerLinkColor : '#669ACC',        //this should be a valid html color (either hex or support named color)
	footerLinkColor : '#174866',        //this should be a valid html color (either hex or support named color)
	player : 'dpvi',                     //dpvi (with slides) or dpv (without slides)
	/***************************************/
	
	/****** enable/disable sections ******/
	showAgenda : true,
	showVideo : true,
	showResources : false,
	showFooter : true,
	showHeaderNavBar : true,
	showPlayerNavBar : true,
	/***************************************/
	
	/****** Validate active session ******/
	sessionCheckActive : false,                         //this experimental feature is not yet active
	sessionCheckInterval : 	60 * 1000,				    //#seconds * 1000 = #milliseconds
	sessionCheckFile : 'php/valid-session.php',		    //the file used to query the database for a valid session
	sessionCheckRedirect : 'http://www.blueatlas.com',	//where to redirect the user if their session is no longer active
	/***************************************/
   
    /****** Getting the system time ******/
	timeCheckFile : 'time.php'
	/***************************************/
};

