	jQuery(window).load(function() {
		if ($.browser.msie  && parseInt($.browser.version) < 9) {
		} else {
			move_bubbles();
		}
	});
	
	function move_bubbles() {
	
		var i = 0;

		var mytop = ["-=10px", "+=10px", "+=12px", "-=2px", "-=18px"];
		var myleft = ["+=10px", "+=10px", "-=8px", "-=18px", "+=2px"];
		
		jQuery("#the-bubbles li").each(function(index, value) {
			moveObject(jQuery(this), mytop[i], myleft[i], index);
			i++;
		});
	}
	
	function moveObject(id, dirTop, dirLeft, myindex) {
		var elem = {};
		elem["opacity"] = 1;
		elem["top"] = dirTop
		elem["left"] = dirLeft

		id.delay(300 * myindex).animate(elem, 'slow');		
	}
