function display(category) 
{
	var whichcategory = document.getElementById(category);
	if (whichcategory.className=="show") 
	{
		whichcategory.className="hide";
	} else 
	{
		whichcategory.className="show";
	}
}

function hide(category)
{
  document.getElementById(category).className="hide";
}

function show(category)
{
  document.getElementById(category).className="show";
}

function showFunds()
{
  show('funds');
  hide('structured-notes');
}

function showSN()
{
  hide('funds');
  show('structured-notes');
}

function hideAll()
{
  hide('funds');
  hide('structured-notes');
}



