var stag = { src: '/sifr3/flash/stag.swf' };

sIFR.activate(stag);
sIFRReplaceStag();

// Replace Stag
function sIFRReplaceStag() {

	// Project Title
	sIFR.replace(stag, {
		selector: 'h1.projecttitle',
		css: [
			'.sIFR-root { font-size:48px; font-weight:normal; color:#333333; }'
		],
		wmode: 'transparent'
	});
	
	// Blog Title
	sIFR.replace(stag, {
		selector: 'h2.blogTitle',
		css: [
			'.sIFR-root { font-size:24px; font-weight:normal; color:#262626; }',
			'a { color: #262626; text-decoration: none; }',
			'a:link { color: #262626; text-decoration: none; }',
			'a:hover { color: #00bce4; }',
			'a:active { color: #00bce4; }',
			'a:visited { color: #262626; }'
		],
		wmode: 'transparent'
	});
	
	// Blog Post Title
	sIFR.replace(stag, {
		selector: 'h3.postTitle',
		css: [
			'.sIFR-root { font-size:48px; font-weight:normal; color:#262626; }',
			'a { color: #262626; text-decoration: none; }',
			'a:link { color: #262626; text-decoration: none; }',
			'a:hover { color: #00bce4; }',
			'a:active { color: #00bce4; }',
			'a:visited { color: #262626; }'
		],
		wmode: 'transparent'
	});
	
	// Blog Side Title
	sIFR.replace(stag, {
		selector: 'h3.sideTitle',
		css: [
			'.sIFR-root { font-size: 26px; font-weight:normal; color:#262626; }'
		],
		wmode: 'transparent'
	});

}