$(document).ready(function() {
  $(".show").click(function() {
    $(this).children("ul").toggle("normal");
  });
  
  $(".show2").click(function(element) {
    var rel=$(this).attr('rel');
    $('#'+rel).toggle("normal");
  });
});

