* Prepare a bunch of effects. Need to add them here for header
* contribution.
*/
postEffects = new ArrayList<AbstractJqueryUiEffect>();
Blind blindOut = new Blind();
add(blindOut);
blindOut.setDirection(EffectHorVerDirection.VERTICAL);
blindOut.setMode(EffectMode.HIDE);
blindOut.setSpeed(1000);
postEffects.add(blindOut);
Blind blindIn = new Blind();
add(blindIn);
blindOut.setDirection(EffectHorVerDirection.HORIZONTAL);
blindIn.setMode(EffectMode.SHOW);
blindIn.setSpeed(1000);
blindIn.setEffectClass("blindInClass");
postEffects.add(blindIn);
Bounce bounceHide = new Bounce();
add(bounceHide);