/**
* toggle a box open/closed using a slide animation
**/
function toggleBox(nId) {
  divId = 'div#'+nId ;
  $(divId).slideToggle("slow");
}
