$(document).ready(function() {
  
  if (!(jQuery.browser.msie && parseInt(jQuery.browser.version) < 7))
  {
    var flashHeight = '-' + $('.flash-notice').height() / 2 + 'px';
    $('.flash-notice').css({marginTop:flashHeight})
                      .hide()
                      .addClass('jqmWindow')
                      .jqm({overlay:80})
                      .jqmShow()
                      .animate({opacity:1.0},5000)
                      .fadeOut('slow',function(){
                        $(this).jqmHide();
                        $('#error-form').ready(function(){
                          $.scrollTo('#error-form',800);
                        })
                      });
  }
});
