$(document).ready(function(){	
	$("h2.widgettitle").each(function() { 
		if ($(this).html() == "&nbsp;") {
			$(this).remove();
		}
	});		
});
