var bodoni = { src: '/Frameworks/Default/Scripts/SIFR3/bodoni_bold.swf' };
sIFR.activate(bodoni);
//if is without frames
if (parent == self) {
    sIFR.replace(bodoni, {
        selector: "h1, .Glossary h5",
        wmode: "transparent",
        css: ".sIFR-root {background-color: #ffffff; color: #000000;letter-spacing:0;}"
    });
    sIFR.replace(bodoni, {
        selector: "#RegionSecondaryContent h3, #RegionBottomPage h3",
        wmode: "transparent",
        zoom: 1.1,
        css: ".sIFR-root {text-align:center;background-color: #ffffff; color: #000000;}"
    });
   //else with frames (editmode) 
}else{            
    setTimeout(function() {
        sIFR.replace(bodoni, {
            selector: 'h1, .Glossary h5',
            wmode: 'transparent',
            css: '.sIFR-root {background-color: #ffffff; color: #000000;letter-spacing:0;}'
        });
        sIFR.replace(bodoni, {
            selector: '#RegionSecondaryContent h3, #RegionBottomPage h3',
            wmode: 'transparent',
            zoom: 1.1,
            css: '.sIFR-root {text-align:center;background-color: #ffffff; color: #000000;}'
        });

        //}
    }, 1500);
}
