function lnMaps(){var directoryURL = document.location.pathname;var landingContent = document.getElementById("mapsArea");switch(directoryURL){	case "/Experience/index.html":	var experience = ''	+ '<map name="landingMaps">'	+ '<area shape="rect" alt="Events" coords="15,194,58,207" href="/Visit/Calendar/ViewAll/index.html">'	+ '<area shape="rect" alt="Workshops, Programs" coords="14,169,154,185" href="/Experience/WorkshopsPrograms/Overview/index.html">'	+ '<area shape="rect" alt="Exhibits" coords="115,146,167,160" href="/Visit/Calendar/Exhibitions/index.html">'	+ '<area shape="rect" alt="Gardens" coords="42,74,93,89" href="/Experience/Gardens/Overview/index.html">'	+ '<area shape="rect" alt="Nature" coords="77,49,119,64" href="/Experience/NatureAreas/Overview/index.html">'	+ '</map>'	+ '';	landingContent.innerHTML = experience;	break		case "/History/index.html":	var history = ''	+ '<map name="landingMaps">'	+ '<area shape="rect" alt="East Central Indiana" coords="14,216,146,232" href="/History/CentralIndiana/History/gas_boom.html">'	+ '<area shape="rect" alt="Family" coords="168,96,206,112" href="/History/BallFamilyLegacy/Overview/index.html">'	+ '<area shape="rect" alt="Gathering Place" coords="76,50,169,65" href="/History/GatheringPlace/Overview/index.html">'	+ '</map>'	+ '';	landingContent.innerHTML = history;	break		case "/Visit/index.html":	var visit = ''	+ '<map name="landingMaps">'	+ '<area shape="rect" alt="What\'s Happening Today" coords="13,169,169,185" href="/Visit/Calendar/ViewAll/index.html">'	+ '<area shape="rect" alt="Driving Directions" coords="98,145,208,160" href="/Visit/Directions/index.html">'	+ '<area shape="rect" alt="Reservations" coords="15,146,94,159" href="/Visit/TicketsReservations/index.html">'	+ '<area shape="rect" alt="Admission" coords="138,122,205,135" href="/Visit/TicketsReservations/index.html">'	+ '</map>'	+ '';	landingContent.innerHTML = visit;	break		case "/Evnt/index.html":	var planEvent = ''	+ '<map name="landingMaps">'	+ '<area shape="rect" alt="Information" coords="14,242,88,257" href="/resources/images/contacts/amandaK.gif">'	+ '<area shape="rect" alt="Parties" coords="14,193,60,210" href="/Evnt/SpecialtyParties/index.html">'	+ '<area shape="rect" alt="Receptions" coords="58,168,122,185" href="/Evnt/SpecialtyParties/index.html">'	+ '<area shape="rect" alt="Meetings" coords="140,144,203,161" href="/Evnt/Corporate/index.html">'	+ '<area shape="rect" alt="Weddings" coords="16,145,79,162" href="/Evnt/Weddings/index.html">'	+ '</map>'	+ '';	landingContent.innerHTML = planEvent;	break		case "/Involved/index.html":	var involved = ''	+ '<map name="landingMaps">'	+ '<area shape="rect" alt="Employee" coords="75,242,135,256" href="/Involved/Employment/index.html">'	+ '<area shape="rect" alt="Donor" coords="94,217,132,231" href="/Involved/Donate/index.html">'	+ '<area shape="rect" alt="Sponsor" coords="26,218,78,231" href="/Involved/Sponsors/index.html">'	+ '<area shape="rect" alt="Business Partner" coords="98,192,201,208" href="/Involved/Partners/index.html">'	+ '<area shape="rect" alt="Volunteer" coords="27,194,85,207" href="/Involved/Volunteering/index.html">'	+ '<area shape="rect" alt="Member" coords="157,170,210,184" href="/Involved/Membership/index.html">'	+ '</map>'	+ '';	landingContent.innerHTML = involved;}}