
	var stmnLEFT =895;
	var stmnGAP1 = 297;
	var stmnGAP2 = 290;
	var stmnBASE = 297; 
	var stmnActivateSpeed = 15; 
	var stmnScrollSpeed = 10; 
	var stmnTimer; 
	
	function RefreshStaticMenu() { 
		var stmnStartPoint, stmnEndPoint; 
		stmnStartPoint = parseInt(document.getElementById('STATICMENU').style.top, 10); 
		stmnEndPoint = Math.max(document.documentElement.scrollTop, document.body.scrollTop) + stmnGAP2-100; 
		if (stmnEndPoint < stmnGAP1) stmnEndPoint = stmnGAP1; 
		if (stmnStartPoint != stmnEndPoint) { 
			stmnScrollAmount = Math.ceil( Math.abs( stmnEndPoint - stmnStartPoint ) / 15 ); 
			document.getElementById('STATICMENU').style.top = parseInt(document.getElementById('STATICMENU').style.top, 10) + ( ( stmnEndPoint<stmnStartPoint ) ? -stmnScrollAmount : stmnScrollAmount ) + 'px'; 
			stmnRefreshTimer = stmnScrollSpeed; 
			}
		stmnTimer = setTimeout("RefreshStaticMenu();", stmnActivateSpeed); 
		} 
	function InitializeStaticMenu() {
		document.getElementById('STATICMENU').style.left = stmnLEFT + 'px'; 
		document.getElementById('STATICMENU').style.top = document.body.scrollTop + stmnBASE + 'px'; 
		RefreshStaticMenu();
		}

document.write("<div id='STATICMENU' style='width:85px; height:266px; position:absolute; left:914px; top:266px; z-index:1;'> <a href='#' onfocus='this.blur()'>   <table border='0' cellspacing='0' cellpadding='0' height='257'><tr><td><object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='90' height='257'>        <param name='movie' value='img/quick.swf?pageNum=2' />      <param name='quality' value='high' />		<param name='wmode' value='transparent' />     <embed src='img/quick.swf?pageNum=2' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='90' height='257'></embed>   </object></td>    </tr>    <tr>      <td height=3><div align='center'><a href='#'><img src='img/q_top.gif' width='79' height='20' border='0' /></a></div></td>    </tr>  </table></div>");

InitializeStaticMenu();