// JavaScript Document
		var _f=0;
		var y=0;
		var _content;
		function over(obj)
		{
			_f=0;
			y=0;
			document.getElementById(obj).innerHTML="";
			document.getElementById(obj).style.width="0px";
			document.getElementById(obj).style.height="1px";
			document.getElementById(obj).style.display="";
			timerDIV();
		}
		function Tout()
		{
			document.getElementById('two').style.display="none";
		}
		function Tover()
		{
			document.getElementById('two').style.display="";
		}
		function out(obj)
		{
			obj.style.display="none";
		}
		
		function timerDIV()
		{
           if( _f >= 100)
            { 
				objy();	
                return ;
             }
            else
                {
                    _f=_f+10;
					document.getElementById('two').style.width=_f+"px";					
	                window.setTimeout(timerDIV,1);
	            }
		}
		
		function objy()
		{
			if(y >= 50)
			{														    
				document.getElementById('two').innerHTML="<div style=\"width:100px;height:auto;float:left;font-size:12px;margin:6px;line-height:20px\"><a href=\"Index.asp\" style=\"font-size:10px;\">English</a><br/><a href=\"cn_Index.asp\" style=\"font-size:10px;\">Chinaese</a><\/div>";
				_content=document.getElementById('two').innerHTML;
				return ;
			}
			else
			{
				y+=6;				
				document.getElementById('two').style.height=y+"px";				
	            window.setTimeout(objy,1);
			}
		}