jQuery(function($) {
	$(function() {
		var s;
		$('h4, h5, #access a, button .label, .button .label, .widget_categories .cat-item, .widget_pages .page_item').not('.raw *, .icon + h5, .icon + br + h5, .icon *, .icon .label, .not, .not *').add('h1, h2, h3').each(function() {
			s = $(this).html();
			s = s.replace(/\s+/gm, ' ');
			s = s.replace(/br(\s?\/)?>\s+/gm, 'br />');
			$(this).html(s);
			Cufon.replace($(this), {fontFamily: 'Helvetica Neue', textShadow: $(this).css('text-shadow'), letterSpacing: $(this).css('letter-spacing'), textDecoration: $(this).css('text-decoration')} );
		});
	});
});
