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

sIFR.activate(antennaRegular, antennaMedium, antennaBold, antennaBlack);

// GENERAL: page titles
sIFR.replace(antennaMedium, {
	selector: 'h1.mediumHeader',
	css: {
		'.sIFR-root': { 'leading': '-7', 'font-size': '24px', 'color': '#1A1A1A', 'font-weight': 'normal' },
		'a': { 'color': '#1A1A1A', 'text-decoration': 'none' },
    'a:hover': {'color': '#ff4e00'}
	},
	offsetTop: 3,
	wmode:'opaque'
});

// Story titles
sIFR.replace(antennaBold, {
	selector: 'h3.storytitle',
	css: {
		'.sIFR-root': { 'color':'#000000', 'font-size': '35px', 'leading': '-7', 'letter-spacing':'-1'},
		'a': { 'color': '#1A1A1A', 'text-decoration': 'none' },
    'a:hover': {'color': '#ff4e00'}
	},
	offsetTop: -7,
	tuneHeight: -10,
});

