//This function preloads all ad images listed below. Without this script, the ads will load as they are playing and create a sluggish animation.

var preloaded = new Array();
function preload_images() {
    for (var i = 0; i < arguments.length; i++) {
        preloaded[i] = document.createElement('img');
        preloaded[i].setAttribute('src',arguments[i]);
    };
};

//Enter path of images to be preloaded inside parenthesis. Extend list as desired.

preload_images(

'/images/ads/home/presby1.jpg',
'/images/ads/home/crestviewad.jpg'

);