<!--
var ie4 = document.all;
var menu = 'company,data,support,quality,host,domens,hostino,webdesign,pay,faq,article,question,cooperation,exposition,press_centre,vacancy,contact,company_news,internet_news'.split(',');
for (var i=0; i<menu.length; i++) menu[menu[i]] = new Rollover(menu[i]);
var urlArr = document.location.href.split('../');
var chapter = urlArr[urlArr.length-2];

document.onmouseover = new Function('e',"if (ie4) var t = event.srcElement.name; else var t = e.target.name; if (menu[t] && t!=chapter) document.images[t].src = 'img/menu/' + t + '_over.gif';");
document.onmouseout = new Function('e',"if (ie4) var t = event.srcElement.name; else var t = e.target.name; if (menu[t] && t!=chapter) document.images[t].src = 'img/menu/' + t + '.gif';");

function Rollover(name){
	this.img = new Image();
	this.img.src = 'img/menu/' + name + '_over.gif';
}
//-->