$(function(){
$('img').each(function(){
$(this).load(function(){
$(this).show();
});
});
});