Help with animated blur effect

With the help of the Animated effects tutorial here, I have been trying to make an animated blur effect for titles.

I want each title to blur in, blur out, fade, and then go to the next title.

I am stuck at the blur in (go figure) Take a look at my AS:

"import flash.filters.BlurFilter;
var gf:BlurFilter = new BlurFilter(15, 15, 100);
kText.filters = [gf];
kText.onEnterFrame = function() {

if (gf.blurX > 0) {

gf.blurX--;
gf.blurY--;

} };"

Thanks in advance for any help

Corey