// ¿À¸¥ÂÊ ±ä ¹è³Ê ½ºÅ©·Ñ
function getHeight_right()
{
	var sc_height = $("#STATICMENU_RIGHT").height();
	$("#right_scroll_ad").css({"height":sc_height + "px"});
}

function scroll_bnr_right(){
  //±âº»°ª
  var speed = '1000';
  var easing = 'swing';

	//¾Æ·¡ÂÊ ½ºÅ©·Ñ ¹è³Ê ±âº»°ª 
	var pos = $("#right_scroll_ad").offset().top;
	var yPos = 0;

	$(window).scroll(function() {
		//¾Æ·¡ÂÊ ½ºÅ©·Ñ ¹è³Ê ½ºÅ©·Ñ ÇÔ¼ö
		var position = $(document).scrollTop(); // ÇöÀç ½ºÅ©·Ñ¹ÙÀÇ À§Ä¡°ªÀ» ¹ÝÈ¯ÇÕ´Ï´Ù.
		if (position>pos) yPos = position - pos;
		else yPos = 0;
		$("#right_scroll_ad").animate({"top":yPos}, {duration:speed, easing:easing, queue:false});
	});
}

scroll_bnr_right();
getHeight_right();
