( function($) {	$( function() {		$('#profileContext p').each( function() {			var $this = $(this);			if ($.trim($this.html()) === '') {				$this.html('&nbsp;');			}		});	});})(jQuery);