//rename 'fontname' to the correct font e.g. arial, helvetica...
var frutiger = { 
    src: 'flash/frutiger.swf'
    , ratios:[6, 0.92, 7, 0.93, 10, 0.95, 12, 1, 18, 1.04, 24, 1.08, 31, 1.1, 37, 1.11, 43, 1.12, 44, 1.13, 50, 1.12, 62, 1.13, 63, 1.14, 68, 1.13, 99, 1.14, 100, 1.15, 105, 1.14, 110, 1.15, 111, 1.14, 1.15]
};



sIFR.activate( frutiger);
//sIFR.debug.ratios({ src: 'flash/frutiger.swf', selector: 'h1' });



//-- SOME EXAMPLES IN ORDER TO IMPLEMENT SIFR3 ------------------------------------------------

sIFR.replace(frutiger, {
    selector: 'h1',
    css: [
      '.sIFR-root { font-size:20px; color:#191919; text-align: left; font-weight: normal; }'
      ,'.white{ color:#ffffff;}'
      
    ]
    ,wmode:'transparent'
    ,forceSingleLine:true
});
sIFR.replace(frutiger, {
    selector: 'h2',
    css: [
      '.sIFR-root { font-size:16px; color:#191919; text-align: left; font-weight: normal; }'
      ,'.white{ color:#ffffff;}'
      
    ]
    ,wmode:'transparent'
    ,forceSingleLine:true
});

/* 

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
});
*/
