(function($){

    var ns = $.mailto = $.mailto || {};

    $.fn.extend({
        customSubmit : function() {
            $(this).each(function(){
                var s = this;
                var b = $('<a href="#" class="js-submit">zoek</a>').click(function(){
                    s.click();
                });
                $(this).css({'position' : 'absolute', 'left' : '-5000px'}).after(b);
            });
            return this;
        }
    });

})(jQuery);
