﻿var myriad = { src: 'flash/mp-bold.swf', wmode: 'transparent' };
sIFR.activate(myriad);

// main title

sIFR.replace(myriad, {
	selector: 'h1',
	css: { 
		'.sIFR-root': { 
			'color': '#222222', 
			'font-weight': 'bold',
			'leading': '-6'
		} 
	},
	filters: {
		DropShadow: {
			angle: 90,
			blurX: 0,
			blurY: 0,
			quality: 3,
			distance: 1,
			color: '#f9fcfe',
			strength: 2
		}
	}
});
sIFR.replace(myriad, {
	selector: '#slideShowScreen h3 a',
	css: { 
		'.sIFR-root': { 
			'color': '#326292', 
			'font-weight': 'bold',
			'leading': '-6'
		} 
	},
	filters: {
		DropShadow: {
			angle: 90,
			blurX: 0,
			blurY: 0,
			quality: 3,
			distance: 1,
			color: '#f9fcfe',
			strength: 2
		}
	}
});
sIFR.replace(myriad, {
	selector: 'h4',
	css: { 
		'.sIFR-root': { 
			'color': '#222222',
			'font-weight': 'bold'
		} 
	}
});
sIFR.replace(myriad, {
	selector: '.inner h2',
	css: [
		'.sIFR-root { font-weight: bold; color: #222222; }'
	] 
});
sIFR.replace(myriad, {
	selector: '.inner h5',
	css: [
		'.sIFR-root { font-weight: bold; }',
		'a { text-decoration: none; }',
		'a:link { color: #222222; }',
		'a:hover { color: #222222; text-decoration: underline; }'
	] 
});
sIFR.replace(myriad, {
	selector: '.inner h6',
	css: [
		'.sIFR-root { font-weight: bold; color: #222222; }'
	] ,
	onRelease: function(e) { e.getAncestor().click() }
});



