$(document).ready(function() {
	$('.box').css('opacity', 0);
	
	$('.box .image. img').load(function() {
		$(this).data('loaded', true);
		if($(this).siblings().data('loaded') == true) {
			$(this).parent().parent().animate({opacity:1}, 500);
		}
	});
	
	$('.box .image').hover(function(){
		$('img.pb', this).fadeOut(250);
	}, function(){
		$('.pb', this).fadeIn(500);
	})

});
