﻿var theImages = new Array();

// theImages[0] = 'path/to/image.jpg'

theImages[0] = '/system/assets/images/bg/home-carousel-pager.png';
theImages[1] = '/system/assets/images/input/textBox-popup-2.png';
theImages[2] = '/system/assets/images/bg/basket-bg.png';

var j = 0;
var p = theImages.length;
var preBuffer = new Array();
for (i = 0; i < p; i++) {
    preBuffer[i] = new Image();
    preBuffer[i].src = theImages[i];
}
