function headerImage()
{
      $('#tumbpage a').live('click', function(){
          $(this).parent().find('.current').removeClass('current');
          $(this).addClass('current');
          $.get('/ajax/index/part/' + $(this).html(), function(data) {
             $('#targettumb').html(data);
            
          });
          return false;
      });
      $('a.thumb').live('click', function(){
          desc = $(this).attr('title');
          imgsrc = $(this).attr('href');
          imgEl  = $('<img/>', {src:imgsrc, alt: desc,  css : {opacity: 0}});
          $('#targetimg').addClass('loading');
          $('#targetimg').find('img').remove();
          $('#targetimgdesc').css('display', 'none');
          $(imgEl).load(function(){
              $('#targetimg').html(imgEl);
              $('#targetimg').removeClass('loading');
              $('#targetimgdesc').css('display', 'block').html(desc);
              $(imgEl).animate({opacity : 1}, 300);
          });
          return false;
      });
}

