$(function(){
  $('.error').animate({opacity:0.9},600)
  $('form').submit(function(){
    $('.error').animate({opacity:0},'slow')
  })
})

