//rename 'fontname' to the correct font e.g. arial, helvetica...
var adobe_clean = { 
    src: 'flash/adobe_clean.swf'
    , ratios:[9, 1.05, 11, 1, 16, 1.05, 22, 1.09, 29, 1.11, 34, 1.12, 39, 1.13, 50, 1.14, 67, 1.15, 68, 1.16, 72, 1.15, 117, 1.16, 118, 1.17, 123, 1.16, 124, 1.17, 1.16]
};



//First get the correct ratios for the font and paste them above
sIFR.activate( adobe_clean);
//sIFR.debug.ratios({ src: 'flash/adobe_clean.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(adobe_clean, {
    selector: 'h1',
    css: [
      '.sIFR-root { font-size:20px; color:#ffffff; text-align:left; font-weight:bold;}',
      '.black{ color:#000000;}',
      '.center{text-align:center;}',
      '.big{ font-size:28px; color:#ffffff; text-align:left; font-weight:bold;;}',
    ]
    ,wmode:'transparent'
    ,filters: {
        DropShadow: {
           distance: 2
          ,color: '#000000'
          ,strength: 2
          ,alpha: .5
          ,blurX: 5
          ,blurY: 5
        }
    }
   

});
sIFR.replace(adobe_clean, {
    selector: 'h2',
    css: [
      '.sIFR-root { font-size:12px; color:#ffffff; text-align:left; font-weight:bold;}',
      '.black{ color:#000000;}'
    ]
    ,wmode:'transparent'
    ,filters: {
        DropShadow: {
           distance: 1
          ,color: '#000000'
          ,strength: 2
          ,alpha: .5
          ,blurX: 2
          ,blurY: 2
        }
    }
   

});

sIFR.replace(adobe_clean, {
    selector: 'h3',
    css: [
      '.sIFR-root { font-size:16px; color:#ffffff; text-align:left; font-weight:bold;}',
      '.black{ color:#000000;}',
      '.center{text-align:center;}'
      
    ]
    ,wmode:'transparent'  

});