<!--
//=================================================================================================================================
// ÓÒ²àQQÔÚÏß×ÉÑ¯
//=================================================================================================================================
function CheckUIElements() {
	var plustop;
	plustop = 216;
	if(document.body.clientHeight < 300)
		plustop = 0;
	var yMenu1From, yMenu1To, yOffset, timeoutNextCheck;
	var wndWidth = parseInt(document.body.clientWidth);
	yMenu1From   = parseInt(ghostmenu.style.top, 10);
	yMenu1To     = parseInt(document.body.scrollTop) + plustop; // À§ÂÊ À§Ä¡
	timeoutNextCheck = 500;

	if ( yMenu1From != yMenu1To ) 
	{
		yOffset = Math.ceil( Math.abs( yMenu1To - yMenu1From ) / 20 );
		if ( yMenu1To < yMenu1From )
			yOffset = -yOffset;
		ghostmenu.style.top = parseInt (ghostmenu.style.top, 10) + yOffset
		timeoutNextCheck = 10;
	}
	ghostmenu.style.right = 0;
	setTimeout ("CheckUIElements()", timeoutNextCheck);
}

function MovePosition() {
	ghostmenu.style.top = 216;
	ghostmenu.style.right = 0;
	CheckUIElements();
	return true;
}

//-->


