$(document).ready(function(){
   setTimeout(function(){
  $("#flashMessage").fadeOut("slow", function () {
  $("#flashMessage").remove();
      });
  $("#authMessage").fadeOut("slow", function () {
  $("#authMessage").remove();
      });
	}, 3000);
 });
(function ($) {
$.fn.vAlign = function() {
return this.each(function(i){
var h = $(this).height();
var oh = $(this).outerHeight();
var mt = (h + (oh - h)) / 2;
$(this).css("margin-top", "-" + mt + "px");
$(this).css("top", "50%");
$(this).css("position", "absolute");
});
};
})(jQuery);
