if(alpha > 255) alpha = 255;
// bubbles
bubbleTimer++;
if(bubbleTimer == 60) {
bubbles.add(new Bubble(Math.random() * 540 - 100, Math.random() * 100 + 480));
bubbleTimer = 0;
}
for(int i = 0; i < bubbles.size(); i++) {
if(bubbles.get(i).update()) {
bubbles.remove(i);