function show(id) {
	document.getElementById(id).className = 'on';
}

function hide(id) {
	document.getElementById(id).className = 'off';
}
