var images = new Array();

function StartPreloading() {
	if(typeof(image_slide) !== 'undefined') {
		for (j = 0; j < toPreload.length; j++) {
			images[j] = new Image();
			images[j].src = toPreload[j];
		}
	}
}

$(document).ready(function(){StartPreloading();});
