$(function () {

$("#appscreenshots a").each(function(index,el) { 

      $(this).click(function() {
      
        $('#mainimage').addClass('loading').empty();
      
        var img = new Image();

        $(img).load(function () {
                $(this).hide();
                $('#mainimage').removeClass('loading').html(this);
                $(this).fadeIn();
        }).attr('src', $(this).attr('rel'));
        
        return false;
        });
        
});

});

