//rename 'fontname' to the correct font e.g. arial, helvetica...
var akzidenz = { 
    src: 'flash/akzidenz.swf'
    , ratios:[7, 1.46, 12, 1.36, 21, 1.3, 36, 1.26, 37, 1.24, 38, 1.25, 53, 1.24, 56, 1.23, 57, 1.24, 96, 1.23, 98, 1.22, 101, 1.23, 103, 1.22, 104, 1.23, 112, 1.22, 113, 1.23, 1.22]
};



//First get the correct ratios for the font and paste them above
sIFR.activate( akzidenz);
//sIFR.debug.ratios({ src: 'flash/akzidenz.swf', selector: 'h1' });
//when ratios are in place, remember to comment out the debug line above, and uncomment the line below


//-- SOME EXAMPLES IN ORDER TO IMPLEMENT SIFR3 ------------------------------------------------

sIFR.replace(akzidenz, {
    selector: 'h1',
    css: [
      '.sIFR-root { font-size:20px; color:#9c9d9f; text-align: left; font-weight: bold; }'
    ]
    ,wmode:'transparent'
    
});
sIFR.replace(akzidenz, {
    selector: 'h2',
    css: [
      '.sIFR-root { font-size:16px; color:#9c9d9f; text-align: left; font-weight: bold; }'
    ]
    ,wmode:'transparent'
    

});
sIFR.replace(akzidenz, {
    selector: 'h3',
    css: [
      '.sIFR-root { font-size:16px; color:#9c9d9f; text-align: left; font-weight: bold; }'
    ]
    ,wmode:'transparent'
    

});
sIFR.replace(akzidenz, {
    selector: 'h4',
    css: [
      '.sIFR-root { font-size:16px; color:#9c9d9f; text-align: left; font-weight: bold; }'
    ]
    ,wmode:'transparent'
    
});

function sifrReplace(){
    sIFR.replace(akzidenz, {
        selector: 'h2',
        css: [
          '.sIFR-root { font-size:16px; color:#9c9d9f; text-align: left; font-weight: bold; }'
        ]
        ,wmode:'transparent'

    });
}
/*
sIFR.replace(fontname, {
    selector: 'span.link',
    css: [
      '.sIFR-root { color:#737577; text-align:left; font-weight: normal; }'
      ,'a { color:#737577!important; text-decoration: none; }'
      ,'a:link { color: #737577; }'
      ,'a:hover { color: #00a6d6;}'  
    ]
    ,wmode:'transparent'
    ,forceSingleLine:true
});
*/