function $(name) { return document.getElementById(name) }

function show(obj, index) {
	for(i = index; i <= 8; i++) {
        $('header' + i).style.textDecoration = 'none';
        $('block' + i).style.display = 'block';
	}
    $('header' + index).focus();
}

