

//<![CDATA[ ·ÎµåÇÏÀÚ¸¶ÀÚ °¨Ãß±â
window.onload = function() {
	var obj1 = document.getElementById("quickList");
	var obj2 = document.getElementById("right_tab");

	obj1.style.display = "none";
	obj2.style.width = "31px";
}
//]]>

//<![CDATA[ //Äü¸Þ´º
function quikTab(){	
	var obj = document.getElementById("quickList");
	var obj2 = document.getElementById("right_tab");

	if(obj.style.display == "block") {
		obj.style.display = "none";
		obj2.style.width = "31px";
	} else {
		obj.style.display = "block"; 
		obj2.style.width = "188px";
	}
}
//]]>
