I have the following code:
jQuery(document).ready(function() { setTimeout($(\'#loading\').fadeIn(\'slow\'), 9999); });
You can also use jQuery's .delay().
$('#loading').delay(9999).fadeIn('slow');