I would like to have an image appear on the screen immediately and then fade out and display a webpage so it appears to fade into the webpage. For some reason I am getting strange results I am not an expert in jQuery but I feel I might be close to what I want. Here is a fiddle
$(".splash").delay(2000).fadeOut(2000, function() {
$( "#result" ).load( "http://google.com" ).fadeIn(2000);
});
Basically it should display the cat for 2 seconds and then fade into the Google website.