/*************************************************************************
*
* ADOBE CONFIDENTIAL
* ___________________
*
*  Copyright 2010 Adobe Systems Incorporated
*  All Rights Reserved.
*
* NOTICE:  All information contained herein is, and remains
* the property of Adobe Systems Incorporated and its suppliers,
* if any.  The intellectual and technical concepts contained
* herein are proprietary to Adobe Systems Incorporated and its
* suppliers and are protected by trade secret or copyright law.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Adobe Systems Incorporated.
**************************************************************************/

var PREF_SECTION = "jQueryMobile\\Settings"; //Key to place all of our settings under.
var PREF_LINK_TYPE = "Link Type Index";     // whether to link to jQuery via CDN or locally
var PREF_LINK_REMOTE = 0;					//Index of remote link type radio button.
var PREF_LINK_LOCAL = 1;					//Index of local link type radio button.

//Local file preferences 
var PREF_JQ_JS_SRC = "PREF_JQ_JS_SRC";
var PREF_JQM_JS_SRC = "PREF_JQM_JS_SRC";
var PREF_JQM_CSS_SRC = "PREF_JQM_CSS_SRC";
var PREF_JQ_JS_DEST = "PREF_JQ_JS_DEST";
var PREF_JQM_JS_DEST = "PREF_JQM_JS_DEST";
var PREF_JQM_CSS_DEST = "PREF_JQM_CSS_DEST";
var PREF_JQLIB_SOURCE_FOLDER = "PREF_JQ_LIB_SOURCE";
var PREF_ICON_DIR = "PREF_ICON_DIR";

//Remote file preferences. 
var REMOTE_JQ = "REMOTE_JQ";
var REMOTE_JS = "REMOTE_JS";
var REMOTE_CSS = "REMOTE_CSS";
 
//Resource CDN strings
/** Remote */
var jqmJavascriptSource = "http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js";
var jqmJquerySource = "http://code.jquery.com/jquery-1.5.min.js";
var jqmCSSSource = "http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css";

/** Local */
var jqmDir = "jquery-mobile/";							//Directory all assets such be under.
var assetDir = "Third Party Source Code/" + jqmDir;		//Directory default assets are located (Relative to configuration).
var localJS = "jquery.mobile-1.0a3.min.js";
var localCSS = "jquery.mobile-1.0a3.min.css";
var localJQ = "jquery-1.5.min.js";
var localIconDir = "images/";

//For Page dialog.
var PREF_PAGE_HEADER = "PREF_PAGE_HEADER";
var PREF_PAGE_FOOTER = "PREF_PAGE_FOOTER";