// JavaScript Document
jQuery.fn.slideFadeToggle = function(speed, easing, callback) {
  return this.animate({opacity: 'toggle', height: 'toggle', top: 'toggle'}, speed, easing, callback);
};
