		//Set the default Sitelife Production URL
		var slServerURL = "http://sitelife.gtowntimes.com";
		//Now override if we think this is the stage server
		if ((window.location.hostname == "dev.gtowntimes.com") || (window.location.hostname.indexOf('stage.gtowntimes.com') >= 0)) {
			slServerURL = "http://sitelifestage.gtowntimes.com";
		} 
		//This serverUrl is used in some widgets and DAAPI calls.  do not rename.
		var serverUrl =  slServerURL + "/ver1.0/Direct/Process";
		//This is just the sites hostname - used for some URLs in Discovery
		var lciGblSiteUrl =  "http://" + window.location.hostname;
		//This is your root relative path to the groups page - used in discovery
		var groupsPage =  "/community/groups.html";
		//This is the domain used for setting cookies (used for SLAUTH) 
		var cookieDomain = window.location.hostname.replace('www','');
		cookieDomain = window.location.hostname.replace('dev','');
		cookieDomain = window.location.hostname.replace('stage','');
		cookieDomain = window.location.hostname.replace('w3','');
		//This is the document.domain value - required for widgets.  This should be the root domain like for www.pluck.com it would be "pluck.com"
		var sDomain = window.location.hostname.replace('www.','');
		sDomain = window.location.hostname.replace('dev.','');
		sDomain = window.location.hostname.replace('stage.','');
		sDomain = window.location.hostname.replace('w3.','');
		//This is the login page root relative URL  - used on the persona page for redirects if user is not logged in
		var slLoginPage = "/user/login.html";