function menu_open(id,maxid) {
	for(x=1; x<=maxid; x++) {
		//alert('BEZAR: '+x);
		document.getElementById('menu_' + x).className='site_menu_rejtett';
	}
	//alert('MEGNYIT: ' + id);
	document.getElementById('menu_' + id).className='site_menu_lathato';
}
function menu_close(maxid) {
	for(x=1; x<=maxid; x++) {
		//alert('BEZAR: '+x);
		document.getElementById('menu_' + x).className='site_menu_rejtett';
	}
}
