$(function () {

    $(".galleryTh").click(function () { 
        $('.activeImage').hide(); 
        var href = $(this).attr('href');  
        $('#loader').addClass('loading');     
        var img = new Image();
        $(img).load(function () {
            $(this).hide();
            $('#loader').removeClass('loading').append(this);
            $(this).fadeIn();
        }).error(function () {
        }).attr('src', href).attr('class', 'activeImage');
        return false;
    });  
});


