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

