function hnavOpen(id)
{
  $('plus' + id).style.display = 'none';
  $('minus' + id).style.display = 'inline';
	$('children' + id).style.display = 'block';
}

function hnavClose(id)
{
  $('plus' + id).style.display = 'inline';
  $('minus' + id).style.display = 'none';
	$('children' + id).style.display = 'none';
}