/*
  expander.js  -  Expander widget
  Copyright 2008 Thomas de Grivel <billitch@gmail.com>

  Requires prototype.js scriptaculous.js
*/

function create_expander(button,content)
{
    var b = (typeof button == 'string') ? $(button) : button;
    var c = (typeof content == 'string') ? $(content) : content;
    b.onclick = function () { Effect.toggle(content,'blind'); };
}
