$(document).ready(function() { 

  if($('#message_container div.flash_notice').length > 0)
  {
     $('#message_container div.flash_notice').hide();
     var text = $('#message_container div.flash_notice').html();
      $(function(){
	jQuery.noticeAdd({
	  text: text,
	  stay: false,
	  stayTime: 4000,
	  type: 'success'
	});
      });
  }

  if($('#message_container div.flash_error').length > 0)
  {
    $('#message_container div.flash_error').hide();
    var text = $('#message_container div.flash_error').html();
    $(function () {
      jQuery.noticeAdd({
	text: text,
	stay: false,
	stayTime: 4000,
	type: 'error'
      });
    });
  }
});
