function ShowHide(no) {
	obj = document.getElementById('MenuBody' + no);
	img = document.getElementById('Arr' + no);
	e = document.images['E'];
	if (obj.style.display == 'none') {
		obj.style.display = 'block';
		img.src = 'http://media.e2c.ru/img/i/ico-up.gif';
		e.src = '/menu.php?id=' + no + '&mode=on';
	} else {
		obj.style.display = 'none';
		img.src = 'http://media.e2c.ru/img/i/ico-down.gif';
		e.src = '/menu.php?id=' + no + '&mode=off';
	}
}
