$(document).ready(function(){
	$('a').each(function(){
		var href = $(this).attr('href');
		if(href == ''){
			$(this).parent().hide();
		}
	});
});
