


$(document).ready(function () {
	
	var intTime = 0;
	$('#animationContent div').each(function(i){
	  var _this = this;
	  window.setTimeout(function(){$(_this).fadeIn('100');}, intTime);
	  intTime += 1000;
	});
	

});
