// This is for preloading the swapout pics.
function doPreload() {
	var the_images = new Array(
	'../assets/images/gallery/pic_dp_1.jpg',
	'../assets/images/gallery/pic_dp_2.jpg',
	'../assets/images/gallery/pic_dp_3.jpg',
	'../assets/images/gallery/pic_dp_4.jpg',
	'../assets/images/gallery/pic_dp_5.jpg',
	'../assets/images/gallery/pic_dp_6.jpg',
	'../assets/images/gallery/pic_dp_7.jpg',
	'../assets/images/gallery/pic_dp_8.jpg',
	'../assets/images/gallery/pic_dp_9.jpg',
	'../assets/images/gallery/pic_dp_10.jpg');
	preloadImages(the_images);
}

function preloadImages(the_images_array) {
	for(var loop = 0; loop < the_images_array.length; loop++) {
	var an_image = new Image();
	an_image.src = the_images_array[loop];
}
}

