$('#bigImg img:first').animate({'opacity':0}, 150, function(){
$('#loading').show();
this.src=bigImgSrc;
this.onload = function(){
if(this.complete){
$('#loading').hide();
$(this).animate({'opacity':1}, 150);
}
}
});