function switch_top(n){
	for(var i=1;i<=4;i++){
		var topnav=document.getElementById("topnav"+i);
		if(n==i){
			topnav.className="current";
			document.getElementById("softip").className = "b"+i;
		}else{
			if(i == '1'){
				topnav.className="unicom";
			}else if(i == '2'){
				topnav.className="telecom";
			}else if(i == '3'){
				topnav.className="mobile";
			}else if(i == '4'){
				topnav.className="other";
			}
		}
	}
	showDownlist(n);
}
