$(function(){
  $('.nohide').each(function(){
      $(this).parent().show();
      $(this).parent().parent().show();
      $(this).next().show();
  });
});
