$(document).ready(function() {
	$('ul.search-results p').each(function () {
		if ($(this).html() == '')
		{
			$(this).remove();
		}
	});
});

