  var min = 460;      // ·¹ÀÌ¾î top ÃÊ±â °ª (·¹ÀÌ¾î top °ª°ú ÀÏÄ¡½ÃÅ´)
  var max = 0;
  var moving_speed = 10  // ¼Óµµ(³·À» ¼ö·Ï ºü¸§)
  var moving_amount = 10  // ¿òÁ÷ÀÓ (³·À» ¼ö·Ï ºÎµå·¯¿ò)
  var action_time = 500   // ¹ÝÀÀ½Ã°£ (*/1000 ÃÊ ÈÄ¿¡ ¹ÝÀÀ)
  function left_move_init() {
    itm = document.getElementById('floater');
	
	itm.set_pos = function(y){itm.style.top=y;};
    itm.y = min;
    itm.set_pos(itm.y);
    max = document.body.scrollHeight - itm.scrollHeight - min;
    setTimeout('left_move_func()', moving_amount);
  }
  function left_move_func() {

    tmp = document.body.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('left_move_func()', moving_amount);
  }
  setTimeout('left_move_init()', action_time);