﻿function preloadImages(arrayOfImages) {
    $(arrayOfImages).each(function() {
        $('<img/>')[0].src = this;
        // Alternatively you could use:
        // (new Image()).src = this;
    });
}

$(document).ready(function() {
    set_up_bs_link();
});
