$(document).ready(function(){
  // show action confirmation for 5 seconds and then fadeout
  setTimeout(function(){
    $("#actionConfirm").fadeOut("slow", function () {
      $("#actionConfirm").remove();
    });
  }, 5000);
});


