Here is the expression from the "grunge tutorial":
veloc = 18;amplitude = 60;decay = 2;t=time - key(2).time;if (t<0){value}else{x=amplitude*Math.sin(veloc*time)/Math.exp(decay*t);value + [x,0]}