
setTimeout(function() {
    $('#error').fadeOut('slow');
    $('#msg').fadeOut('slow');
    $('#msgUpdate').fadeOut('slow');
}, 5000);

$(document).ready(function() {
  $('#msg').click(function() {
    //alert('this is an alert message');
    $(this).fadeOut('slow');
  });
});
