window.addEvent('domready',function(){
  var hpSlider = new StrongerAccordion($('slider'),'a.toggler','div.slide',{
    fixedHeight: 155,
    show: 0,
    opacity: false,
    fixedBottom: true,
    onActive: function(t,e) {
      t.addClass('current-slide');
    },
    onBackground: function(t,e) {
      t.removeClass('current-slide');
    }
  });
});