Trigger A jQuery Animation After The Page Has Loaded (no clicks, no hovering, etc.)

Trigger A jQuery Animation After The Page Has Loaded (no clicks, no hovering, etc.)

After tons of googling and looking on this site I have found many similar topics but nothing that seems to help me answer this question. I am using a simple animation that fades one image into another like so:

$(window).load(function(){
$('div.fade').hover(function() {
var fade = $('> div', this);
if (fade.is(':animated')) {
fade.stop().fadeTo(3000, 1);
} else {
fade.fadeIn(0);
}
}, function () {
var fade = $('> div', this);
if (fade.is(':animated')) {
fade.stop().fadeTo(3000, 0);
} else {
fade.fadeOut(3000);
}
});
});


Works just fine, if I wanted to leave it as a mouse over. I want, when I go to www.blahwhatever.com, this animation of the fading images to happen automatically. So I go to the page, and after a few seconds, the animation happens. I can't seem to figure out how to remove the hovering action. I've deleted the line completely to no avail and have looked all over the place and can't find anything I understand. Can anyone please help? Much appreciated.