var Lab, Rehab;

function init()
{
  Lab = new fx.Combo('LabDiv', {height: true, opacity: true, duration: 500});
  Rehab = new fx.Combo('RehabDiv', {height: true, opacity: true, duration: 500});

  // Hide them to begin with
  Lab.hide();
  Rehab.hide();

}

