if (Browser.Plugins.Flash.version > 8){
	var hg = {
		src : '/lib/font/handelgothic.swf'
	}
	sIFR.activate(hg);
	// replace all h1s
	sIFR.replace(hg,{
		selector:'h1.arrow',
		css : {
			'.sIFR-root': { 'color': '#FFFFFF','font-size':'22px', 'text-align': 'left' }
		},
		tuneHeight:-5,
		wmode:'transparent'
	});
	// all h2s - needs reworking
	sIFR.replace(hg,{
		selector:'h1.sifr,h1.blogsifr',
		css : {
			'.sIFR-root': { 'color': '#FFFFFF','font-size':'22px','text-align':'right' }
		},
		wmode:'transparent'
	});
	sIFR.replace(hg,{
		selector:'h2.hostingsifr',
		css : {
			'.sIFR-root': { 'color': '#FFFFFF','font-size':'24px','text-align':'right','margin-right':'25px' }
		},
		wmode:'transparent'
	});
	sIFR.replace(hg,{
		selector:'h2.sifr,h2.blogsifr,h2.homesifr',
		css : {
			'.sIFR-root': { 'color': '#FFFFFF','font-size':'18px','height':'10' }
		},
		tuneHeight:-5,
		wmode:'transparent'
	});
	sIFR.replace(hg,{
		selector:'p.number',
		css : {
			'.sIFR-root': { 'color': '#FFFFFF','font-size':'22px' }
		},
		tuneHeight:-5,
		wmode:'transparent'
	});	
}
var resetLineHeight = function(selector,y){
	var e = document.getElements(selector);
	if (e != null){
		e.each(function(_e){
			_e.setStyles({'line-height':y});
		});
	}
	return e;
}