function hmenu_open(id,maxid) {
	for(x=1; x<=maxid; x++) {
		//alert('BEZAR: '+x);
		document.getElementById('hmenu_' + x).className='site_hmenu_rejtett';
	}
	//alert('MEGNYIT: ' + id);
	document.getElementById('hmenu_' + id).className='site_hmenu_lathato';
}
function hmenu_close(maxid) {
	for(x=1; x<=maxid; x++) {
		//alert('BEZAR: '+x);
		document.getElementById('hmenu_' + x).className='site_hmenu_rejtett';
	}
}
