$(document).ready(function(){
setTimeout(function(){$('.preloader').fadeOut()}, 5000);
});
This little bit of basic code shows a loading icon that fades out as the document loads. As you can see here http://www.intelligen.info it is slowly showing the content before it has loaded.
How do I change the above code so that it hides all content until it has completely loaded?