var futuraBC = {
    src: 'flash/futura-boldcondensed.swf'
};
sIFR.useStyleCheck = true;
sIFR.activate(futuraBC);

var artStamp = {
    src: 'flash/impact.swf'
};
sIFR.useStyleCheck = true;
sIFR.activate(artStamp);




sIFR.replace(futuraBC, {
    selector: 'h2'
	,wmode:'transparent'
    ,css: {
		'.sIFR-root': {'color': '#ffffff','font-size': '14px', 'font-style': 'italic'},
		'a': { 'color': '#5f4d21', 'text-decoration': 'none' },
		'a:hover': { 'color': '#000000' }
	}
	,filters: {
	  	GlowFilter: {
			strength: .1
			,color: '#000000'
			,blurY: 6
			,blurX: 6
	  	}	
	}
});


function sifr_replace() {
	sIFR.replace(artStamp, {
		selector: 'h3'
		,wmode:'transparent'
		,css: {
			'.sIFR-root': {'color': '#ffffff','font-size': '40px'},
			'a': { 'color': '#000000', 'text-decoration': 'none' },
			'a:hover': { 'color': '#ed1c24' }
	
		}
		,filters: {
			GlowFilter: {
				strength: 2
				,color: '#000000'
				,blurY: 3
				,blurX: 3
			}	
		}
	});

	sIFR.replace(futuraBC, {
		selector: 'h4'
		,wmode:'transparent'
		,css: {
			'.sIFR-root': {'color': '#ffffff','font-size': '16px', 'font-style': 'italic'},
			'a': { 'color': '#ffffff', 'text-decoration': 'none' },
			'a:hover': { 'color': '#000000' }
		}
		,filters: {
			GlowFilter: {
				strength: .9
				,color: '#000000'
				,blurY: 6
				,blurX: 6
			}	
		}
	});
}
sifr_replace();

