jQuery(function(){
  
  jQuery(".opener").each(function() {
    jQuery.data(this, 'dialog', jQuery(this).next());
  }).click(function() {
   jQuery.data(this,'dialog').dialog('open');
   
  });
  
  jQuery(".more-information").dialog({
    autoOpen: false,
    zIndex: 3999,
    modal: true,
    title: "Weitere Information"
  });
  
  jQuery(".view-branchen .view-header .view-kategorien a").click(function(event) {
     
     event.preventDefault();
     
     var kat = jQuery(this).text();
     
     jQuery(".view-branchen .view-header + .view-content .field-content a").each(function(){
       jQuery(this).attr("class","not-active");
       if(jQuery(this).attr("title") == kat) {
        jQuery(this).attr("class","active");
       }
     });
     
     
  });
  
});;

