function execSiteCatalyst() {
	s.pageName=document.title;//name of current page
	s.server="";//server ID if app is distributed
	s.channel="NM/learning-center/studies-and-reports/american-reality-study";//site section
	s.hier2="NM/learning-center/studies-and-reports/american-reality-study";
	s.pageType="";//set to errorPage on custom error pages
	s.prop1="";//search term
	s.prop2="";//# search results
	s.prop3="";//self-service type
	s.prop4="Optimism Barometer";//tool name
	s.prop5="";//user ID
	s.prop6="";//client status
	s.prop7="";//time parting hour (automatically set)
	s.prop8="";//time parting day (automatically set)
	s.prop9="";//application ID
	/* Conversion Variables */
	s.campaign="";//set manually or automatically set when cmpid param is in query string
	s.state="";
	s.zip="";
	s.events="";//set to event6 for application start, event7 for application complete.  prop9 must have the same value on both the start and complete page
	s.products="";
	s.purchaseID="";
	s.eVar1="";//automatically set
	s.eVar2="";//automatically set
	s.eVar3="";//automatically set
	s.eVar4="";//automatically set
	s.eVar5="";//automatically set
	s.eVar6="";//automatically set
	s.eVar7="";//automatically set
	s.eVar8="";//automatically set
	s.eVar9="";//automatically set
	
	try {
		s.t();
	} catch (err) {
	     //do nothing
	}
}

execSiteCatalyst();//run immediately, may cause problems if DOM readiness is required to set SiteCatalyst variables (ex: you need to use document.getElementByID())
//window.onload = execSiteCatalyst;//run when page is done loading (DOM is ready), may conflict with other javascript using this event

