/*
	Slimbox v1.68 - The ultimate lightweight Lightbox clone
	(c) 2007-2008 Christophe Beyls <http://www.digitalia.be>
	MIT-style license.
*/

window.addEvent("domready", function(){
	$$("img.men").forEach(function(element){
             element.addEvents({
               	'mouseenter': function() {element.src = element.src.replace(/_no/g,'_hl')},
               	'mouseleave': function() {element.src = element.src.replace(/_hl/g,'_no')}
			}); 
	}); 

  if($('haftung')) {
    var myAccordion = new Accordion($$('.title_haft'), $$('.text_haft'), { display: 0, alwaysHide: true });
  }


}); 