﻿//toggles a details element by sliding it down and then sliding it up
//on the next call.
function tgd(id){
  Effect.toggle($('details_' + id), 'slide', { duration : 0.1 })
}