function initMenu() {
  $('.showhide').hide();

  $('.tableInfo img').click(function() {
        $('#showhide' + $(this).attr('id')).slideToggle(500, 'swing');
      }
    );
  }

$(document).ready(function() {initMenu();});


