function init() {

	if (browserMinimal) {
	}
	else {
	  $$(".jsdontshow").setStyle("display", "none");

	  $$('#menue ul li a')
             .addEvent('mouseover', function (x) {
                                        if (!this.getFirst().getProperty('src').test("_ro")) {
                                         this.getFirst().setProperty('src',
                                                 this.getFirst().getProperty('src').substr(0,
                                                     this.getFirst().getProperty('src').length - 4) 
                                                 + "_ro.png");
                                        }
                                    })
             .addEvent('mouseout', function (x) { 
                                        if (this.getFirst().getProperty('src').test("_ro")) {
                                          this.getFirst().setProperty('src',
                                                 this.getFirst().getProperty('src').substr(0,
                                                     this.getFirst().getProperty('src').length - 7) 
                                                 + ".png");
                                        }
                                   });

	}
	
}		
function toggle_bling (slide)
{ 
	slide.element.style.display ="block";
	slide.toggle();
}

/* general stuff */
function submit_me(it) {
	if (browserMinimal) {
	}
	else {
	  var input = $(it);
	  $(it).form.submit();
  }
}

/* SUCHMACHINE */


