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

// Load font
var font = { src: 'sifr-3/sifr.swf' };

// sIFR.useStyleCheck = true;

// Activate font:
sIFR.activate(font);

// Replace
sIFR.replace(font, {
	selector: 'h1',
	wmode: 'transparent',
	tuneWidth: '5',
	tuneHeight: '-5',
	css: '.sIFR-root { color: #FF6600; font-size: 30px; }'
});

sIFR.replace(font, {
	selector: 'h2',
	wmode: 'transparent',
	tuneWidth: '5',
	tuneHeight: '-5',
	css: '.sIFR-root { color: #FFFFFF; font-size: 22px; }'
});

sIFR.replace(font, {
	selector: 'h3',
	wmode: 'transparent',
	tuneWidth: '5',
	tuneHeight: '-5',
	css: '.sIFR-root { color: #FFFFFF; font-size: 22px; }'
});

sIFR.replace(font, {
	selector: 'h4',
	wmode: 'transparent',
	tuneWidth: '5',
	tuneHeight: '-5',
	css: '.sIFR-root { color: #D7DF21; font-size: 30px; }'
});