Options 

(function ($) {
    "use strict";

    $.fn.highlight = function(opt) {
        return this.css(opt || $.fn.highlight.defaults);
    };

    $.fn.highlight.defaults = {
        border: '2px dotted #ff9000'
    };

})(jQuery);