//rename 'fontname' to the correct font e.g. arial, helvetica...
var neo_sans = { 
    src: 'flash/neo_sans.swf'
    , ratios:[9, 1.05, 10, 1, 15, 1.05, 20, 1.1, 25, 1.12, 30, 1.14, 31, 1.15, 36, 1.14, 41, 1.15, 50, 1.16, 51, 1.17, 56, 1.16, 76, 1.17, 77, 1.18, 81, 1.17, 83, 1.18, 84, 1.17, 1.18]
};



//First get the correct ratios for the font and paste them above
sIFR.activate( neo_sans);
//sIFR.debug.ratios({ src: 'flash/neo_sans.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(neo_sans, {
    selector: 'h1',
    css: [
      '.sIFR-root { font-size:24px; color:#a7a31a; text-align: left; font-weight: normal; }'
    ]
    ,wmode:'transparent'
});
sIFR.replace(neo_sans, {
    selector: 'h2',
    css: [
      '.sIFR-root { font-size:15px; color:#a7a31a; text-align: left; font-weight: normal; }'
    ]
    ,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
});
*/
