jQuery.fn.slideToggle = function(s, fn){
    return (this.is(":visible"))
        ? this.slideUp(s, fn)
        : this.slideDown(s, fn);
};