

function initLayout() {
	try {
	var isIE = (navigator.appName.indexOf("Microsoft Internet Explorer") >= 0);

	var all_content_1 = document.getElementById('all_content_1');
	var all_content_2 = document.getElementById('all_content_2');
	var all_content_3 = document.getElementById('all_content_3');

	var article_content = document.getElementById('article_content');
	var center_box_bottom = document.getElementById('center_box_bottom');
	var center_box_repeat = document.getElementById('center_box_repeat');
	var center_box_all = document.getElementById('center_box_all');
	var footer_top = document.getElementById('footer_top');
	var footer_top2 = document.getElementById('footer_top2');
	var footer_repeat = document.getElementById('footer_repeat');

	var newHeight = article_content.offsetHeight;
	if (newHeight < 400) newHeight = 400; 
	footer_top2.style.top = newHeight + 253 + 'px';
	footer_top.style.top = newHeight + 232 + 'px';

	if (isIE) {
		footer_repeat.style.top = newHeight + 258 + 'px';
	}
	else {
		footer_repeat.style.top = newHeight + 256 + 'px';
	}

	footer_top.style.visibility = 'visible';
	footer_top2.style.visibility = 'visible';
	footer_repeat.style.visibility = 'visible';

	center_box_repeat.style.height = newHeight + 21 + 'px'; 
	center_box_bottom.style.top = newHeight + 39 + 'px';
	center_box_repeat.style.visibility = 'visible';
	center_box_bottom.style.visibility = 'visible';
	center_box_all.style.visibility = 'visible';
	
	all_content_1.style.height = newHeight + 175 + 'px'; 
	all_content_2.style.height = newHeight + 175 + 'px'; 
	all_content_3.style.height = newHeight + 175 + 'px'; 
	} catch (err) {}

	initDropMenu();
}

