﻿var GothamBold = {
  src: '/cms_ch/assets/flash/sIFR/GothamBold.swf',
  wmode: 'transparent'
};
sIFR.fitExactly = true;
sIFR.activate(GothamBold);

var nonbreaking_hyphen = function(str) {
    str=str.replace(/‑/g,'-') ;
    return str ;
}

sIFR.replace(GothamBold, {
	selector: 'h2',
	css: [
	'.sIFR-root { color: #E41122; }'
	],
    modifyContentString: nonbreaking_hyphen
	}
);
sIFR.replace(GothamBold, {
	selector: 'h3',
	css: [
	'.sIFR-root { color: #666666; }'
	],
    modifyContentString: nonbreaking_hyphen
	}
);
sIFR.replace(GothamBold, {
	selector: '.box_gradient h4',
	css: [
	'.sIFR-root { color: #666666; }'
	],
    modifyContentString: nonbreaking_hyphen
	}
);
sIFR.replace(GothamBold, {
	selector: 'p.SpecialFont',
	css: [
	'.sIFR-root { color: #666666; }'
	],
    modifyContentString: nonbreaking_hyphen
	}
);
