(function($){
  $(function(){

    $('<span>').html('X')
               .click(function(){
                  $(this).parent().hide();
               })
               .appendTo('.portlet-msg-error, .portlet-msg-info, .portlet-msg-success');

    
  });
}(jQuery));

