//this code is used to remove the whitespace within sublists

$(document).ready(function() {

$(".content ul").each(function(){ 
	$(this).html($(this).html().replace(/&nbsp;/gi,''));
});

});
