$(document).ready(function(){
  $('.show-map').each(function(){
    if ($.trim($(this).text()) == 'Yes') {
       $(this).next().addClass('show');
    }
  })

  $('.show-seminars').each(function(){
    if ($.trim($(this).text()) == 'Yes') {
       $(this).next().addClass('show').find('a:first-child').addClass('link-as-button');
    }
  })

  $('.show-gallery').each(function(){
    if ($.trim($(this).text()) == 'Yes') {
       var galleryText = $(this).next().text();
       $(this).next().addClass('show').find('a:first-child').addClass('link-as-button');
       $(this).next().find('a:first-child').text($.trim(galleryText));
    }
  })

})