/// <summary>
/// portal template specific js functions go here
/// </summary>

$(function() { 
	$('p:empty').remove(); 
	$('p').each(function(){
		if ($(this).html()=='&nbsp;')
			$(this).remove();
	});

	$('span:empty').remove();
	$('span').each(function(){
		if ($(this).html()=='&nbsp;')
			$(this).remove();
	});
		
	$('p:empty').remove();
});

