window.addEvent('domready', function() {
  if($('tx_indexedsearch_sword')) {
    $('tx_indexedsearch_sword').addEvent('click', function(clickEv) {
      if(this.get('value') == 'Suchbegriff') {
        this.set('value', '');
      }
    });

    $('tx_indexedsearch_sword').addEvent('blur', function(clickEv) {
      if(this.get('value') == '') {
        this.set('value', 'Suchbegriff');
      }
    });
  }

  if($type($$('.teaserText'))){
    var teaser = $$('.teaserText');
    if(teaser.length > 0) {
      teaser = teaser[0];

      var accoOpts = {
        display: -1,
        initialDisplayFx: false,
        alwaysHide: true,
        onActive: function(t, e){
          t.addClass('active');
        },
        onBackground: function(t, e){
          t.removeClass('active');
        }
      };
      var acco = new Fx.Accordion(teaser.getElements('.entryHeader'), teaser.getElements('.entryText'), accoOpts);
    }
  }

/*$$('.print').addEvent('click', function(clickEv) {
    new Event(clickEv).stop();
    window.print();
  });*/
});
