jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}

$(document).ready(function() {
if($(".error:contains('One or more problems were detected with your Drupal installation. Check the status report for more information.')")){
//   $('.error').hide();
}
/*
if($('.error').text() == "One or more problems were detected with your Drupal installation. Check the status report for more information.") {
    $('.error').hide();
}
*/
});
	
