/*
 * Copyright (c) 2009 Tom_Pascal
 *
 * No Permission granted - No copy allowed
 */
;(function($) {
    function Aron(elem, conf) {
        // Create aron
        var aronB = $('<div class="aron-bottom">&nbsp;</div>').insertAfter(elem);
        var aronT = $('<div class="aron-top">&nbsp;</div>').insertBefore(elem);
    }

    $.fn.aron = function(conf) {
        var defaultConf = {};
        $.extend(defaultConf, conf);
        this.each(function() {
            var el = new Aron($(this), defaultConf);
            $(this).data("aron", el);
        });
    }
})(jQuery);

