$(document).ready(function() {
   $(".show").click(function() {
     $(this).children("ul").toggle("normal");
   });
});