jQuery(document).ready(function() {
  var body = jQuery('body');
  // setting xml:lang
  if(body.hasClass('section-english'))
    jQuery('#main').attr('xml:lang', 'en')
  
  // set empty dd to height 1
  if(body.hasClass('template-atct_topic_event_view')) {
    jQuery('#content-core dl dd').each(function(){
      var dd = jQuery(this);
      if(dd.text().trim().length == 0)
        dd.height(1);
    });
  }
});
