$(document).ready(function() {
    
    $(".TopMenu_TD").each(function (){
		strText = $(this).html();
		//text.replace(/\&nbsp;|\&nbsp;/gi, "");
		strText2 = strText.replace(/&nbsp;\|&nbsp;/gi, "");
		$(this).html(strText2);
    });
    
});
