I would like this function to delay each animation inside the each function. That is one after the other. At the moment they all come through together.
$('.bounceholder ul:eq(' + bounceholder + ') li').each(function(){
$(this).delay(1000).animate({left: bounceoffset, top:-8, opacity:0.6, leaveTransforms:true}, {duration:600, queue:true});
bounceoffset += 160;
});