/**
 * 
 */
(function ($) {
  
Drupal.behaviors.custom = {
  attach: function (context, settings) {
    //setTimeout(function(){$('.messages').fadeOut('slow');}, 30000);
    $('.messages', context).once('add_close_link', function (){
      $('<span class="close-message-link">x</span>').prependTo($(this)).click(function(e){
        $(this).parent().slideUp('slow');
      });
    });

  }
};

})(jQuery);
;

