/*
********************************************************************************
* 
* JS/CONFIG.JS
* Plore 2.0: System > Configuration
* 
* v1.0 (12012011)
* 
********************************************************************************
*/


/*
IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII
* 
* AUTO_TRANSITION_LINKS	: bool		> Use transitions between page links (anchor tags)
* DEF_PG				: string	> Default page name
* INPUT_AUTOCOMPLETE	: bool		> Input Elements: Prevent Autocomplete
* PG_BROWSE_ID			: string	> HTML ID of page browser (eg, site map)
* PG_CANVAS_ID			: string	> HTML ID of content background/canvas
* PG_FOOTER_ID			: string	> HTML ID of the standard page footer
* PG_HEADER_ID			: string	> HTML ID of the standard page header
* PG_INSIDE_ID			: string	> HTML ID of the middle content wrapper
* PG_MIDDLE_ID			: string	> HTML ID of the middle container
* PG_MYBODY_ID			: string	> HTML ID of the middle content
* SPLASH_ID				: string	> HTML ID of the "page transition" layer
* SPLASH_DELAY			: int		> Delay (in milliseconds) between page transitions
* MD_STOP_SCROLLING		: bool		> Mobile Device: Stop native scrolling behavior
* USE_DYNAMIC_SCROLL	: bool		> iScroll: Enable if possible
* INSTALL				: array		> List of external scripts to load sequentially before window.onload event
* 
IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII
*/
var __ =
{
	AUTO_TRANSITION_LINKS	: false,
	DEF_PG					: 'index',
	INPUT_AUTOCOMPLETE		: false,
	PG_BROWSE_ID			: '_browse',
	PG_CANVAS_ID			: '_canvas',
	PG_FOOTER_ID			: '_footer',
	PG_HEADER_ID			: '_header',
	PG_INSIDE_ID			: '_inside',
	PG_MIDDLE_ID			: '_middle',
	PG_MYBODY_ID			: '_mybody',
	SPLASH_ID				: '_splash',
	SPLASH_DELAY			: 500,
	MD_STOP_SCROLLING		: false,
	USE_DYNAMIC_SCROLL		: false,
	
	INSTALL : [
		'ext/md5.js',
		'ext/jQuery.js',
		'ext/iScroll.js',
		'lib/animator.js',
		'lib/base.js',
		'lib/browser.js',
		'lib/event.js',
		'lib/functions.js',
		'lib/mobile.js',
		'my.js'
		]
};

