window.addEvent('domready', function() {

  //

  var picturemaxx = {
    reg: /http:\/\/([^.]*).picturemaxx.com\/\?SEARCHTXT1=([0-9]*)/,
    form: null,
    text: null,
    init: function(){
      this.form = $('direktsuche');
      this.text = $('direktsuche-text');
      var links = $$('div.picturemaxx a');
      for( var i = 0 ; i < links.length ; i++ )links[i].addEvent('click',function(){picturemaxx.search(this);return false;});
    },
    search: function(e){
      var link = this.reg.exec(e.href);
      this.text.value = link[2];
      this.form.action = 'http://'+link[1]+'.picturemaxx.com/index.php';
      this.form.submit();
      this.form.action = 'http://jalaggate.picturemaxx.com/index.php';
    },
    debug: function(msg){
      window.status = msg;
    }
  };

  picturemaxx.init();
  
});
