// fonts are defined in the HTML so paths can be sorted out
sIFR.registerEvents = false;
sIFR.activate();
sIFR.replace(myriad, {
	selector: '#page.home #content h2',
	css: [
		'.sIFR-root { color: #333333; background-color: #ffffff; text-align: center; font-weight: bold; }',
		'a { color: #000000; }',
		'a:hover { color: #125A8A; }'
	],
	offsetTop: 1,
	wmode: 'transparent',
	onReplacement: sifrCallback
});
sIFR.replace(myriad, {
	selector: '#content h2',
	css: [
		'.sIFR-root { color: #333333; background-color: #ffffff; font-weight: bold; }',
		'a { color: #000000; }',
		'a:hover { color: #125A8A; }'
	],
	offsetTop: 1,
	wmode: 'transparent',
	onReplacement: sifrCallback
});
sIFR.replace(myriad, {
	selector: '#content h3',
	css: [
		'.sIFR-root { color: #333333; background-color: #ffffff; font-weight: bold; }',
		'a { color: #000000; }',
		'a:hover { color: #125A8A; }'
	],
	offsetTop: 3,
	wmode: 'transparent',
	onReplacement: sifrCallback
});
sIFR.replace(myriad, {
	selector: '#sidebar h3',
	css: [
		'.sIFR-root { color: #333333; background-color: #E3DED5; font-weight: bold; }',
		'a { color: #000000; }',
		'a:hover { color: #125A8A; }'
	],
	tuneHeight: -3,
	offsetTop: 1,
	wmode: 'transparent',
	onReplacement: sifrCallback
});