$(document).ready(function(){
    $('#tea-pic img').animate({
        opacity: 1.0
    }, 1000);
    $('#circlebg').animate({
        opacity: 1.0
    }, 1000);
    var i = 0;
    $('#ing img').each(function(){
        i++;
        $(this).show('fast').animate({
            opacity: 1.0
        }, i * 50);
    });
});
