$(document).ready(function(){
 $('a[rel="lightbox"]').lightBox();

 $("#click").click(function(){ 
    $('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
    return false;
 });

});

function loadImage(id) {
   var pWrapper = $('#'+id).parent().parent().find('.big-image');
   var Wrapper = $(pWrapper).find('.big-image-wrapper');
   var heightWrap = $('.big-image-wrapper').css('height');

   if(heightWrap=='auto')
      heightWrap = $('.big-image-wrapper').find('img').attr('height')+20;
   $(pWrapper).css('height',heightWrap);
   $(Wrapper).fadeOut('slow', function(){
      $(Wrapper).load('/_ajax/loadImage.php',{idElem: id, text: 'Полный размер'},function(){
         $(Wrapper).fadeIn('slow');
         $('a[rel="lightbox"]').lightBox();
	 $(pWrapper).css('height','');
      });
   });
}
