﻿var font;
function initialiseFonts() {
    font = { src: '/_template/swf/sifr.swf' };
    sIFR.activate(font);
    sIFR.bHideBrowserText = true;
}
function replaceFonts() {
    sIFR.replace(font, {
        selector: 'h1',
        css: '.sIFR-root { color: #570758; text-align:center; font-size:30px; margin-bottom:10px; }',
        wmode: 'transparent',
        selectable: true
    });

    sIFR.replace(font, {
        selector: 'h3',
        css: '.sIFR-root { color: #570758; font-size:20px; }',
        wmode: 'transparent',
        selectable: true
    });
}
initialiseFonts();
replaceFonts();


