var newhouse = { src: 'http://www.matthewhussey.com/site/wp-content/themes/matthewhussey/sifr/newhouse.swf' };
// sIFR.useStyleCheck = true;
sIFR.activate( newhouse );

// Flash replacemented elements follow:

// NB: Elements have specific classes on them: this is necessary for the varying content styles.


// H1 Page Title:

sIFR.replace(newhouse, {
	selector: 'h1',
	css: '.sIFR-root { color: #373737; font-size:54px; text-align:center; font-weight:bold; font-style:italic; letter-spacing:-1; leading:-14 }', 
	wmode: 'transparent',
	fixFocus: true
});


// H2 Titles:


sIFR.replace(newhouse, {
	selector: 'h2.page-title',
	css: '.sIFR-root { color: #373737; font-size:42px; text-align:center; font-weight:bold; letter-spacing:-1; leading:-14 }', 
	wmode: 'transparent',
	fixFocus: true
});



sIFR.replace(newhouse, {
	selector: '.post h2',
	css: [  '.sIFR-root { color: #373737; font-size:28px; font-weight:bold; letter-spacing:-1; leading:-14 }', 
			'a 			{ color: #0070d0; text-decoration:none }', 
			'a:link 	{ color: #0070d0; text-decoration:none }', 
			'a:visited 	{ color: #0070d0; text-decoration:none }', 
			'a:hover 	{ color: #0070d0; text-decoration:underline }', 
			'a:active 	{ color: #0070d0; text-decoration:underline }'
			 ], 
	wmode: 'transparent',
	fixFocus: true
});


// Sidebar Widget Headers:

sIFR.replace(newhouse, {
	selector: 'h5',
	css: [  '.sIFR-root { color: #373737; font-size:24px; text-align:center; font-weight:bold; font-style:normal; letter-spacing:-1; leading:-14 }', 
			'a 			{ color: #0070d0; text-decoration:none }', 
			'a:link 	{ color: #0070d0; text-decoration:none }', 
			'a:visited 	{ color: #0070d0; text-decoration:none }', 
			'a:hover 	{ color: #0070d0; text-decoration:underline }', 
			'a:active 	{ color: #0070d0; text-decoration:underline }'
			], 
	wmode: 'transparent',
	fixFocus: true
});










/* 

Filling text with colour:
		Glow: {
			knockout:false,
			strength: 7,
			quality: 1,
			color: '#000000',
			distance: 0,
			inner:1,
			blurX: 200,
			blurY: 200
		}, 
		
		
Basic drop shadow:
		DropShadow: {
			knockout: false,
			distance: 2,
			color: '#000000',
			strength: 0.26,
			blurX: 0,
			blurY: 0
		}
		
		
The CORRECT Way to do dynamic links in sIFR:

	css: [ 
		'.sIFR-root { color: #ff5b25; font-size:34px; font-style:normal; letter-spacing:0; leading:-3 }', 
		'a { color: #ff5b25; text-decoration:none }', 
		'a:link { color: #ff5b25; text-decoration:none }', 
		'a:visited { color: #ff5b25; text-decoration:none }', 
		'a:hover { color: #ff5b25; text-decoration:underline }', 
		'a:focus { color: #ff5b25; text-decoration:underline }', 
		'a:active { color: #ff5b25; text-decoration:underline }' 
	],
	
*/
