function load_ajax_images(){
    $('.ajax-image').each(function(){      
      var img = new Image();
      var o = $(this);
      $(img).load(function () {                
          $(this).hide();
          o.removeClass('loading').append(this);                
          $(this).fadeIn();
        })
        .error(function () { }).attr('src', o.attr('rel'));
    });
    
    $('#bg_img').each(function(){      
      var img = new Image();
      var o = $(this);
      $(img).load(function () {                
          $(this).hide();
          o.removeClass('loading').append(this);
          $(this).fadeIn();
        })
        .error(function () { }).attr('src', o.attr('rel')).attr('class','mainBg');
    });
}
	
$(document).ready(function() {
	$("a[rel=agPHOTOS]").fancybox({
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'titlePosition' 	: 'inside',
		'padding' : 100,
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
    load_ajax_images();     	
});	
