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

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

// 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(corbel, {
   selector: 'h1',
   css: [
      '.sIFR-root { color: #67c3e8; text-transform:uppercase; font-size:18px; width:380px; }',
   ],
   wmode:'transparent'
});
sIFR.replace(corbel, {
   selector: 'h2',
   css: [
      '.sIFR-root { color: #67c3e8; text-transform:uppercase; font-size:18px; margin-top:4px; margin-bottom:5px; width:250px; }',
   ],
   wmode:'transparent'
});


sIFR.replace(corbel, {
   selector: '.ac_itemdate',
   css: [
      '.sIFR-root { color: #ffffff; }'
   ],
   wmode:'transparent'
});

