

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Codewise Presentation Manager - Global Script File, 
	Grooster Canada Inc.

Copyright (c) 2004-2011 Codewise Systems Inc. & Twisted Lime Media Inc. 
All rights reserved.

Created: 2010-03-14

Revision History:
  1.00	- Initial version. TB, 2010-03-14, 15:38

To Do List:
	- hours for week 8: 2 on Wednesday, researching the page bg 
		thing;
	- re-implement the GCI2_pI_restyleDealWidget function?
	- display of expired and maxed-out state of the main deal and
		the featured deal, particaularly the image overlays
	- additional IE6 support?
	- full width pages?
	- verify print version
	- second subscribe form (think button images/background image
		sprites) & look of home page
	- style the CKEditor?
	- meta tag content?
	- new Blogger template
	- ?

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Misc redeclared variables */

siteTitle = 'Grooster Canada Inc., v2';
skinPreference = 'gci2';
sSPEJSV = '1-00';
sSIPSJSV = 'n\/a';
sSLCSSV = '1-00';
sSPCSSV = '1-00';
fJSV = 'n\/a';

copyrightYear = '2011';
QuickTimeDetection = 0;

masterCookieDomain = '.grooster.com';
liveServerName = 'http:\/\/www.grooster.com';

	if (location.href.indexOf('https:\/\/') != -1) {
		liveServerName = 'https:\/\/www.grooster.com';;
	};

webServerName = liveServerName;


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Misc new variables */

var commentsHeadingPrependText = 'Talk About This Offer';
var currentCity = 'Vancouver';

var hoursPerDay = 24;
var minutesPerHour = 60;
var secondsPerMinute = 60;
var millisecondsPerSecond = 1000;

var dealExpiresContentDisplaySwitch = 1;
var dealExpiresCountdown_time_duration = 0;
var dealExpiresCountdown_time_remaining = 0;
var dealExpiresCountdown_pie_image_count = 61;
var dealExpiresCountdown_pie_images = new Array;
var dealExpiresCountdown_days = 0;
var dealExpiresCountdown_hours = 0;
var dealExpiresCountdown_minutes = 0;
var dealExpiresCountdown_seconds = 0;
var dealExpiresTimer = '';

var dealDollarAmountsTruncated = 1;
var dealId = 0;
var dealTipped = 0;
var dealJSONData = '';
var dealJSONDataInterval = 30000;
var dealJSONDataParsed = '';
var dealJSONDataTimer = '';
var dealStatusText = '';

var displayOtherCitiesMenu = 1;

var emailAddressRegExp = /^.+@.+\..{2,4}$/;

var subscribeLabelText = '';
var subscribeEmailFieldText = 'Enter your email address...';
var subscribeEmailErrorText = 'Please enter a valid email address:';
var subscribeLinkText = 'Send me what\u0027s new!';
var subscribeLinkTextSubscribed = 'Thanks for joining us!';

var primaryNavItems = new Array;
var utilityNavItems = new Array;

var makeCommentsExpandOMatic = 1;
var menuLoader = '';
var menuLoaderForced = 0;

var pageBackgroundDisplaySwitch = 1;
var pageBackgroundChooserDisplaySwitch = 1;

var bg_imagesText01 = 'Use as background';
	var bg_imagesText01a = 'Make the selected background image your preferred background image';
var bg_imagesText02 = 'Reset background';
	var bg_imagesText02a = 'Clear your background image preference, and reset it to the default';
var bg_imagesText03 = 'Cancel';
	var bg_imagesText03a = '';
var bg_defaultimage = ''; // Default background image, as set by the server
var bg_imagesIndex = ''; // Pointer into the array of background images
var bg_imagesCount = 0; // The number of background images
var bg_imagesCurrent = ''; // Pointer to the currently visible background image

var bg_images = {
	'2' : {
		'desc' : '<div class="photoDescription"><p><em>I wish I was ocean-sized <br \/>They cannot move you, man <br \/>No one tries<\/em><\/p><\/div><div class="photoCopyright"><p class="rightAlignedText">lyrics by Jane&#39;s Addiction<br \/> &copy; 1988 \u00b7 all rights reserved<\/p><\/div>',
		'path' : 'media\/images\/sample_page_bg_01_@70.jpg',
		'path_thumb' : 'media\/images\/sample_page_bg_01_@70_thumb.jpg',
		'path_alt' : ''
	},

	'5' : {
		'desc' : '<div class="photoDescription"><p>Grilled prawns from <a class="external" href="http:\/\/sharewinebar.com" target="_blank" title=" Link opens in a new window\/tab... ">Share Wine Bar<\/a> in beautiful White Rock, BC. We are featuring share plates to enjoy among friends, and wine &#8212; <em>and beer and spirits, of&nbsp;course<\/em> &#8212; to accompany...<\/p><\/div><div class="photoCopyright"><p class="rightAlignedText">photo by Travis Bolander<br \/> &copy; 2011 \u00b7 all rights reserved<\/p><\/div>',
		'path' : 'media\/images\/sample_page_bg_02_@70.jpg',
		'path_thumb' : 'media\/images\/sample_page_bg_02_@70_thumb.jpg',
		'path_alt' : 'media\/images\/sample_page_bg_02_alt_@70.jpg'
	},

	'7' : {
		'desc' : '<div class="photoDescription"><p>Sunset at Kits Beach, <br \/>July 11th, 2007<\/p><\/div><div class="photoCopyright"><p class="rightAlignedText"> photo by Travis Bolander<br \/> &copy; 2007 \u00b7 all rights reserved<\/p><\/div>',
		'path' : 'media\/images\/sample_page_bg_03_@70.jpg',
		'path_thumb' : 'media\/images\/sample_page_bg_03_@70_thumb.jpg',
		'path_alt' : ''
	}
};


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Debugging */

dMsg += 'The ' + sSFN + 'gci2_global.js script has been loaded|';
// alert('The ' + sSFN + 'gci2_global.js script has been loaded|');


