$(function()
{
    $("#gallery a").click(function()
        {
        $("#handhold").hide();
        $("#loadme").show();
        var imageSource = $(this).attr("href"); 
       
        $("#loader").addClass("loading");
        $("h3").remove();
          showImage(imageSource);
          return false;
        });
        $("#loadme").click(function()
        {
        $("#handhold").show();
        $("#loadme").hide();
         
        });
});

function showImage(src)
{
$("#loader img").fadeOut().remove();
var largeImage = new Image();
$(largeImage).load(function()
                        {
                        $(this).hide();
                        $("#loader").removeClass("loading").append(this);
                        $(this).fadeIn();              
                        });    
$(largeImage).attr("src", src);                                                                               
}


