	
	var min = 200;      // ·¹ÀÌ¾î top ÃÊ±â °ª (·¹ÀÌ¾î top °ª°ú ÀÏÄ¡½ÃÅ´)
	var max = 0;
	var moving_speed = 10  // ¼Óµµ(³·À» ¼ö·Ï ºü¸§)
	var moving_amount = 10  // ¿òÁ÷ÀÓ (³·À» ¼ö·Ï ºÎµå·¯¿ò)
	var action_time = 500   // ¹ÝÀÀ½Ã°£ (*/1000 ÃÊ ÈÄ¿¡ ¹ÝÀÀ)
	
	function move_init() {
		itm = document.getElementById("quickmenu");
		if(itm){
			itm.set_pos = function(y){itm.style.top=y+"px";};
			itm.y = min;
			itm.set_pos(itm.y);
			max = document.documentElement.scrollHeight - itm.scrollHeight - 100;
			setTimeout(move_func, moving_amount);
		}
	}
	
	function move_func() {
		itm = document.getElementById("quickmenu");
		tmp = document.documentElement.scrollTop + min;
		itm.y += Math.floor((tmp-itm.y)/moving_speed);
		if( itm.y>max ) itm.y = max;
		if( itm.y<min ) itm.y = min;
		itm.set_pos(itm.y);
		setTimeout(move_func, moving_amount);
	}	
	
	setTimeout(move_init, action_time);