/*var invisibleImage = 'images/test-image-1.jpg';
var invisibleImageThumb = 'images/test-image-1-thumb.jpg';
*/
$(function()
{
    $(".gallery-1-2 a").click(function()
        {
	  var imageSource = $(this).attr("href");
	  $(this).parent().parent().parent().find('.loader').children('img').fadeOut("fast");
	  var tmpInvisibleImage = $(this).parent().parent().find('li').slice(0,1).children('a').attr('href');
	  var tmpInvisibleImageThumb = $(this).parent().parent().find('li').slice(0,1).children('a').children('img').attr('src');
	  $(this).parent().parent().find('li').slice(0,1).children('a').attr('href', $(this).attr("href"));
	  $(this).parent().parent().find('li').slice(0,1).children('a').children('img').attr('src', $(this).children("img").attr("src"));

          showBigImage(this, imageSource);
          $(this).attr('href', tmpInvisibleImage);
          $(this).children('img').attr('src', tmpInvisibleImageThumb);

          return false;
        });
});

function showBigImage(obj, src)
{
$(obj).parent().parent().parent().find('.loader').children('img').attr("src", src).load(function()
             	{
             	$(obj).parent().parent().parent().find('.loader').children('img').fadeIn("slow");
                });

}