$('#gallery .thumbs a').on('click', function(e) {
e.preventDefault();
var url = $(this).children('img').attr('src');
var th = $(this).parent('.thumbs');
var fl = th.siblings('.full');
var im = fl.children('img');
im.animate({
opacity: 0
}, 1, function() {
im.attr('src', url);
im.animate({
opacity: 1
}, 1);
});
});