<!--quick menu script-->

var stmnLEFT = 5; 
var stmnGAP1 = 10; 
var stmnGAP2 = 100;  
var stmnBASE = 150; 
var stmnActivateSpeed = 200;
var stmnScrollSpeed = 10;
 
var stmnTimer;

function RefreshStaticMenu()
{
	var stmnStartPoint, stmnEndPoint, stmnRefreshTimer;
	
	stmnStartPoint = parseInt(STATICMENU.style.top, 10);
	stmnEndPoint = document.body.scrollTop + stmnGAP2;
	if (stmnEndPoint < stmnGAP1) stmnEndPoint = stmnGAP1;
 
 	stmnRefreshTimer = stmnActivateSpeed;
 
 	if ( stmnStartPoint != stmnEndPoint ) {
                stmnScrollAmount = Math.ceil( Math.abs( stmnEndPoint - stmnStartPoint ) / 15 );
                STATICMENU.style.top = parseInt(STATICMENU.style.top, 10) + ( ( stmnEndPoint<stmnStartPoint ) ? -stmnScrollAmount : stmnScrollAmount );
                stmnRefreshTimer = stmnScrollSpeed;
	}
 
	stmnTimer = setTimeout ("RefreshStaticMenu()", stmnRefreshTimer);
}
 
 
function InitializeStaticMenu()
{
	STATICMENU.style.left = stmnLEFT;
 	STATICMENU.style.top = document.body.scrollTop + stmnBASE;
	RefreshStaticMenu();
}
<!--āE޴?̹ ٲ濁Eٲٴ κ<div></div>̿ E?ϸE "" Ǵ ''  翁EE-->
document.write("<div id=STATICMENU style=position:absolute; left:-5000px; top:0px; z-index:80;><a href=http://www.kankokuesute.com/search1/index.php><img src=http://www.kankokuesute.com/main_img/quick_icon_01.gif width=64 height=59 border=0></a><br><a href=http://www.kankokuesute.com/search2/index.php><img src=http://www.kankokuesute.com/main_img/quick_icon_02.gif width=64 height=63 border=0></a><BR>&nbsp;<BR><a href=http://www.kankokuesute.com/jbbs/zboard.php?id=koreapop><img src=http://www.kankokuesute.com/main_img/quick_icon_03.gif width=64 height=60 border=0></a><br><a href=http://www.kankokuesute.com/jbbs/zboard.php?id=uranai2><img src=http://www.kankokuesute.com/main_img/quick_icon_04.gif width=64 height=58 border=0></a><br><a href=http://www.kankokuesute.com/jbbs/zboard.php?id=game><img src=http://www.kankokuesute.com/main_img/quick_icon_05.gif width=64 height=65 border=0></a><BR>&nbsp;<BR><a href=#top><img src=http://www.kankokuesute.com/main_img/quick_icon_06.gif width=64 height=70 border=0></a></div>");







