$(function() {
	$('.gallery_item img').hide();
	
	$('.gallery_item').each(function(){

		var width = $(this).width();
		var height = $(this).height();

		console.log('width = '+width);
		console.log('height = '+height);
		
//		$(this).hide();
//		$(this).css( { 'height': height, 'width' : width } );

		$(this).children('img').fadeIn(500);
		
	});
});
