jQuery(function( $ ) {
	
	$('.p-gallery-images').fadeOut(0);
	
	var width	=	0;
	var loaded	=	0;	
	images		=	$('img.gallery-image').size();
	
	$('img.gallery-image').each(function(e) {
		
		image1	=	new Image();	
		image1.onload = function(){
			width	+=	(this.width + 120);
			++loaded;
			
			setSize();
		};	
	
		image1.src	=	this.src;
	});
	
	function setSize ( ) {
		
		if (loaded < images) {
			return;
		}
		
		//$('#breaker').css('width', width + 'px');
		
		$('div.p-gallery-images').css('width',width + 'px');
		$('.p-gallery-images').fadeIn(1000);
	}
	
	
});