<!--PreLoadMenu JS-->

<!--
function doPreload()
{
	var the_images = new Array(
	'Gifs/SL-ButtonDown.GIF',
	'Gifs/SL-CabinUnit-ON.GIF',
	'Gifs/SL-Spa-Fireplace-ON.GIF',
	'Gifs/SL-CabinWithAview-ON.GIF',
	'Gifs/SL-Riverwalk-Patio-ON.GIF',
	'Gifs/SL-Fishing-ON.GIF',
	'Gifs/SL-Units1-2-ON.GIF',
	'Gifs/SL-Map-Directions-ON.GIF',
	'Gifs/SL-WesternUnit-ON.GIF',
	'Gifs/SL-email-ON.GIF',
	'Gifs/SL-Wildlife-ON.GIF'
	);
	preloadImages(the_images);
}
function preloadImages(the_images_array) {
	for(loop = 0; loop < the_images_array.length; loop++)
	{
   		var an_image = new Image();
		an_image.src = the_images_array[loop];
	}
}
