

function doCufon() {
	Cufon.replace('#header a',  { fontFamily: 'Kozuka Gothic Pro OpenType' , hover: true });
	Cufon.replace('#footer h3',  { fontFamily: 'Kozuka Gothic Pro OpenType' , hover: true });
	Cufon.replace('.block h3 span',  { fontFamily: 'Kozuka Gothic light' , hover: true });
	Cufon.replace('h2',  { margin: '0 0 0 16px', fontFamily: 'Kozuka Gothic light' , hover: true });
	Cufon.replace('h1',  { fontFamily: 'Kozuka Gothic light' , hover: true });
	Cufon.replace('h5',  {color: '#303030', fontFamily: 'Kozuka Gothic light' , hover: true });
	Cufon.replace('.block h3 strong',  { fontFamily: 'Kozuka Gothic Pro strong' , hover: true });
	Cufon.replace('.but1, .but2, .but3',  { fontFamily: 'Kozuka Gothic Pro strong' , hover: true });
	Cufon.replace('#homeButtons .top',  { fontFamily: 'Kozuka Gothic Pro strong' , hover: true, textShadow: '#6e4076 1px 1px' });
	Cufon.replace('#homeButtons .sub',  { fontFamily: 'Kozuka Gothic Pro OpenType' , hover: true });
}

doCufon();

$(
	function() {
		$('#textSize span').click(
			function() {
				var b = $('body');
				var t = $(this);
				t.siblings().removeClass('active');
				t.removeClass('active');
				b.removeClass('med');
				b.removeClass('lg');
				b.addClass($(this).attr('class'));
				t.addClass('active');
				doCufon();
			}
		);
	}
);
