var gothamBold = { src:'/swf/gotham_bold.swf' };
var gothamLight = { src:'/swf/gotham_light.swf' };
var gothamMedium = { src:'/swf/gotham_medium.swf' };
var browser = getBrowser();
if(browser['name'] == "firefox-mac") {
	sIFR.useDomLoaded = false;
}
sIFR.activate(gothamBold, gothamLight, gothamMedium);

sIFR.replace(gothamBold, {
	selector : 'h1',
	css : {
		'.sIFR-root' : {'color':'#333333','font-size':'28px','letter-spacing':-1,'text-transform':'uppercase'},
		'a' : {'color':'#333333','text-decoration':'none'},
		'a:hover' : {'color':'#333333','text-decoration':'none'}
	},
	wmode : 'transparent',
	onReplacement : sIFRAdjustments
});

sIFR.replace(gothamMedium, {
	selector : 'h2',
	css : {
		'.sIFR-root' : {'color':'#647133','font-size':'22px'},
		'a' : {'color':'#647133','text-decoration':'none'},
		'a:hover' : {'color':'#647133','text-decoration':'none'}
	},
	wmode : 'transparent',
	fitExactly : true,
	tuneWidth : 15,
	onReplacement : sIFRAdjustments
});

sIFR.replace(gothamLight, {
	selector : '#sidebar h3',
	css : {'.sIFR-root':{'color':'#647133','font-size':'26px','text-transform':'uppercase'}},
	wmode : 'transparent',
	fitExactly : true,
	onReplacement : sIFRAdjustments
});


function sIFRAdjustments(so){
	adjustContentHeight();
}
