function showhide(id) {
	var textBlock = document.getElementById(id);
	(textBlock.className == 'show') ? textBlock.className = 'hide' : textBlock.className = 'show';
}

function hide_on(id) {
	var textBlock = document.getElementById(id);
	textBlock.className = 'hide';
}