 /*
 * the purpose of these functions is to route all page onload events through setPage()
 * these are the only loose js functions on the site
 * this page should be considered the post-load equivalent of the bootstrapper
 */

//"constants"
var ACT_SHOWPOLL = 'showpoll'; // followup action for call to get poll
var DEF_ACCTINFOPATH = 'etc/process_userlookup.php';
var DEF_ACCTMAINTPATH = 'etc/process_regmaint.php';
var DEF_BADWORDPATH = 'badwords.js';
var DEF_CTRLCOVER = 'div-ctrlcover';
var DEF_CTRLDIALOG = 'div-ctrldialog';
var DEF_CNTRYLISTPATH = 'countrylist.js';
var DEF_GAMELIST = 'games.js';
var DEF_GALLERYCAT = 'fa08';
var DEF_GALLERYSEASON = 'jingleball08';
var DEF_HOMEVIDEOPATH = 'video_homepage.js';
var DEF_INTRFCELANGPATH = 'lang_interface.js';
var DEF_LANGCOOKIE = 'moxiegirlzlang'; // default name of skin cookie
var DEF_LANGLISTPATH = 'site_countries.js';
var DEF_PRODCAT = 'core';
//var DEF_LOGINPATH = '/giselle/branch/bfcink/etc/process_auth.php';
var DEF_LOGINPATH = '?request=login';
var DEF_PRODSEASON = 'fa09';
/* modify this */
var DEF_PUBPATH = 'pub/';

var DEF_QUIZLOGPATH = 'etc/process_quizlog.php';
var DEF_QUIZPATH = 'quiz.js';
var DEF_REGPATH = 'etc/process_reg.php';
var DEF_SKINCOOKIE = 'bratzskin'; // default name of skin cookie
var DEF_SKINPATH = 'skins.js';
var DEF_STATELISTPATH = 'statelist.js';
var DEF_TIMEPATH = 'configs/time.php';
var DOM_HOMEPOLLID = 'div-poll'; // id of the homepage poll div
var IMG_AJAXLOAD = '<img src="images/common/ajaxloading.gif" width="100" height="100" />'; // preloader image for ajax calls
var IMG_PRELDR = 'images/common/imgloading.gif'; // preloader image for gallery preloader
var KEY_CATEGORY = 'category'; // ?category=
var KEY_GALLERY = 'gallery';
var KEY_HOMEPOLL = '5';
var KEY_IMG = 'img';
var KEY_INVCODE = 'invite_code'; // ?invite_code=
var KEY_LANGCOOKIE = 'moxiegirlzlang'; // name of site's lang cookie
var KEY_SEASON = 'season'; // ?seasion=
var KEY_SECT = 'section'; // ?section=
var KEY_VIDEO = 'video';
var RGX_LANG = /_lang_/;
var SW_HOME = 'home'; // switch to process homepage
var SW_PROD = 'moxieproductgallery'; // switch to process prod gallery
var SW_PRODLANDING = 'productlanding';
var SW_PRODWTB = 'productwtb';
var SW_FANCLUB = 'fclanding';
var SW_GAME = 'game';
var SW_GAMELANDING = 'gamelanding';
var SW_FCEXCLUSIVES = 'fcexclusives';
var SW_PBLANDING = 'pblanding';
var SW_PBBIOS = 'pbbios';
var SW_PBDOWNLOADS = 'pbdownloads';
var SW_TUNESTV = 'tunestvlanding';
var SW_BEAT = 'beatbox';
var SW_PBBLOG = 'pbblog';
var SW_PBQUIZ = 'pbquiz';
var SW_GALLERY = 'gallery';
var URL_POLLPHP = 'etc/process_poll.php'; // location of poll processor page
var URL_POLLDEFS = 'pub/_lang_/poll_defs.js'; // location of poll defs
var URLPATH = 'http://localhost/giselle/branch/bfcink';

var s_interfacelangpath = "pub/en-us/lang_interface.js";
var s_langlistpath = "pub/site_countries.js";
var s_skinlistpath = "pub/en-us/skins.js";
var s_langcode = "en-us";

// globals
var o_acctutil;
var o_anim;
var o_gallery;
var o_cookie;
var o_form;
var o_intrfcereq;
var o_jwplayer;
var o_langreq;
var o_menuutil;
var o_pollreq;
var o_polldisp;
var o_styleutil;
var o_util;
var o_quiz;
var s_langcode;
var s_section;
var o_gamelang;

