/*****************************************************************************
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 trajanPro = { src: '/trajan-pro.swf' };

// sIFR.useStyleCheck = true;

// activate sIFR:
sIFR.activate(trajanPro);

// The first argument you see here is `selector`, which is a normal CSS selector.
// That means you can also do things like '#content h1' or 'h1.title'.
// The second argument determines what the Flash text looks like. The main text
// is styled via the `.sIFR-root` class.
sIFR.replace(trajanPro, {
  selector: 'h1',
  css: '.sIFR-root { color: #c02427; }',
  wmode: 'transparent'
});
/*sIFR.replace(trajanPro, {
  selector: 'h2',
  css: '.sIFR-root { color: #c02427; }',
  wmode: 'transparent'
});*/

/*sIFR.replace(trajanPro, {
  selector: 'li.news-item',
  css: '.sIFR-root { color: #ffffff;}',
  wmode: 'transparent'
});
*/

