/*****************************************************************************
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 bookman = { src: '/includes/bookman.swf' };
var helvetica = { src: '/includes/helvetica_condensed.swf' };


sIFR.activate(bookman, helvetica);


sIFR.replace(bookman, {
      selector: 'h1.title'
    , wmode: 'transparent' 
    ,css: [
        '.sIFR-root { color: #ffdf6e; text-align: left; }',
        'a {color: #ffdf6e; text-decoration: none;}',
        'a:hover {color: #ffdf6e; text-decoration: none;}'
      ]
});


sIFR.replace(bookman, {
      selector: 'h3.news_link'
    , wmode: 'transparent' 
    ,css: [
        '.sIFR-root { color: #ffdf6e; text-align: left; margin: 0px; padding: 0px; }',
        'a {color: #fcedbb; text-decoration: none;}',
        'a:hover {color: #f6d358; text-decoration: none;}'
      ]
});







sIFR.replace(helvetica, {
      selector: '#text h2'
    , wmode: 'transparent' 
    ,css: [
        '.sIFR-root { color: #ffffff; font-size: 16px; }',
        'a {color: #ffdf6e; text-decoration: none;}',
        'a:hover {color: #ffdf6e; text-decoration: underline;}'
      ]
});


sIFR.replace(helvetica, {
      selector: '#leftColumn h2'
    , wmode: 'transparent' 
    ,css: [
        '.sIFR-root { color: #a3a3a3; font-size: 16px; }',
        'a {color: #a3a3a3; text-decoration: none;}',
        'a:hover {color: #a3a3a3; text-decoration: underline;}'
      ]
});


sIFR.replace(helvetica, {
      selector: 'h3'
    , wmode: 'transparent' 
    ,css: [
        '.sIFR-root { color: #ffffff; font-size: 14px; }',
        'a {color: #ffdf6e; text-decoration: none;}',
        'a:hover {color: #ffdf6e; text-decoration: underline;}'
      ]
});





