function swit(x) {
	$.id('Chinese').style.display = x == 'c' ? 'block' : 'none';
	$.id('English').style.display = x == 'e' ? 'block' : 'none';
}

function autorun() {swit('c');}