window.addEvent('domready', function() {
  $$('div.navPoints a, div.footer a').each(function(el){
    if(!el.get('href').match('#')){
      el.addEvent('click', function(e){
        new Request({
          url: 'index.php?doNav='+el.get('name').replace('nav_','')
        }).send();
      });
    }
  });
  $each($$('.doExt'), function(el){
    el.addEvent('click', function(e){
      e.stop();
      window.open(el.get('href'));
    });
  });

  $each($$('a._popUp'), function(el){
    el.addEvent('click', function(e){
      e.stop();
      var winWidth = 950;
      var winHeight = 700;
      var w = (screen.width - winWidth)/2;
      var h = (screen.height - winHeight)/2 - 30;
      var url = 'ajax.php?m=bid';
      var name = 'Bewerbung';
      var features = 'scrollbars=yes,location=no,menubar=no,toolbar=no,statusbar=no,resizable=no,width='+winWidth+',height='+winHeight+',top='+h+',left='+w;
      window.open(url,name,features);
    });
  });
});
