<!-- 
	// È­¸é ½ºÅ©·Ñ½Ã µû¶ó¿À°ÔÇÏ´Â ½ºÅ©¸³Æ®
	var bNetscape4plus = (navigator.appName == "Netscape" && navigator.appVersion.substring(0,1) >= "4");
	var bExplorer4plus = (navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.substring(0,1) >= "4");
	function CheckUIElements()
	{
		var yMenuFrom=0, yMenuTo=0, yButtonFrom=0, yButtonTo=0, yOffset=0, timeoutNextCheck=500;
		if ( bNetscape4plus )
		{
			yMenuTo     =  0 + window.pageYOffset ;
		}
		else if ( bExplorer4plus )
		{
			yMenuTo     = document.documentElement.scrollTop;//+ 45;
		}
		yMenuFrom   = parseInt(document.getElementById("all_notice").style.top, 10);
		timeoutNextCheck = 500;
		
		if ( yMenuFrom != yMenuTo )
		{
			yOffset = Math.ceil( Math.abs( yMenuTo - yMenuFrom ) / 20 );
	
			if ( yMenuTo < yMenuFrom ) yOffset = -yOffset;
			
			if ( bNetscape4plus )
			{
				document.getElementById("all_notice").style.top += yOffset;
			}
			else if ( bExplorer4plus )
			{
				document.getElementById("all_notice").style.top = parseInt (document.getElementById("all_notice").style.top, 10) + yOffset;
			}
			
			timeoutNextCheck = 10;
		}
	
		setTimeout ("CheckUIElements()",timeoutNextCheck);
	}
	
	function OnLoad()
	{
		var y;
	
		CheckUIElements();
		return true;
	}
	OnLoad();

//-->
