var light = {
    src: 'flash/gotham-light.swf'
};
sIFR.useStyleCheck = true;
sIFR.activate(light);

var book = {
    src: 'flash/gotham-book.swf'
};
sIFR.useStyleCheck = true;
sIFR.activate(book);

var medium = {
    src: 'flash/gotham-medium.swf'
};
sIFR.useStyleCheck = true;
sIFR.activate(medium);



sIFR.replace(book, {
    selector: 'h2'
	,wmode:'transparent'
    ,css: {
		'.sIFR-root': {'color': '#554e4e', 'font-size': '11px'}
	}
	,filters: {
	  	GlowFilter: {
			strength: .8
			,color: '#000000'
			,blurY: 6
			,blurX: 6
	  	}	
	}
});

sIFR.replace(book, {
    selector: 'h6'
	,wmode:'transparent'
    ,css: {
		'.sIFR-root': {'color': '#554e4e', 'font-size': '11px', 'text-align': 'right'}
	}
	,filters: {
	  	GlowFilter: {
			strength: .8
			,color: '#000000'
			,blurY: 6
			,blurX: 6
	  	}	
	}
});

sIFR.replace(book, {
    selector: 'h3'
	,wmode:'transparent'
    ,css: {
		'.sIFR-root': {'color': '#554e4e','font-size': '11px', 'text-align': 'right'},
		'a': { 'color': '#554e4e', 'text-decoration': 'none' },
		'a:hover': { 'color': '#cf2127' }
	}
	,filters: {
	  	GlowFilter: {
			strength: .8
			,color: '#000000'
			,blurY: 6
			,blurX: 6
	  	}	
	}
});


sIFR.replace(light, {
    selector: 'h4'
	,wmode:'transparent'
    ,css: {
		'.sIFR-root': {'color': '#ffffff','font-size': '20px'},
		'a': { 'color': '#ffffff', 'text-decoration': 'none' },
		'a:hover': { 'color': '#cf2127' }

	}
	,filters: {
	  	GlowFilter: {
			strength: .8
			,color: '#000000'
			,blurY: 6
			,blurX: 6
	  	}	
	}
});



sIFR.replace(medium, {
    selector: 'h5'
	,wmode:'transparent'
    ,css: {
		'.sIFR-root': {'color': '#cf2127', 'font-size': '22px'}
	}
	,filters: {
	  	GlowFilter: {
			strength: .8
			,color: '#000000'
			,blurY: 6
			,blurX: 6
	  	}	
	}
});

