

var parseSelector = $;
var agenda = { src: '/Flash/sifr/futura.swf' };

sIFR.useStyleCheck = true;

sIFR.activate(agenda);

redraw();
function redraw() {

    sIFR.replace(agenda, {
        selector: '#navigation span',
        css: [
            '.sIFR-root {  text-transform:uppercase; color:#FFFFFF; }',
            'a { text-decoration:none; color:#FFFFFF }',
            'a:hover { text-decoration:none; color:#8FB045 }'
            ],
        wmode: 'transparent',
        selectable: true
    });

    sIFR.replace(agenda, {
        selector: '.green h1, .green h2',
        css: '.sIFR-root {  text-transform:uppercase; color:#3a3a3a; }',
        wmode: 'transparent'
    });

    sIFR.replace(agenda, {
        selector: '.white h1, .white h2',
        css: '.sIFR-root {  text-transform:uppercase; color:#375590; }',
        wmode: 'transparent'
    });

    sIFR.replace(agenda, {
        selector: 'h1, h2',
        css: '.sIFR-root {  text-transform:uppercase; color:#FFFFFF;  }',
        wmode: 'transparent'
    });
    
}

