/*****************************************************************************
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.
*****************************************************************************/

var stencil = { src: 'stencil.swf' };
sIFR.activate(stencil);

//<h2 class="title">INDUSTRIAL SAFETY TRAINERS</h2>
sIFR.replace(stencil, {
  selector: 'h2.title',
  css: '.sIFR-root { color: #000000; }',
  wmode: 'transparent'
});

sIFR.replace(stencil, {
  selector: 'h2.title-t-margin',
  css: '.sIFR-root { color: #000000; }',
  wmode: 'transparent'
});

//<h2 class="title-red">FREE STUFF</h2>
sIFR.replace(stencil, {
  selector: 'h2.title-red',
  css: '.sIFR-root { color: #e82518; }',
  wmode: 'transparent'
});

//<h2 class="ssc">Sales & Support Call</h2>
sIFR.replace(stencil, {
  selector: 'h2.ssc',
  css: '.sIFR-root { color: #000000; }',
  wmode: 'transparent'
});

//<h2 class="phone">1-800-219-8660</h2>
sIFR.replace(stencil, {
  selector: 'h2.phone',
  css: '.sIFR-root { color: #000000; }',
  wmode: 'transparent'
});

