That's because fadeIn() and fadeOut() uses opacity, so you image just become 'invisible'.
If you need fadeout and fade in you can use callback function to set opacity back.
$('*').fadeOut('slow', function() {
$(this).css({
'opacity' : 1,
'display' : 'block'
});
});
Or just put a fadeIn() on fadeOut(), I think the second is better:
$('*').fadeOut('slow', function() { $(this).fadeIn(); });
You should change you code in this way:
/**
* binding 'click' event I would advice you to use not .click(fucntion(e) {}) but .live('click', function(e) {});
* differrence is that, if you load via AJAX, or construct another element by javascript, and append it to the DOM
* your trigger would'nt work, because it's runs binding only on page load, and if the page changes
* it wouldn't bind trigger to the new elements, how does this .live('click', fucntion(e) {});
*/
$('#thumbs img').click(function(){
var img = $(this); // storing image, that was clicked
$('#mainimg img').fadeOut('slow', function() { // fading out mainframe image
// linking the callback function on when the main image if faded out
$(this).attr('src', img.attr('src').replace('thumb','large')); // when image is already invisible, changing the source of the image
$(this).fadeIn('slow'); // fade in mainframe image again
});
});
If I get you right, that cause Main image to fade out, change source, and while fade in loading big image as a src.