// global killswitch
if (Drupal.jsEnabled) {
  // wait till the DOM is loaded
  $(document).ready(function(){
  
    // animate drupal messages
    $("ul.status").fadeOut(200);
    $("ul.status").fadeIn(500);
    $("ul.error").fadeOut(200);
    $("ul.error").fadeIn(500);
    
  });
}

