﻿
// Prototype 1.4.0 or later
Effect.SlideUpAndDown = function(strElementId, arrOptions) {
  var objElement = $(strElementId);
  if(objElement.visible(objElement)) new Effect.SlideUp(objElement, arrOptions);
  else new Effect.SlideDown(objElement, arrOptions);
}
