$(document).ready(function(){

    $("i").hide();
	$("img").hide().load(function(){
	   $("i").fadeIn(3000);
	   $(this).remove();
	});

});