// Quickmenu
var winBiz;
function getPosition(){
	var start, end, scale, term, doc, body;
	doc = document.documentElement, body = document.body;
	start = parseInt (document.getElementById('quickmenu').style.top, 0);
	end = (doc && doc.scrollTop || body && body.scrollTop) + 240;
	term = 1;

	if ( start != end ) {
		scale = Math.ceil( Math.abs( end - start ) / 20 );
		if ( end < start ) scale = -scale;
		document.getElementById('quickmenu').style.top = parseInt (document.getElementById('quickmenu').style.top, 0)+ scale + "px";
		term = 1;
	}
	setTimeout ("getPosition()", term);
}

function moveQuickMenu() {
	if (!document.getElementById('quickmenu')) return false;
	document.getElementById('quickmenu').style.top = document.documentElement.scrollTop + 500 + "px"; //¼ýÀÚ°¡ °°À¸¸é ½½¶óÀÌµå ¾ø´Ù.
	getPosition();
	return true;
}

function goTop() {
	window.scrollTo(0,0);
}
