jQuery(document).ready(function() {

  jQuery(".paljasta").hover(function() {
    jQuery("ul", this).show();
  }, function() {
    jQuery("ul", this).hide();
  });

});

