// Anything site-wide should go in this file

// fadesOut the notice message flag in a cool fashion
$(function(){
  setTimeout(function(){
    $("#success").fadeOut();
  }, 5000);
});
