/*****************************************************************************
It is adviced to place the sIFR JavaScript calls in this file, keeping it
separate from the `sifr.js` file. That way, you can easily swap the `sifr.js`
file for a new version, while keeping the configuration.
You must load this file *after* loading `sifr.js`.
That said, you're of course free to merge the JavaScript files. Just make sure
the copyright statement in `sifr.js` is kept intact.
*****************************************************************************/
// Make an object pointing to the location of the Flash movie on your web server.
var franklinGothic = { src: '/assets/scripts/franklinGothic.swf' };
// sIFR.useStyleCheck = true;
// Next, activate sIFR:
sIFR.activate(franklinGothic);
// Now we can do the replacements. 
sIFR.replace(franklinGothic, {
  selector: 'h1',
  css: '.sIFR-root { color: #002678; }',
  wmode: 'transparent'
});
sIFR.replace(franklinGothic, {
  selector: 'h1',
  css: '.sIFR-root { font-size: 3.4em; line-height: 120%; margin: 12px 0px 0px 0px; color: #002678; }',
  wmode: 'transparent'
  });
sIFR.replace(franklinGothic, {
    selector: 'h2',
    css: ['.sIFR-root { font-size: 1.8em; line-height: 150%; font-weight:normal; color:#002678; }',
   '.sIFR-root a {color: #002678; text-decoration:none;}',
   '.sIFR-root a:hover { color: #002678; }'],
    wmode: 'transparent'
});
sIFR.replace(franklinGothic, {
    selector: '#HeadlineTitle',
    css: '.sIFR-root { font-size: 3.4em; line-height: 120%; margin: 12px 0px 0px 0px; color: #002678; }',
    wmode: 'transparent'
});
