Hoje vou mostrar como é simples fazer um galeria de imagens com jquery e ajax.
Com a jquery vamos fazer os efeitos para as imagens e com o Ajax vamos fazer o carregamento das imagens.
Vamos la, primeiro vc precisa do plugin da jquery.
Agora vamos criar a função para mostrar as imagens

$(function(){
        $("#boxImages").find("a").click(function(){
            var loader = $(".loading");
            var newImage = $(this).attr('href');
            var bigImage = $('#fullImage img').not(".loading");
            $.ajax({
              type:"GET",
              url: $(this).attr('href'),
              success:function(data){
              },
              complete: function(){
                loader.hide();
              },
              beforeSend: function(){
                loader.show();
                bigImage.attr('src', newImage);
              }
            });
            return false;
        });
    });


Precisaremos de uma imagem de “loading” para mostrar que a imagem esta sendo carregada

http://flaviomuniz.com/_img/loading.gif.

Vamos a estrutura do html

<script type="text/javascript" src="http://flaviomuniz.com/_js/jquery.js"></script>

    <script type="text/javascript" src="http://flaviomuniz.com/_js/default.js"></script>
    <script type="text/javascript">
        $ (document).ready(function(){
            $(".loading").hide();
        });
    </script>

O plugin default.js é onde se executa todas as funções para mostrar as imagens.

<div id="fullImage">
<img src="http://flaviomuniz.com/_img/loading.gif" class="loading" alt="Loading" title="Loading" width="52" height="21" />
<img src="" />
</div>

    <ul id="boxImages">

        <li><a href="linux1Big.jpg"><img src="linux.jpg" style="width:64px;"/></a></li>

        <li><a href="FirefoxLogo-main_Full.jpg"><img src="icon_firefox.gif" style="width:64px;"/></a></li>

    <ul>

Na div “fullImage” é onde a imagem grande irá aparecer.
Na ul boxImages, são as imagens em thumbnail com o link apontando para a imagem ja ampliada.
Com a estrura feita em ul li, fica facil você implementar o jcarousel para listar as imagens, ou algum outro plugin que você achar melhor.

Veja o resultado final
Demo