$(function() {
	
	/* ANIMATION */
	$("#method li").css({opacity: 0});
	 
	var delay=0;
	var step=500;
	$("#method li").each(function() {
		$(this).animate({opacity: 0}, delay).animate({opacity: 1}, 300)
		delay=delay+step;
	})
	
	
})

