function comm(){
	var str='';
    
	str+='
| ';
	
	str+='我的订单 ';
	str+='  ';
	
	str+=' | ';
	
		
	str+='';
	
	str+='进度查询 ';
	str+='  ';
	
	str+=' | ';
    
    return str;
};
document.write('');
	document.write('| 你好,欢迎来到知易网! | ');
	
	document.write('');
	document.write('请 登录');
	document.write(' | ');
		
	document.write('');	
	document.write('免费注册');
	document.write(' | ');
	
	document.write( comm() );	
	
	
	
document.write(' 在线付款 | ');
document.write('| 热线:400-656-7576 | ');
document.write('
');
$("#order").hover(function() { 
	document.getElementById('orderList').style.display=''; 
}, function() { 
	document.getElementById('orderList').style.display='none';
});
$("#proc").hover(function() { 
	document.getElementById('procList').style.display=''; 
}, function() { 
	document.getElementById('procList').style.display='none';
});