/*****************************************************************************
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.
// Try using the font name as the variable name, makes it easy to remember which
// object you're using. As an example in this file, we'll use Futura.
var avian = { src: 'avian.swf' };
var helios = { src: 'helios.swf' };

sIFR.activate(avian,helios);

//<h2 class="avian-blue">COMPANY PROFILE</h2>
sIFR.replace(avian, {
  selector: 'h2.avian-blue',
  css: '.sIFR-root { color: #95bbbc; }',
  wmode: 'transparent'
});

//<h3 class="helios-grey">WELCOME TO OUR COMPANY WEBSITE</h3>
sIFR.replace(helios, {
  selector: 'h3.helios-grey',
  css: '.sIFR-root { color: #b9b9b9; }',
  wmode: 'transparent'
});

//<h3 class="helios-grey">WELCOME TO OUR COMPANY WEBSITE</h3>
sIFR.replace(helios, {
  selector: 'h4.helios-grey',
  css: '.sIFR-root { color: #b9b9b9; }',
  wmode: 'transparent'
});

//<h3 class="helios-white">Toll Free: 888.613.8789</h3>
sIFR.replace(helios, {
  selector: 'h3.helios-white',
  css: '.sIFR-root { color: #ffffff; }',
  wmode: 'transparent'
});

//<h4 class="helios-white-small">20491 Warden Avenue, Queensville</h4>
sIFR.replace(helios, {
  selector: 'h4.helios-white-small',
  css: '.sIFR-root { color: #ffffff; }',
  wmode: 'transparent'
});
