//VERY basic image preload plugin
//usage: $(['img1.jpg','img2.jpg','img3.jpg']).preload();
//from: http://stackoverflow.com/questions/476679/preloading-images-with-jquery
$.fn.preload = function() {
    this.each(function(){
        $('<img/>')[0].src = this;
    });
}
