$(document).ready(function(){ 
	$('.feed .article').each(function(){
		$(this)
			.wrapInner('<div class="wrap"></div>');
		$(this)
			.prepend($(this).find('.wrap p._intro'))
			.prepend($(this).find('.wrap p:first-child'))
			.find('.wrap').hide();
	});
});

Cufon.replace('h1')('.contentbar #nav-below', { hover:true });

