/*****************************************************************************
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 rockwell = { src: '/gfx/rockwell.swf' };
var myriad = { src: '/gfx/myriad.swf' };
var castellar = { src: '/gfx/castellar.swf' };

// Remember, there must be *only one* `sIFR.activate()`!
sIFR.activate(castellar, rockwell, myriad);

// selector, css and wmode are not the only available properties.
// For the full list, see "Keyword arguments" at
// <http://wiki.novemberborn.net/sifr3/JavaScript+Methods>.
// Read more about styling at <http://wiki.novemberborn.net/sifr3/Styling>.
// See also <http://wiki.novemberborn.net/sifr3/JavaScript+Configuration>.
sIFR.replace(castellar, {
   selector: 'h1',
   css: [
      '.sIFR-root { color: #D54317; }',
      '.sIFR-root a { color:#D54317; text-decoration:none; } ',
      '.sIFR-root a:hover { text-decoration:underline; } '
   ],
   wmode:'transparent'
});
sIFR.replace(castellar, {
   selector: '.ac_itemdate',
   css: [
      '.sIFR-root { color: #ffffff; }'
   ],
   wmode:'transparent'
});
sIFR.replace(castellar, {
   selector: '.sifr_link',
   css: [
      '.sIFR-root { color: #D54317;font-size:13px; text-transform:uppercase;position:relative;}',
      '.sIFR-root a { color:#dedede; text-decoration:none; } ',
      '.sIFR-root a:hover { color:#D54317; text-decoration:underline; } ',
      '.sIFR-root .active { color:#D54317; } '
   ],
   wmode:'transparent'
});


