<!--PreLoadMenu JS-->

<!--
function doPreload()
{
	var the_images = new Array(

'FC-Button-ReservationsOUT.GIF',
'FC-Button-HomeOVER.GIF',
'FC-Button-LinksOVER.GIF',
'FC-Button-ActivitiesOVER.GIF',
'FC-Button-MapOVER.GIF',
'FC-Button-PhotosOVER.GIF',
'FC-Button-CottageInfoOVER.GIF',
'FC-Button-Cottage4OVER.GIF',
'FC-Button-Cottage3OVER.GIF',
'FC-Button-Cottage2OVER.GIF',
'FC-Button-ReservationsOVER.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];
	}
}
