// Currency localization is managed by Lodgify.
(function () {
var imageAlts = {
"620d57a3-dcf1-4669-9f3f-728e629dd3b4": "Front entrance of the Auburn Glamping geodesic dome surrounded by woods near Lake Martin",
"d7589219-bde9-4ea5-a9dc-0276e498a09a": "Aerial view of a boat cruising across Lake Martin between wooded shores",
"81f9caa1-7af4-445e-bfe1-d2ad6e16847d": "Living room and kitchen inside the Auburn Glamping dome with floor-to-ceiling woodland views",
"a45e83ab-d8d5-4d02-b648-fe6c7bbf9231": "Blue Adirondack chairs around a glowing fire pit beneath string lights in the woods",
"d1597653-2b51-487d-bd05-677dd85a4f4e": "Couple sharing drinks beside a campfire outside the illuminated glamping dome at dusk",
"07cb9a65-d53d-4980-9b6b-7d5265c2c952": "Geodesic dome and spacious outdoor deck surrounded by trees at Auburn Glamping",
"9a4a8f50-bfc8-4d27-a6e4-cee4287ab327": "Front entrance and wooden stairs of the Auburn Glamping dome in the forest",
"6b6a24e6-acd7-4334-bb9e-49a368a582a9": "Spacious living room and kitchen inside the geodesic dome with panoramic woodland windows",
"e7d4883c-d1e0-46b5-a704-ad8b47ed7d6b": "Private outdoor rainfall shower beside the Auburn Glamping dome"
};
function applyImageAlts() {
document.querySelectorAll("img").forEach(function (image) {
var source = image.currentSrc || image.src || "";
Object.keys(imageAlts).some(function (id) {
if (source.indexOf(id) !== -1) {
image.alt = imageAlts[id];
return true;
}
return false;
});
});
}
applyImageAlts();
new MutationObserver(applyImageAlts).observe(document.documentElement, {
childList: true,
subtree: true,
attributes: true,
attributeFilter: ["src", "srcset"]
});
})();