// скрытие блоков
function showhint(id) {
		if (document.getElementById(id).className == 'hint') {
			document.getElementById(id).className='nohint';
			document.getElementById(id+'2').className='nohint';
			document.getElementById(id+'inv').className='hint';
		}
		else if (document.getElementById(id).className == 'nohint') {
			document.getElementById(id).className='hint';
			document.getElementById(id+'2').className='hint';
			document.getElementById(id+'inv').className='nohint';
	}
}

