$(document).ready(function() {
        
	$('.gallery img').each(function(i) {

	$(this).delay(i*100).css('opacity',0).animate({opacity:1}, 1000);
});	});

