jQuery(document).ready(function ($){
	$('p').each(function (){
		if ($(this).html() == '&nbsp;'){
			$(this).css('margin','5px 0');
		}
	});

});;

