/* 
 * Execute the sIFR replace statements after the document has loaded
 */

Event.observe(window, 'load', applySIFR);

function applySIFR()
{
    sIFR.replaceElement(
        "h1.foundry", named({
                sFlashSrc: "/sifr_fonts/foundry-regular.swf",
                sColor: "#c0340d"
            }));

    sIFR.replaceElement(
        ".block h3", named({
                sFlashSrc: "/sifr_fonts/foundry-regular.swf",
                sColor: "#c0340d",
                sCase: "upper"
            }));
}