$(function() {
	//カテゴリの隙間を削除
	var tag = $('div.category');
	var temp = $(tag).html();

	temp = temp.split('<TR height=8>').join('');
	temp = temp.split('<tr height="8">').join('');
	temp = temp.split('<TR height=0>').join('');
	temp = temp.split('<TD colSpan=3></TD></TR>').join('');

	$(tag).html(temp);
	
	var tagCommu = $('div.community');
	var temp = $(tagCommu).html();
	
	temp = temp.split('<TR height=0>').join('');
	temp = temp.split('<TD colSpan=3></TD></TR>').join('');

	$(tagCommu).html(temp);
	
	//
	var infoTag = $('div.information > table > tbody > tr > td > table > tbody > tr > td');

	$(infoTag).each(function() {
		for(var i = 1;i < 11;i++) {
			if($(this).text() == i) {
				$(this).text('');
				$(this).width(0);
				$(this).height(0);
			}
			if($(this).attr('class') == 'line'){
				$(this).text('');
			}
		}
	});
});
