/*****************************************************************************
It is adviced to place the sIFR JavaScript calls in this file, keeping it
separate from the `sifr.js` file. That way, you can easily swap the `sifr.js`
file for a new version, while keeping the configuration.

You must load this file *after* loading `sifr.js`.

That said, you're of course free to merge the JavaScript files. Just make sure
the copyright statement in `sifr.js` is kept intact.
*****************************************************************************/



var helveticaThin = {
    src: '/sifr/flashfonts/Helvetica-thin.swf'
      , ratios: [8, 1.3, 11, 1.21, 12, 1.2, 14, 1.19, 21, 1.16, 28, 1.13, 38, 1.12, 61, 1.11, 94, 1.1, 95, 1.09, 103, 1.1, 107, 1.09, 110, 1.1, 119, 1.09, 120, 1.1, 1.09]
};
var helveticaLight = {
    src: '/sifr/flashfonts/Helvetica-light.swf'
      , ratios: [8, 1.3, 11, 1.21, 12, 1.2, 14, 1.19, 21, 1.16, 28, 1.13, 38, 1.12, 61, 1.11, 94, 1.1, 95, 1.09, 103, 1.1, 107, 1.09, 110, 1.1, 119, 1.09, 120, 1.1, 1.09]
};
// You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
// sIFR.useStyleCheck = true;

//sIFR.debug.ratios({ src: '/sifr/flashfonts/Helvetica-thin.swf', selector: 'h1' });

sIFR.activate(helveticaThin);
//sIFR.activate(helveticaLight);

sIFR.replace(helveticaThin, {
selector: 'body #brand h1'
    , css: [
    '.sIFR-root { text-align: center; font-weight: normal; color:#4B5457; text-align:left; }'
    ]
    , wmode: 'transparent'
    , selectable: true
});

sIFR.replace(helveticaThin, {
selector: '#home-cti #pnl0 h1'  
    , css: [
    '.sIFR-root { font-weight: normal; color:#4b5457; text-align:left; leading: -10;}'
    ]
    , wmode: 'transparent'
    , fitExactly: true
    , selectable: true
});

sIFR.replace(helveticaThin, {
    selector: '#home-cti #pnl1 h1'
    , css: [
    '.sIFR-root { font-weight: normal; color:#4b5457; text-align:left; leading: -10;}',
	'em { color:#4b5457; font-size:24px; font-style:normal;}'
    ]
    , wmode: 'transparent'
    , fitExactly: true
    , selectable: true
});

sIFR.replace(helveticaThin, {
selector: 'h1'
    , css: [
    '.sIFR-root { font-weight: normal; color:#bed500; text-align:left; leading: -10;}',
	'em { color:#4b5457; font-size:24px; font-style:normal;}'
    ]
    , wmode: 'transparent'
    , fitExactly: true
    , selectable: true
});



















/*sIFR.replace(rockwell, {
    selector: 'h5#pullquote'
      , css: 'em { font-style: normal; color: #660000; }'
      , selectable: false
});


sIFR.replace(cochin, {
    selector: 'h3.sidebox'
      , css: {
          '.sIFR-root': { 'background-color': '#DCDCDC' }
      }
});

sIFR.replace(cochin, { selector: 'h2,h3' });

sIFR.replace(cochin, {
    selector: 'h4.subhead'
      , css: {
          '.sIFR-root': { 'color': '#660000', 'letter-spacing': -1.5, 'text-transform': 'capitalize' }
      }
      , filters: {
          DropShadow: {
              knockout: true
          , distance: 1
          , color: '#330000'
          , strength: 2
          }
      }
});*/