if (window.RaggaEasy) {

  RaggaEasy.removeSelector = '.stream, p.buttons, div.chapters, .imgbanner, div.content .abc, div.topofpage';

  // check for redundant (repeated) h2.boxhd and h1 headline texts.
  EEvent.add(RaggaEasy, 'PrepDOM', function (e) {
    var _boxhd = DOM.get('.boxhd', e.contElm)[0];
    if (_boxhd)
    {
      var _h1 =  DOM.get('h1', e.contElm)[0];
      if (_h1  &&  DOM.innerText(_h1) == DOM.innerText(_boxhd))
      {
        DOM.removeNode(_boxhd);
      }
    }
  });

}

