$(function() {
	
	// Fixed first page center layout
	$('.WorkCenterContentFont').addClass('clearfix');
	$('table#article-layout tr td').each(function() {
		if ($(this).attr('height') == '5px' && $(this).text() == '') {
			$(this).parent('tr').remove();
		}
	});
	
});