/*****************************************************************************
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.
*****************************************************************************/

// Make an object pointing to the location of the Flash movie on your web server.
// Try using the font name as the variable name, makes it easy to remember which
// object you're using. As an example in this file, we'll use Futura.
var futura = {
    src: '/swfs/futura-heavy.swf'
    ,ratios: [9, 1.16, 16, 1.09, 24, 1.06, 37, 1.04, 74, 1.02, 1.01]
    ,wmode: 'transparent'
};


// sIFR.useStyleCheck = true;
sIFR.useDomLoaded = true;

// Debug... doooooeeeet.
//sIFR.debug.ratios({ src: '/swfs/futura-heavy.swf', selector: 'div#main h3' });

// Next, activate sIFR:
sIFR.activate(futura);


sIFR.replace(futura, {
  selector: 'div#main h1,div#main h2,div#main h3,div#main h4,div#main h5,div#main h6',
  css: '.sIFR-root { color: #525151; }'
});

/*
var myriad_pro_sb = {
	src: '/swfs/myriad-pro-sb.swf'
	,ratios: [6,1.24,7,1.21,8,1.18,10,1.16,11,1.13,12,1.12,13,1.11,15,1.1,17,1.09,19,1.08,22,1.07,26,1.06,32,1.05,41,1.04,58,1.03,97,1.02,1.01]
	,wmode: 'transparent'
};

sIFR.replace(myriad_pro, {
	selector: 'div#header div#title h2,div#feature h2.title',
	css: ['.sIFR-root { color: #018E6E; }', 'a { color: #018E6E; text-decoration: none;}', 'a:hover { color: #018E6E; text-decoration: none;}', 'a:visited { color: #018E6E; text-decoration: none;}']
	,tuneHeight: -6
});
*/