function initCufon() {
	Cufon.replace('#menu li em a', { fontFamily: 'gotham-b', hover: true });
	Cufon.replace('#sidebar .box-top strong', { fontFamily: 'gotham-b'});
	Cufon.replace('#sidebar .box-top h1', { fontFamily: 'gotham-b'});
	Cufon.replace('#sidebar .box-top h2', { fontFamily: 'gotham-b'});
	Cufon.replace('#sidebar .box-center h1', { fontFamily: 'gotham-b'});
	Cufon.replace('#sidebar .box-center h2', { fontFamily: 'gotham-b'});
	Cufon.replace('.right-column .right-box strong', { fontFamily: 'gotham-b'});
	Cufon.replace('.right-column .text-content h1', { fontFamily: 'gotham-b'});
	Cufon.replace('.right-column .text-content_wide h1', { fontFamily: 'gotham-b'});

	$('#menu > li').hover(function(){
		setTimeout(function(){Cufon.refresh('#menu li em a');},100);
	},function(){
		setTimeout(function(){Cufon.refresh('#menu li em a');},100);
	});

	$('#menu li').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});
}

$(document).ready(function(){
	initCufon();
});