// 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 >= 220)
            { 
				objy();	
                return ;
             }
            else
                {
                    _f=_f+10;
					document.getElementById('two').style.width=_f+"px";					
	                window.setTimeout(timerDIV,1);
	            }
		}
		
		function objy()
		{
			if(y >= 130)
			{														    
				document.getElementById('two').innerHTML="<div style=\"width:200px;height:auto;float:left;font-size:12px;margin:6px;line-height:20px\">&nbsp;&nbsp;<font style=\"color:#7EA9BF;font-size:10px;\">&diams;<\/font>&nbsp;<a href=\"about.asp\">About us<\/a><br\/>&nbsp;&nbsp;<font style=\"color:#7EA9BF;font-size:10px;\">&diams;<\/font>&nbsp;<a href=\"news.asp\">News<\/a><br\/>&nbsp;&nbsp;<font style=\"color:#7EA9BF;font-size:10px;\">&diams;<\/font>&nbsp;<a href=\"product.asp\">products<\/a><br>&nbsp;&nbsp;<font style=\"color:#7EA9BF;font-size:10px;\">&diams;<\/font>&nbsp;<a href=\"Installation.asp\">Installation<\/a><br>&nbsp;&nbsp;<font style=\"color:#7EA9BF;font-size:10px;\">&diams;<\/font>&nbsp;<a href=\"12345.asp\">12345<\/a><br>&nbsp;&nbsp;<font style=\"color:#7EA9BF;font-size:10px;\">&diams;<\/font>&nbsp;<a href=\"contact.asp\">Contact us<\/a><br><\/div>";
				_content=document.getElementById('two').innerHTML;
				return ;
			}
			else
			{
				y+=10;				
				document.getElementById('two').style.height=y+"px";				
	            window.setTimeout(objy,1);
			}
		}