//<![CDATA[
$(document).ready(function () {
	Global.init();
}); 
var Global = 
{
	init: function () {
		this.doSIFR();
	}
	,
	doSIFR: function () {
		if (typeof sIFR == "function")
		{
            if (requiredSIFRColour == undefined)
            {
                requiredSIFRColour = '#E27329';
            }
            
            //French characters need to use impact, poplar does not implement
            //all special characters and accents
            var requiredFlashSource = "../flash/poplar_all.swf";
            
            if (currentLocale.toUpperCase() == "FR-CA") {
                requiredFlashSource = "../flash/impact_all.swf";
            }
            
			var Header = named({
			    //TODO: switch depending on your locale (fr is impact, en is poplar)
			    sFlashSrc:  requiredFlashSource,				
				sColor:		requiredSIFRColour,
				sCase: "upper",
				sWmode: "transparent",
				sFlashVars:	""
			});
			var HeaderSm = named({
				sFlashSrc:	"../flash/stoneSans_all.swf",
				sColor:		requiredSIFRColour,
				sWmode: "transparent",
				sFlashVars:	""
			});
			// replace elements
			//sIFR.forceWidths = true;
			sIFR.replaceElement('#page #contentCol h1', Header);
			sIFR.replaceElement('#page #contentCol h2', HeaderSm);
			sIFR.replaceElement('#page #contentCol h4', HeaderSm);
		};
	}
}	

function  trackFlashVisits(weboSection, weboSubsection, weboSite, reddionPID) {
   return false;
}

//]]>
