function close_box(n) {
  var contentNode = n.parentNode.parentNode.nextSibling.childNodes[0];
  new Effect.BlindUp(contentNode, {duration: 0.5});
}
function open_box(n) {
  var contentNode = n.parentNode.parentNode.nextSibling.childNodes[0];
  new Effect.BlindDown(contentNode, {duration: 0.5}); 
}
