////////////////////////////
// http://adipalaz.awardspace.com/experiments/jquery/accordion.html

///////////////////////////
(function($) {

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

