(function($) {

$.fn.showShort = function() {
    
    this.slideDown("slow");
    showShortHelperFunction(this);
    return this;
    
};

})(jQuery);


function showShortHelperFunction(a)
{
    setTimeout( function() { a.slideUp("slow"); }, 5000 );
}
