﻿$.fn.preload = function() {
    this.each(function() {
        $('<img/>')[0].src = this;
    });
};

String.prototype.trim = function() {
    return $.trim(this);
};
