In [1]:
pip install researchpy bs4
Requirement already satisfied: researchpy in /opt/anaconda3/lib/python3.11/site-packages (0.3.6)
Collecting bs4
  Downloading bs4-0.0.2-py2.py3-none-any.whl.metadata (411 bytes)
Requirement already satisfied: scipy in /opt/anaconda3/lib/python3.11/site-packages (from researchpy) (1.11.4)
Requirement already satisfied: numpy in /opt/anaconda3/lib/python3.11/site-packages (from researchpy) (1.26.4)
Requirement already satisfied: pandas in /opt/anaconda3/lib/python3.11/site-packages (from researchpy) (2.1.4)
Requirement already satisfied: statsmodels in /opt/anaconda3/lib/python3.11/site-packages (from researchpy) (0.14.0)
Requirement already satisfied: patsy in /opt/anaconda3/lib/python3.11/site-packages (from researchpy) (0.5.3)
Requirement already satisfied: beautifulsoup4 in /opt/anaconda3/lib/python3.11/site-packages (from bs4) (4.12.2)
Requirement already satisfied: soupsieve>1.2 in /opt/anaconda3/lib/python3.11/site-packages (from beautifulsoup4->bs4) (2.5)
Requirement already satisfied: python-dateutil>=2.8.2 in /opt/anaconda3/lib/python3.11/site-packages (from pandas->researchpy) (2.8.2)
Requirement already satisfied: pytz>=2020.1 in /opt/anaconda3/lib/python3.11/site-packages (from pandas->researchpy) (2023.3.post1)
Requirement already satisfied: tzdata>=2022.1 in /opt/anaconda3/lib/python3.11/site-packages (from pandas->researchpy) (2023.3)
Requirement already satisfied: six in /opt/anaconda3/lib/python3.11/site-packages (from patsy->researchpy) (1.16.0)
Requirement already satisfied: packaging>=21.3 in /opt/anaconda3/lib/python3.11/site-packages (from statsmodels->researchpy) (23.1)
Downloading bs4-0.0.2-py2.py3-none-any.whl (1.2 kB)
Installing collected packages: bs4
Successfully installed bs4-0.0.2
Note: you may need to restart the kernel to use updated packages.
In [2]:
import json
import re
from bs4 import BeautifulSoup
import pandas as pd
import warnings
import researchpy as rp
import os
warnings.filterwarnings('ignore')
In [ ]:
 
In [3]:
def extract_info(data):
    results = []
    for place in data['p']:
        info = {}
        info['title'] = place['title']
        info['latitude'] = place['lat']
        info['longitude'] = place['lon']
        info['image'] = f"/images/icons/markers/{place['icon']}"

        # Extracting distance
        distance_start = place['win'].find('<span class="distance">') + len('<span class="distance">')
        distance_end = place['win'].find('</span>', distance_start)
        info['distance'] = place['win'][distance_start:distance_end].strip()

        # Extracting full address
        address_start = place['win'].find('<strong>Address:</strong>') + len('<strong>Address:</strong>')
        address_end = place['win'].find('</p>', address_start)
        info['address'] = place['win'][address_start:address_end].strip().replace('<br />', ', ')

        # Extracting phone number
        phone_start = place['win'].find('<i class="fa fa-phone fa-fw"></i>')
        if phone_start != -1:
            phone_start += len('<i class="fa fa-phone fa-fw"></i>')
            phone_end = place['win'].find('</p>', phone_start)
            info['phone'] = place['win'][phone_start:phone_end].strip()
        else:
            info['phone'] = None

        # Extracting website
        website_start = place['win'].find('<i class="fa fa-globe fa-fw"></i><a href="')
        if (website_start != -1):
            website_start += len('<i class="fa fa-globe fa-fw"></i><a href="')
            website_end = place['win'].find('"', website_start)
            info['website'] = place['win'][website_start:website_end].strip()
        else:
            info['website'] = None

        results.append(info)

    return results
In [4]:
# Function to get city and county from the address
def extract_city_county(address):
    parts = address.split(',')
    city = None
    county = None
    for i, part in enumerate(parts):
        if 'IA' in part:
            city = parts[i-1].strip()
        if 'County' in part:
            county = part.strip().replace(' County', '')
    return city, county


# Function to extract image path as marker
def extract_marker(image_path):
    base_name = os.path.basename(image_path)
    marker_name = os.path.splitext(base_name)[0]
    return marker_name
In [ ]:
 
In [ ]:
 

Extracting from the ARTS toolbar¶

In [5]:
arts = {
    "s": 1,
    "p": [
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Christian Peterson Courtyard Sculptures and Dairy Industry Building",
            "lat": "42.026731",
            "lon": "-93.642860",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Christian Peterson Courtyard Sculptures and Dairy Industry Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.026731,-93.642860\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Christian Petersen was the only sculptor in the Public Works of Art Project in Iowa City in 1934, directed by Iowa Painter Grant Wood. His sculptures here are regarded as &quot;significant artistic statements on agriculture, technology, and higher education in mid-1930s America.&quot; The Christian Peterson Courtyard Sculptures and Dairy Industry Building was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUnion Dr.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Escalieta I",
            "lat": "42.025650",
            "lon": "-93.644474",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Escalieta I</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.025650,-93.644474\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Manuel Neri created this marble sculpture in 2004. The sculpture references the female form, a goddess figure, in a state of transformation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWallace Rd.<br />Gerdin Business Building, Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/escalieta-i\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "History of Dairying",
            "lat": "42.026875",
            "lon": "-93.642983",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artpublic-historyofdairying.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">History of Dairying</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.026875,-93.642983\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Christian Peterson, an artist-in-residence at Iowa State University from 1934 to 1955, was commissioned to create this sculptural mural, depicting the history of \r\n the dairy industry in Iowa and America, as part of the Depression-era Public Works of Art Project.  The bas relief, measuring 84 inches x 972 inches, took eight months to complete.  This terra cotta work was the beginning of Peterson&#039;s 21 year career as campus sculptor-in-residence.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tFood Sciences Building Courtyard<br />Iowa State University<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.294.3342</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Janus Agri Altar",
            "lat": "42.028215",
            "lon": "-93.642973",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Janus Agri Altar</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.028215,-93.642973\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Beverly Pepper created this sculpture out of bronze and cement in 1986. The sculpture references Janus, the Roman god of entrances and exits.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Osborn Dr.<br />Agronomy Hall, Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/janus-agri-altar\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Fountain of the Four Seasons",
            "lat": "42.024340",
            "lon": "-93.645937",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artpublic-fountainfourseasons.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fountain of the Four Seasons</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.024340,-93.645937\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Fountain of the Four Seasons is the public artwork most identified with Christian Peterson, Iowa State University&#039;s first artist-in-residence. Four seated figures, placed against a fountain and facing out north, south, east and west, represent the culture and way of life of the American Indian Osage Nation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMemorial Union<br />Iowa State University<br />Ames, IA 50014<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.294.3342</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "One, Now, All",
            "lat": "42.028621",
            "lon": "-93.645524",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">One, Now, All</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.028621,-93.645524\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Norie Sato created this relief mural in the year 2000 using stone, terrazzo, brass, and water. The mural is subtly integrated into the buildings architecture, and features words that speak to human development and expression through language.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tOsborn Dr.<br />Palmer Building, Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/one-now-all#date\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Marriage Ring",
            "lat": "42.028198",
            "lon": "-93.646533",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artpublic-marriagering.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marriage Ring</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.028198,-93.646533\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Christian Peterson created the original to this sculpture in 1942; this is a reproduction concrete cast made by the Mayda Jensen Conservation in 1994. Commissioned by University Museums.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMacKay Hall<br />Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.294.3342</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.museums.iastate.edu/collectionsAOC.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Transformation",
            "lat": "42.026940",
            "lon": "-93.647959",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Transformation</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.026940,-93.647959\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Albert Paley created this sculpture installation out of steel in 2007. The contemporary sculpture contrasts the 19th century building, referencing progression.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMorrill Rd.<br />Morrill Hall, Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/transformation#date\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Untitled I and II",
            "lat": "42.028487",
            "lon": "-93.642092",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Untitled I and II</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.028487,-93.642092\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Richard Haas created these murals in 1986. They are on the first floor of the Agronomy building. The murals feature Iowa landscape in a photographically realistic style that suggests viewers are looking out the window.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2229 Lincoln Way<br />Agronomy Hall, Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/node/69209#date\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "We Shall Know Iowa State By Its Myriad Parts",
            "lat": "42.024053",
            "lon": "-93.639780",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">We Shall Know Iowa State By Its Myriad Parts</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.024053,-93.639780\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Sticks, with principal artist Sarah Grant, created this two-panel mural in 2007. The mural depicts a vast range of academic and campus life activities engaged in by students and faculty.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBeach Rd.<br />Hixson Lied Student Success Center, ISU Campus<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/we-shall-know-iowa-state-its-myriad-parts\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Iowa State Memorial Union",
            "lat": "42.023887",
            "lon": "-93.645967",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa State Memorial Union</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.023887,-93.645967\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Alumni, students and faculty of Iowa State College (now Iowa State University) organized in 1922 to build a memorial building to honor the Iowa State College men and women who served in the Civil War, the Spanish-American War and World War I. According to the Emmetsburg Palo Alto Tribune, published on June 22, 1927, the building was built at a cost of $720,000 and was constructed of steel, reinforced concrete and Bedford limestone. The Memorial Union at Iowa State University, which is still in use, opened in September 1928.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2229 Lincoln Way<br />Iowa State University<br />Ames, IA 50014<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Christian Petersen Art Museum",
            "lat": "42.027353",
            "lon": "-93.648029",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artmuseum-christianpetersonartmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Christian Petersen Art Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.027353,-93.648029\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>After a 2007 renovation, the Christian Petersen Art Museum opened in Morrill Hall. Petersen was the first permanent artist-in-residence both at Iowa State University and in the country. The museum not only house&#039;s Petersen&#039;s work, but also contains a gallery which features a rotation of visiting exhibits.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1017 Morrill Hall<br />Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.294.3342</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.museums.iastate.edu\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Iowa State University Theatre",
            "lat": "42.025958",
            "lon": "-93.649867",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa State University Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.025958,-93.649867\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The ISU Theatre Department works to not only promote undergraduate education and production, but also to provide high quality cultural and intellectual performances for the entire community. Past productions have included Romeo and Juliet, Alice in Wonderland, and A Streetcar Named Desire.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210 Pearson Hall<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Balance of Life",
            "lat": "42.029836",
            "lon": "-93.644183",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Balance of Life</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.029836,-93.644183\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Edward Smyth created this mosaic mural out of stone, glass, gold, wood, and paint in 1998. The mosaic expresses the importance of animal husbandry to human achievement and survival.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tOsborn Dr.<br />Kildee Hall, Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/node/62207\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Breaking the Prairie Sod",
            "lat": "42.028236",
            "lon": "-93.648447",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artpublic-breakingthesod.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Breaking the Prairie Sod</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.028236,-93.648447\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Breaking the Prairie Sod depicts the beginnings of tillage and the founding of Iowa by pioneers in the 1840s. This mural was made between 1935-1937 by a team of artists, working under the supervision of renowned Iowa artist Grant Wood, as part of the Depression-era Public Works of Art Project.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMorrill Rd.<br />Parks Library, Iowa State University<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.294.3342</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.museums.iastate.edu/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Elizabeth and Bryon Anderson Sculpture Garden",
            "lat": "42.027050",
            "lon": "-93.648223",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artpublic-andersonsculpturegarden.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Elizabeth and Bryon Anderson Sculpture Garden</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.027050,-93.648223\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This sculpture garden features a diverse collection of sculptures, a gathering arena, pathways, and flowering trees. Open to the public.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMorrill Rd.<br />Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.294.3342</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.museums.iastate.edu/AndersonSculpture.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Enlightenment",
            "lat": "42.030195",
            "lon": "-93.645092",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Enlightenment</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.030195,-93.645092\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This ceramic relief mural was created for the Lagomarcino courtyard in 2004. The work came out of a collaboration between artists Gail Kristensen and Ingrid Lilligren and ISU students.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tLagomarcino Hall Courtyard<br />Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.ingridlilligren.com/commissions/enlightenment.shtml\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Garden of Stone and Light",
            "lat": "42.027470",
            "lon": "-93.649850",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Garden of Stone and Light</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.027470,-93.649850\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Keith Achepohl created this sculpture installation in 1989 for the atrium of Durham Computation Center. The sculpture plays with the concepts of permanence, and indoor vs. outdoor space.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDurham Computation Center<br />Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.museums.iastate.edu/AOCFactSheetsPDF/achepohlgarden.pdf\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Left-Sided Angel",
            "lat": "42.027804",
            "lon": "-93.648584",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Left-Sided Angel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.027804,-93.648584\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Stephen De Staebler created this sculpture out of bronze in 1986. The angel seems precariously balanced and represents humanity&#039;s soul.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tParks Library<br />Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/node/62221\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Procession",
            "lat": "42.028278",
            "lon": "-93.647766",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Procession</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.028278,-93.647766\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Michaela Mahady created this mural, located on the windows to LeBaron Hall auditorium, ISU Campus, in 2006. Silhouettes of seminal figures in Iowa tell ISU&#039;s history and the heritage and future created for students today.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tOsborn Dr.<br />LeBaron Hall, Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/procession#date\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Stride",
            "lat": "42.026325",
            "lon": "-93.637955",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stride</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.026325,-93.637955\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>William King created this sculpture out of aluminum in 1990. The site-specific sculpture references energetic activity.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBeach Rd.<br />Lied Recreaton Facility, Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/stride\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "When Tilliage Begins, Other Arts Follow",
            "lat": "42.028170",
            "lon": "-93.648280",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artpublic-whentillagebeginsotherartswillfollow.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">When Tilliage Begins, Other Arts Follow</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.028170,-93.648280\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>When Tillage Begins Other Arts Follow is a collection of eight staircase panel at Parks Library.  They were created by the Public Works Project Administration. The eight panels known as &#039;Other Arts Follow&#039; stand 17 feet high in the lobby stairwell of the original library building and depict the technologies that followed Iowa&#039;s agricultural beginnings. This mural was made between 1934-1937 by a team of artists working under the supervision of renowned Iowa artist Grant Wood.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tParks Library<br />Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.294.3342</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/when-tillage-begins-other-arts-follow\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "e+l+e+m+e+n+t+a+l",
            "lat": "42.030342",
            "lon": "-93.649991",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artpublic-elemental.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">e+l+e+m+e+n+t+a+l</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.030342,-93.649991\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Norie Sato created this sculpture installation out of aluminum, LEDs, glass, copper, zinc, and lead in 2010. The installation has multiple parts to it and incorporates chemical patterns and elements.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tPammel Dr.<br />Hach Hall, Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/elemental\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Memory/Echo/Passage",
            "lat": "42.027821",
            "lon": "-93.651648",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Memory/Echo/Passage</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.027821,-93.651648\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lita Albuquerque created these three mosaics out of brick, granite, and gold in 1994. They are set into the Sweeney Hall building in three different locations.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBissell Rd.<br />Sweeney Hall, Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/memoryechopassage#date\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Walking the Landscape",
            "lat": "42.026250",
            "lon": "-93.651300",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Walking the Landscape</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.026250,-93.651300\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Keith Achepohl created this mural in 1988 for the second floor of the Black Engineering Building. The mural focuses on the relationship between humans and landscapes, including a spatial gap that signifies the contrast between human events and timelessness of land.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBlack Engineering Building<br />Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.museums.iastate.edu/AOCFactSheetsPDF/achepohl-walking.pdf\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Brunnier Art Museum",
            "lat": "42.021491",
            "lon": "-93.636740",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artmuseum-brunniermuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brunnier Art Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.021491,-93.636740\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Brunnier Art Museum is the state&#039;s only accredited museum emphasizing a decorative arts collection, and one of the nation&#039;s few museums located within a performing arts and conference complex (Iowa State Center). Founded in 1975, the museum is named after its benefactors, Iowa State alumnus Henry J. Brunnier and his wife Ann. The decorative arts collection they donated, the Brunnier Collection, is extensive, consisting of ceramics, glass, dolls, ivory, jade, and enameled metals.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t295 Scheman Bldg.<br />Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.294.3342</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.museums.iastate.edu\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Iowa State Center",
            "lat": "42.020854",
            "lon": "-93.636971",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa State Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.020854,-93.636971\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa State Center began as the dream of James H. Hilton, who graduated from Iowa State University in Dairy Science and served as University President from 1953-1965. He proposed the idea of an educational/cultural/athletic complex at the 1954 fall faculty convocation. Clifford Y. Stephens, another Iowa State University alumnus, led donations with a one million dollar gift toward the Center&#039;s construction of a performing arts auditorium. C.Y. Stephens gift came from the dream that he shared with Hilton. He felt passionately that a person&#039;s first great need was the opportunity to get an education and believed all students should have an opportunity to develop an appreciation for the fine arts, which he considered necessary for adequate living. Thanks to their fundraising efforts, the Iowa State Center was constructed without using any state funds. The New York Philharmonic Orchestra opened Stephens Auditorium in the fall of 1969 with a five-performance, week-long festival. Hilton Coliseum opened in 1971 followed by Fisher Theater in 1974 and Scheman Building in 1975.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1700 Center Dr.<br />Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.294.3347</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.center.iastate.edu/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "A Public Perception",
            "lat": "42.024735",
            "lon": "-93.653797",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">A Public Perception</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.024735,-93.653797\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Terry Allen created this installation in 2011 using glass and neon lights. The eighteen pieces challenge viewers to react, either emotionally, mentally, or physically.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2499 Union Dr.<br />State Gymnasium, Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/public-perception\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The G-Nome Project",
            "lat": "42.031423",
            "lon": "-93.649710",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The G-Nome Project</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.031423,-93.649710\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Andrew Leicester, David Dahlquist, and Donovan Palmquist created this sculpture installation out of terracotta, brick, metal, porcelain, and tile in 1991. The project integrates art and architecture.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tPammel Dr.<br />Molecular Biology Building, Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.museums.iastate.edu/collectionsAOC.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Moth",
            "lat": "42.028401",
            "lon": "-93.651643",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artpublic-themoth-3.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Moth</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.028401,-93.651643\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Mac Adams created this sculpture out of marble in 2008. Adams has used the image of a moth as a metaphor for concepts of invention.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBissell Rd.<br />Coover Hall, ISU Campus<br />Ames, IA 50014<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/moth-0\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Floating World",
            "lat": "42.027609",
            "lon": "-93.653591",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artpublic-floatingworld-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Floating World</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.027609,-93.653591\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;Floating World&quot; by Ralph Helmick, represents centuries of change in agriculture, as well as the potential of agricultural research to shape our future. It is installed at the Iowa State University Biorenewables Complex. The title and composition of Floating World was inspired by a form of art and printing called “Ukiyo-e” (translated as “pictures of the floating world”) that flourished in Japan between 1600 and 1900.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t538 Bissell Rd.<br />Iowa State University Biorenewables Complex<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "What is the Cost of Raising a Child?",
            "lat": "42.035125",
            "lon": "-93.645742",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">What is the Cost of Raising a Child?</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.035125,-93.645742\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Carolyn Braaksma and Brad Kaspari created this mosaic in 2003 out of brass, bronze, and terrazzo. This mosaic is set in the floor and reveals the challenge of raising a child cannot be calculated by dollars alone.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWanda Daley Dr.<br />Extension 4-H Building, Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/what-cost-raising-child\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Crucible",
            "lat": "42.034343",
            "lon": "-93.647671",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Crucible</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.034343,-93.647671\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Brower Hatcher created this sculpture out of stainless steel, glass, concrete, cast iron, and terrazzo. The Crucible reflects the mission of Environmental Health and Safety Services - turning complex chemicals in to simple, safe molecules. The sculpture is best viewed at night when it is lit.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2809 Daley Dr.<br />Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/crucible\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Inuksuit (Brookside Park)",
            "lat": "42.028943",
            "lon": "-93.629745",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artpublic-inuksuk-2.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Inuksuit (Brookside Park)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.028943,-93.629745\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The mysterious stone figures known as inuksuit can be found throughout the circumpolar world. Inukshuk, the singular of inuksuit, means &quot;in the likeness of a human&quot; in the Inuit language. They are monuments made of unworked stones that are used by the Inuit for communication and survival. The traditional meaning of the inukshuk is &quot;Someone was here&quot; or &quot;You are on the right path.&quot;  The three inuksuit in Story County were created by artist Peter Irniq.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1325 6th St.<br />Brookside Park<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.239.5101</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Inuksuit (Lee Park)",
            "lat": "42.030559",
            "lon": "-93.661509",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artpublic-inuksuk-leepark.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Inuksuit (Lee Park)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.030559,-93.661509\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The mysterious stone figures known as inuksuit can be found throughout the circumpolar world. Inukshuk, the singular of inuksuit, means &quot;in the likeness of a human&quot; in the Inuit language. They are monuments made of unworked stones that are used by the Inuit for communication and survival. The traditional meaning of the inukshuk is &quot;Someone was here&quot; or &quot;You are on the right path.&quot;  The three inuksuit in Story County were created by artist Peter Irniq.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3400 Ross Rd.<br />Lee Park<br />Ames, IA 50014<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.239.5101</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Reiman Gardens",
            "lat": "42.011448",
            "lon": "-93.638846",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-botany-reimangardens.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Reiman Gardens</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.011448,-93.638846\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Reiman Gardens is one of the largest public gardens in Iowa. Situated on a 17-acre site, the year-round attraction features distinctive gardens both indoors and outdoors, a tropical Conservatory with seasonal displays, a 2,500 square foot Butterfly Wing with emergence cases and a gift shop. Reiman Gardens is open year round.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1407 University Blvd.<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.294.2710</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.reimangardens.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Woman&#039;s Head Sculpture",
            "lat": "42.022636",
            "lon": "-93.620443",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Woman&#039;s Head Sculpture</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.022636,-93.620443\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Woman’s Head, symbolizing the human intellectual spirit, was created by Dennis Patton in 1976. Then-Director of the Iowa DOT, Victor Preisser, allowed Patton to create the sculpture on the northeast corner of the DOT grounds, along Ames’ Lincoln Way - part of the original Lincoln Highway. The sculpture was so popular that Patton deemed it “A Gift to the People of Ames” and Preisser allowed it to remain on the DOT grounds. Originally, Patton created the sculpture out of wood - but time and Iowa weather took a toll. In 1998, each piece of the sculpture was reproduced in steel. The resulting sculpture was re-installed at the corner of Lincoln Way and Grand Avenue.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t800 Lincoln Way<br />Iowa Department of Transportation<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadot.gov/virtual_museum/arts.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Ames Town and Gown Chamber Music Association",
            "lat": "42.026586",
            "lon": "-93.618015",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ames Town and Gown Chamber Music Association</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.026586,-93.618015\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Ames Town &amp; Gown Chamber Music Association has been bringing internationally acclaimed classical musicians to central Iowa since 1950. They  present five concerts per year at venues throughout Ames. Performances are held at the Ames City Auditorium, St. John’s Episcopal Church and Iowa State University. The association also sponsors educational outreach activities and broadcasts their concerts on public radio.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t515 Clark Ave.<br />Ames City Auditorium<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.292.3891</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.amestownandgown.org/Home.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Healing Tree Mural Cycle",
            "lat": "42.005947",
            "lon": "-93.631355",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Healing Tree Mural Cycle</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.005947,-93.631355\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Michaela Mahady created this 150-foot mural in 2010. It is painted on glass. The mural cycle includes: The History of Veterinary Medicine, Equestrian Plain, and The Healing Tree.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1600 S 16th St.<br />Lloyd Veterinary Medical Center, Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/healing-tree-mural-cycle\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Gentle Doctor",
            "lat": "42.005551",
            "lon": "-93.631679",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artpublic-gentledoctor-8b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Gentle Doctor</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.005551,-93.631679\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This relief mural was created out of unglazed terra cotta in 1938 by artist Christian Peterson.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Riverside Dr.<br />College of Veterinary Medicine<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://livingnewdeal.berkeley.edu/projects/iowa-state-university-veterinary-medicine-mural-ames-ia/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Evolution of Corn Mural",
            "lat": "42.026572",
            "lon": "-93.614185",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Evolution of Corn Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.026572,-93.614185\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Lowell Houser, who taught in Iowa during the 1940s, created this mural recognizing the contributions of the original American Indian inhabitants of Iowa. The mural was part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t525 Kellogg Ave.<br />U.S. Post Office<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.294.3342</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.postalmuseum.si.edu/indiansatthepostoffice/mural10.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Octagon Center for the Arts",
            "lat": "42.025780",
            "lon": "-93.612274",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artmuseum-octagon.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Octagon Center for the Arts</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.025780,-93.612274\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Octagon Center for the Arts is a non-profit organization located in downtown Ames, where people of the community can actively learn, practice, and experience the arts through memberships, volunteering, classes, gallery exhibits, and events. The Octagon Gallery Shop, on the corner of Douglas Ave and Fifth Street, is a retail gallery featuring fine art and craft by 150 area artists.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t427 Douglas Ave.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.232.5331</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.octagonarts.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Ames Community Theatre (ACTORS, Inc.)",
            "lat": "42.021094",
            "lon": "-93.675543",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artperforming-amescommunitytheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ames Community Theatre (ACTORS, Inc.)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.021094,-93.675543\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ames Community Theater opened in 1956 and has been serving the community with entertaining theatrical performances ever since. Previous performances include, &quot;How to Succeed in Business Without Really Trying,&quot; &quot;Shrek the Musical,&quot; and &quot;Play it Again, Sam.&quot;</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t120 Abraham Dr.<br />Ames, IA 50014<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.292.2073</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.actorsinc.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Ames Circle of the Arts",
            "lat": "42.026662",
            "lon": "-93.610047",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ames Circle of the Arts</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.026662,-93.610047\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Sculpted by William C. Culbertson, this monumental sculpture, titled &#039;Ames Circle of the Arts&#039;, celebrates creativity as a source for the growth of the arts.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t125 E 5th St<br />Bandshell Park<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.239.5101</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofames.org/index.aspx?page=471andrecordid=9\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Inuksuit (Ada Hayden Heritage Park)",
            "lat": "42.067263",
            "lon": "-93.627790",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artpublic-inuksuk.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Inuksuit (Ada Hayden Heritage Park)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.067263,-93.627790\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The mysterious stone figures known as inuksuit can be found throughout the circumpolar world. Inukshuk, the singular of inuksuit, means &quot;in the likeness of a human&quot; in the Inuit language. They are monuments made of unworked stones that are used by the Inuit for communication and survival. The traditional meaning of the inukshuk is &quot;Someone was here&quot; or &quot;You are on the right path.&quot;  The three inuksuit in Story County were created by artist Peter Irniq.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5205 Grand Ave.<br />Ada Hayden Heritage Park<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.239.5101</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Story Theater Company",
            "lat": "42.016118",
            "lon": "-93.581287",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artperforming-storytheatercompany-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Story Theater Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.016118,-93.581287\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">3.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Story Theater Company provides theatrical opportunities for children through performances and workshops. The theater partners with the Iowa State University Theater Department to expose participants to positive role models who teach the fundamentals of theater.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t615 S Dayton Ave.<br />Suite 101<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.storytheatercompany.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "In Celebration of Transportation",
            "lat": "42.110268",
            "lon": "-93.556886",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">In Celebration of Transportation</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.110268,-93.556886\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">7.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Visible throughout the reststop, &#039;In Celebration of Transportation&#039; by David B. Dahlquist reveals facts related to the history of transportation in Iowa. Murals depict before-and-after scenes of Iowa roads. There are also construction facts from Iowa road building.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tInterstate Hwy. 35 Southbound<br />Mile Post 119 Rest Area<br />Milford, IA 50201<br />Story County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.rdgusa.com/projects/in-celebration-of-transportation-1#/services/art-studio\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Iowa and Energy, a Resource of Growth",
            "lat": "42.017654",
            "lon": "-93.479198",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa and Energy, a Resource of Growth</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.017654,-93.479198\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">8.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Dean Biechler created this mural in 2004 for the Biomass Energy Conversion facility. The mural features an Iowa landscape, including elements that focus on biomass to fuels and chemical industries.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1521 W F Ave.<br />BECON Facility<br />Nevada, IA 50201<br />Story County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.museums.iastate.edu/AOCFactSheetsPDF/BECONMurals.pdf\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Cambridge American Legion Mural",
            "lat": "41.898989",
            "lon": "-93.528886",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artpublic-cambridgeamericanlegionmural-4b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cambridge American Legion Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.898989,-93.528886\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">10.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cambridge American Legion Mural was painted by John Neal and Ken Tynan in 2005 and covers the north side of the American Legion building. The mural was restored in 2013 by Shawn Palek with a grant from the Story County Community Foundation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t222 Water St.<br />Cambridge, IA 50046<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Boone Suffrage Parade Monument",
            "lat": "42.062563",
            "lon": "-93.885214",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-historicmarker-iowasuffragists.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Boone Suffrage Parade Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.062563,-93.885214\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This monument marks the site where, on October 29, 1908, Iowa Suffragists marched downtown to a rally to campaign for womens&#039; right to vote. The Boone Suffrage parade was the only one held in Iowa and one of the first in the United States. It was organized by Rowena Edson Stevens, President of the Boone Equality Club and former Iowa Equal Suffrage Association (IESA) President, and the Rev. Eleanor Elizabeth Gordon of Des Moines, President of the IESA. At 8th and Story Streets the marchers stopped to allow National Woman Suffrage Association President, Rev. Dr. Anna Howard Shaw, to speak. Afterwards, the parade reassembled and the women marched back to this site. The monument was dedicated on October 25, 2008 in honor of the 100th anniversary of the Boone Suffrage Parade. It honors all the Iowa women who worked to ensure women&#039;s rights for future generations.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t500 7th St.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Boone County",
            "lat": "42.059319",
            "lon": "-93.906675",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Boone County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.059319,-93.906675\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">13.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Boone County Freedom Rock® features a steam train traveling across the old Boone Viaduct (Kate Shelley High Bridge) and famous Boone native and her husband, Dwight and Mamie Eisenhower. The rock tells the stories of two veterans, Sgt. Daniel Sesker of Boone County and Command Sgt. Maj. Marilyn L. Gabbard of Polk City.\r\n\r\nSgt. Daniel Sesker was born in Boone in 1983 and graduated from Ogden High School in 2001. He was deployed to Kosovo in 2003 as part of Operation Joint Guardian. In July 2005, he volunteered to join the Le Mars-based Troop C, 1st Squadron, 113th Cavalry, which performed reconnaissance and surveillance missions. Between his tours of duty, he worked as a counselor at Woodward Academy and a part-time police officer in Gowrie. Sesker, then 22, was killed April 6, 2006 when a bomb exploded near his Humvee. He was manning a gun aboard the vehicle when insurgents detonated the bomb outside Tikrit.\r\n\r\nCommand Sgt. Maj. Marilyn L. Gabbard of Polk City was the first woman promoted to the rank of command sergeant major in the Iowa Army National Guard. She is also the first woman in the history of the Iowa National Guard to be killed in combat. She was a passenger on a UH-60 Black Hawk helicopter when it crashed Jan. 20, 2007 northeast of Baghdad. Assigned to Joint Forces Headquarters at Camp Dodge, she served as the non-commissioned officer in charge of the National Guard Affairs Team in Baghdad.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1098 W 3rd St.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "High Trestle Trail Bridge",
            "lat": "41.870788",
            "lon": "-93.850152",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-artpublic-hightrestle.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">High Trestle Trail Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.870788,-93.850152\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">15.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The High Trestle Trail Bridge has become a popular destination for cyclists, nature lovers and visitors since opening in 2011. Lead artist David Dahlquist, RDG Dahlquist Art Studio and more than a dozen collaborators wanted to tell the story of the region’s coal mining history with the bridge’s design. The artistic frames atop the bridge and illuminated at night resemble cribs, or wooden timbers, used to reinforce the walls of coal mines and as a support for machinery. At each end of the bridge are two towers with dark bands representing geologic coal veins found in limestone deposits. More than 16,000 custom-glazed ceramic tiles were made to look like coal. The bridge extends for half a mile and rises the height of a thirteen-story building over the Des Moines River.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tQF Lane, South of IA 210<br />Madrid, IA 50156<br />Boone County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.795.3930</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.inhf.org/Trails/high-trestle.cfm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Story County",
            "lat": "41.888560",
            "lon": "-93.400755",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Story County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.888560,-93.400755\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">15.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The front of the Story County Freedom Rock® is dedicated to the 16th Special Ops Squadron AC-130H Spectre gunship, call sign &quot;Spirit 03.&quot; Maxwell native, Staff Sgt. Tim Harrison served on that gunship. During a battle in the first Gulf War it was the last of the three AC-130s still on station in the early morning of January 31, 1991. About to head back to base Spirit 03 received a call from the Marines that they needed an enemy missile battery destroyed. With the sun rising, making the plane more visible and an easier target for the anti-aircraft missiles, the Spirit 03 crew ignored the extreme risk and headed to destroy the enemy position. On the way they were shot down and all 14 crew members perished in the Persian Gulf. Crew members were all awarded the Silver Star and Purple Heart. These men are honored with an AC 130H Spectre gunship shooting off its flares, which look like angel wings. &quot;Spirit 03&quot; is in the background with an angelic colored sky. On the north side of the rock is a soldier&#039;s cross with a Black Hawk helicopter in the background to honor of the service of Sergeant First Class Matthew Loren Rierson. Rierson, a Nevada, Iowa native was part of the 1st Special Forces Operational Detachment - Delta, Task Force Rangers and was part of the assault force which conducted an air assault raid deep into the enemy sector (Mogadishu, Somalia, in October 1993). These actions were made famous by the book and movie Black Hawk Down. Rierson earned the Silver Star for his actions. Part of the citation read: “Following Sgt Rierson&#039;s successful apprehension of two key militia officials and twenty-two enemy soldiers, he accompanied the detainees and wounded personnel to his base in the vehicular convoy. This convoy came under intense enemy fire, during which, numerous friendly casualties were suffered. With total disregard for his own personal safety, Sergeant Rierson repeatedly dismounted his vehicle, exposing himself to enemy fire, in order to direct the drivers through enemy roadblocks and ambushes. It was due in part to his exceptional leadership that the convoys were able to reach the base safely. Sergeant Rierson then immediately accompanied the relief element headed for two downed helicopters. Once again, Sergeant Rierson demonstrated calm, effective leadership under fire that allowed the stalled convoy to fight its way to the crash site. At the crash site, Sergeant Rierson directed his team in a security position while the body of the pilot was recovered. His team provided security throughout the night as the enemy repeatedly tried to overrun the site. Sergeant First Class Rierson&#039;s heroic actions saved the lives of fellow comrades and reflect great credit on himself and the United States Army. Sgt Rierson was subsequently killed on October 6, two days after the &quot;Black Hawk Down&quot; mission, when a stray mortar shell landed near him as he chatted with other soldiers near the airport hangar.” The back of the rock shows an older Veteran saluting a line of flags before he boards his Honor Flight to Washington DC to see the national monuments. The eagle on the rock holds a gold and blue star in his talons symbolizing thanking military families for their sacrifices. The Story County (Maxwell) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tTrotter Blvd. and 2nd St.<br />Maxwell City Park<br />Maxwell, IA 50161<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Ankeny Community Theatre",
            "lat": "41.730482",
            "lon": "-93.627477",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artperforming-ankenycommunitytheatre-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ankeny Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.730482,-93.627477\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">20.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ankeny Community Theatre opened in 1981. The theater was started by a Methodist minister and his parish and has grown to a community-wide group. The theater puts out five shows a year during a nine-month schedule.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1932 SW 3rd St.<br />Ankeny, IA 50021<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.964.5007</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.ankenycommunitytheatre.com#\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Ankeny Art Center",
            "lat": "41.724764",
            "lon": "-93.622081",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artmuseum-ankenyartcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ankeny Art Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.724764,-93.622081\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">20.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ankeny Art Center was opened in 1981. The center is a non-profit visual arts facility dedicated to inspiring, educating and challenging all members of the community through informative exhibits, events, year round classes and workshops, and community outreach programs.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1520 SW Ordnance Rd.<br />Ankeny, IA 50023<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.965.0940</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.ankenyartcenter.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Slides",
            "lat": "41.707827",
            "lon": "-93.617348",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-slides-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Slides</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.707827,-93.617348\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">22mi.</span></div>\n\t\t</div>\n\n\t\t<p>The painted and fused glass installation called “Slides” is integrated into the Laboratory’s visitor entrance. It is arranged within a triangular-shaped atrium. The exterior glass walls are faced with either a grid or row of glass sheets imprinted with a countryside vista or detail. There are four layers of translucent panels positioned in front of each scene of nature. (Artist: Norie Sato)</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2230 S Ankeny Blvd.<br />Iowa Laboratories Facility<br />Ankeny, IA 50023<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Polk County",
            "lat": "41.702617",
            "lon": "-93.470029",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-polkcountyfreedomrock-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Polk County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.702617,-93.470029\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">24.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Polk County Freedom Rock® in Bondurant honors Iowa&#039;s fallen soldiers. The front side depicts members of the military from the Civil War to Iraq/Afghanistan carrying the casket of a recently fallen soldier to his final resting place. The back side is a slight modification to the Iowa flag and includes all five branches of the military. The Polk County (Bondurant) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t315 2nd St. NW<br />Bondurant, IA 50035<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Iowa DOT Motor Vehicle Division Integrated Art",
            "lat": "41.680232",
            "lon": "-93.572299",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-iowadotmotorvehicledivisionintegratedart-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa DOT Motor Vehicle Division Integrated Art</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.680232,-93.572299\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">24.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>David Dahlquist created this site-specific installation out of concrete in 2007. 32 feet tall, 17 feet in width.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6310 SE Convenience Blvd.<br />Iowa Department of Transportation<br />Ankeny, IA 50021<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/node/68881#date\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Hills, Fields, Wind, and Rain",
            "lat": "41.654711",
            "lon": "-93.740310",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hills, Fields, Wind, and Rain</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.654711,-93.740310\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">26.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Mac Hornecker created this sculpture, titled Hills, Fields, Wind, and Rain, in 2005. The sculpture is meant to represent the elements and is located on a small grass island in an industrial park.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t9140 Northpark Dr.<br />Johnston, IA 50131<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Reconfiguration",
            "lat": "41.838634",
            "lon": "-94.105538",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-artpublic-reconfiguration.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Reconfiguration</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.838634,-94.105538\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Residents of Perry were enlisted by artist Albert Paley to contribute locally-made and used steel parts – pieces of the railroad, farming machinery and mining equipment - for this symbolic artwork, which connects the community to its history with the railroad and agriculture.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1112 Willis Ave.<br />Perry, IA 50220<br />Dallas County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 585.232.5260</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.albertpaley.com/portfolio_display.asp?item=107\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World War Heroes",
            "lat": "42.263870",
            "lon": "-94.069983",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/webster-monument-daytonworldwari.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World War Heroes</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.263870,-94.069983\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>A small boulder on the grounds of Dayton Elementary School honors the World War Heroes of Dayton. Five soldiers are memorialized: Charles H. Peterson, Theodore J. Anderson, Duane H. Hinman, Ernest B. Peterson and Reuben E. Peterson.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st St. NW<br />Dayton, IA 50530<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Paragon Prairie",
            "lat": "41.644356",
            "lon": "-93.785825",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-paragonprairie.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Paragon Prairie</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.644356,-93.785825\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created by artist David B. Dahlquist, &#039;Paragon Prairie Tower&#039; is a monument to the native Iowa prairie. The tower is the largest Italian glass mosaic tile mural in the U.S.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t123rd and Meredith Dr.<br />Urbandale, IA 50323<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Riverview Mural",
            "lat": "41.628140",
            "lon": "-93.624407",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Riverview Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.628140,-93.624407\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was created in 2002 by artists John Neal and Ken Tynan. It depicts scenes from the now-closed Riverview Amusement Park.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3613 6th Ave.<br />Highland Park Hardware Building<br />Des Moines, IA 50313<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Echo-Obelisk",
            "lat": "41.629232",
            "lon": "-93.712393",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Echo-Obelisk</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.629232,-93.712393\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Iowa artist David B. Dahlquist constructed the Echo-Obelisk in 2002. The sculpture provides a brief history of the Urbandale area and features the cornerstone brick of the 1925 original high school. It also honors students who went into the military after high school.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t70th and Douglas Ave.<br />Urbandale, IA 50322<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Urbandale Art Park",
            "lat": "41.628060",
            "lon": "-93.738566",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-urbandaleartpark.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Urbandale Art Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.628060,-93.738566\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This art park is a permanent outdoor sculpture park.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3600 86th St.<br />Urbandale, IA 50322<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.278.3937</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://urbandale.patch.com/groups/around-town/p/new-urbandale-art-park-shows-off-iowa-artists-creativity\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Urbandale Public Library Art Gallery",
            "lat": "41.626535",
            "lon": "-93.738649",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artmuseum-urbandalelibraryartgallery.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Urbandale Public Library Art Gallery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.626535,-93.738649\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28mi.</span></div>\n\t\t</div>\n\n\t\t<p>This art gallery offers exhibits and events to the public in order to enhance the uniqueness and quality of life in Urbandale.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3520 86th St.<br />Urbandale, IA 50322<br />Polk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://urbandalepubliclibraryartgallery.weebly.com/index.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Moai Dude",
            "lat": "41.629541",
            "lon": "-93.468610",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Moai Dude</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.629541,-93.468610\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist John Brommel created the Moai Dude as a replica of the Moai head off the coast of Easter Island. It stands 11 feet tall and is made of one ton of recycle rusted steel.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2155 3rd Ave. SW<br />Ironwood Park<br />Altoona, IA 50009<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "What We Love About Clive",
            "lat": "41.611228",
            "lon": "-93.736594",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-whatweloveaboutclive.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">What We Love About Clive</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.611228,-93.736594\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>“What We Love About Clive” is a mosaic wall built by Sarah Grant in 2009. The piece is intended to engage and celebrate the community. Multi colored mosaic tiles depict different themes like celebrate community, history, family, friendship, citizenship, stewardship, nature, city life, business, philanthropy, volunteerism, and responsibility. The project was a join project between the City of Clive and the West Des Moines Community School District.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2016 NW 86th St.<br />NW 86th St. and Franklin Ave.<br />Clive, IA 50325<br />Polk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofclive.com/residents/public-art-program/public-art-collection\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Creative Visions Community Center Murals",
            "lat": "41.603762",
            "lon": "-93.634029",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Creative Visions Community Center Murals</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.603762,-93.634029\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Creative Visions Center is host to three murals, two of which are located in the interior of the building, and the third is located on the exterior. The murals, created in 1997, focus on empowering underprivileged communities.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1343 13th St.<br />Creative Visions Community Center<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.244.4003</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://creativevisionsia.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Anderson Gallery at Drake University",
            "lat": "41.602496",
            "lon": "-93.651790",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artmuseum-andersongallery.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Anderson Gallery at Drake University</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.602496,-93.651790\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Anderson Gallery, a non-profit exhibition space on the campus of Drake University in Des Moines, was founded in 1996 to exhibit and support innovation in art and design. Part laboratory, part showcase, the Gallery&#039;s main goal is to promote the growth and understanding of art through exhibitions, programs, and publications.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2505 Carpenter Ave.<br />Harmon Fine Arts Center, Drake University<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.1994</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://artsci.drake.edu/andersongallery/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Allée",
            "lat": "41.601961",
            "lon": "-93.656851",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Allée</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.601961,-93.656851\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created by Stuart Davis, this mural hangs on the Drake University campus and was commissioned specifically for this environment. The geometric shapes reflect the campus environment - the blue sky, red dorms, white walls, and black floor.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2507 University Ave.<br />Olmsted Center - Drake University<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Art on the Trails",
            "lat": "41.609983",
            "lon": "-93.756043",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Art on the Trails</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.609983,-93.756043\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Art Along the Trail is a temporary outdoor exhibit, displayed along Clive’s landmark feature, the Greenbelt Park and Trail system, from May through October each year.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10489 Maddox Pkwy.<br />Clive, IA 50325<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.223.6220</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofclive.com/residents/public-art-program/art-along-the-trail\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Black Diamond",
            "lat": "41.629130",
            "lon": "-93.844903",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-blackdiamond.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Black Diamond</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.629130,-93.844903\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artists Rebecca Ekstrand and Thomas Rosborough designed Black Diamond using the language of layered geometric shapes and proportion reminiscent of the landscape of the Shuler Coal Mine community, which is now part of the City of Clive. The sculpture is made of polychromed steel.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t16400 Douglas Pkwy.<br />Shuler Elementary School<br />Clive, IA 50325<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.223.6220</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofclive.com/residents/public-art-program/public-art-collection\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Joy of Music",
            "lat": "41.602212",
            "lon": "-93.651912",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Joy of Music</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.602212,-93.651912\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>These life-size cast bronze statues were created by George Lundeen in 1994. There are 21 of these figures in total, found in many different locations around the United States.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2500 Carpenter Ave.<br />Drake University, Harmon Fine Arts Center<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Prairie Engine",
            "lat": "41.605909",
            "lon": "-93.735924",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prairie Engine</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.605909,-93.735924\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Prairie Engine recalls the early days of the railroad and its importance in the development of Clive. The sculpture, by Marc Moulton, conveys the power and movement of a by-gone era and historically connects Clive’s past to its present.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tNW 86th St. and University Blvd.<br />Clive, IA 50325<br />Polk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofclive.com/residents/public-art-program/public-art-collection\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World War I Monument (Gold Star Monument)",
            "lat": "41.600661",
            "lon": "-93.611619",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-worldwar1monument-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World War I Monument (Gold Star Monument)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.600661,-93.611619\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The World War I Monument by sculptor Charles Henry Niehaus (1855-1935) features a classically dressed warrior and an angel with long wings, plus two granite panels with bronze plaques naming the war dead from Polk County. Local women led by Gold Star widow Minnie Fleur had planned to install the monument in the Gold Star section at Woodland Cemetery, but they raised so much money that they decided to build a larger monument on a much more prominent plot. The monument was installed in 1925 on University Avenue on a hill overlooking the Des Moines River.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE University Ave.<br />Des Moines, IA 50316<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Hope",
            "lat": "41.603071",
            "lon": "-93.736652",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-hope.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hope</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.603071,-93.736652\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This sculpture by Hilde DeBruyne was the 2013 winner of the Art Along the Trail exhibit.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1400 NW 86th St.<br />Clive, IA 50325<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.223.6220</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofclive.com/residents/public-art-program/public-art-collection\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Paths Unite",
            "lat": "41.609689",
            "lon": "-93.775873",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Paths Unite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.609689,-93.775873\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This sculpture by James Bearden was the 2012 winner of the Art Along the Trail exhibit.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1900 NW 114th St.<br />Clive, IA 50325<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.223.6220</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofclive.com/residents/public-art-program/public-art-collection\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Spectral Liberation",
            "lat": "41.596478",
            "lon": "-93.614270",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-spectralliberation.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spectral Liberation</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.596478,-93.614270\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Christiane T. Martens designed this colorful public sculpture, situated on the grounds of the Des Moines Botanical Gardens. It was installed in the gardens in 1984, donated by the family of Connie Belin, a local civic leader.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t909 Robert D. Ray Drive<br />Des Moines Botantical Gardens<br />Des Moines, IA 50316<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.323.6290</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.dmbotanicalgarden.com/explore-the-gardens/outdoor-gardens/art-and-sculpture/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Menorah",
            "lat": "41.594178",
            "lon": "-93.682807",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Menorah</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.594178,-93.682807\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created by Jeffrey Abt in 1975, this sculpture was commissioned by the Waldinger Foundation. It is installed at the South edge of the outdoor courtyard of the Tirereth Israel Synagogue.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t910 Polk Blvd.<br />Tirereth Israel Synagogue<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Robert D. Ray Asian Gardens",
            "lat": "41.593256",
            "lon": "-93.617249",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-botany-asiangardens.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Robert D. Ray Asian Gardens</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.593256,-93.617249\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Robert D. Ray Asian Gardens features an Asian pavilion, built atop a bridge that spans a pond which cascades into the Des Moines River through a series of waterfalls. The Character Garden features six large granite boulders arranged in a circle, each carved with Chinese characters representing responsibility, citizenship, fairness, respect, caring, and trustworthiness.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t700 Robert D. Ray Dr.<br />Des Moines, IA 50316<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Des Moines Playhouse",
            "lat": "41.592727",
            "lon": "-93.673920",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines Playhouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592727,-93.673920\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Des Moines Community Playhouse was founded in 1919 by members of the Iowa Press and Authors Club. Although the Little Theatre Movement was causing similar enterprises to spring up across the country, the Playhouse is unique in that it has operated continuously, under various names and in various homes, since its founding. With more than 90 years of uninterrupted service, the Playhouse is among the six oldest continuously-operating community theatres in the U.S. It is also the second largest community theatre in the U.S. Its current venue was built in 1934 and housed the Roosevelt Theatre, one of the first suburban theatres located outside central Des Moines. The Des Moines Playhouse purchased the theater in 1952. The Playhouse is also home to the Kate Goldman Children&#039;s Theatre.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t831 42nd St.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 1.877.862.5621</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.dmplayhouse.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Cosmic Seed",
            "lat": "41.592265",
            "lon": "-93.606423",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-cosmicseed.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cosmic Seed</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592265,-93.606423\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>Cosmic Seed is a sculpture by Ronald Bladen. Its form exhibits the connections between perfect planes, elegant form, and careful consideration of the void spaces. An outdoor, monumental sculpture, Cosmic Seed captures, through abstract means, the sublime impression of organic growth.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t698 Pennsylvania Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "A Veteran&#039;s Prayer for Eternal Peace",
            "lat": "41.591979",
            "lon": "-93.623925",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-veteransprayerforeternalpeace.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">A Veteran&#039;s Prayer for Eternal Peace</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591979,-93.623925\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>This sculpture is in the center of a circular plaza with a walkway that includes benches, depictions of chaplains, and symbols of religious beliefs. The sculpture consists of a pair of large cupped hands, created by Christopher Bennett.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t833 5th Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Spirit of the New Age",
            "lat": "41.592256",
            "lon": "-93.604974",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spirit of the New Age</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592256,-93.604974\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artists Gordon Keyte and Neal Cassidy created this low relief mural in 1964. The central figure represents science and knowledge, and the surrounding figures represent agriculture and industry.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 E Grand Ave.<br />Iowa Workforce Development Building<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5387</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Spanish Howitzer",
            "lat": "41.592558",
            "lon": "-93.603060",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-spanishhowitzer.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spanish Howitzer</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592558,-93.603060\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bronze cannon came from the &#039;Maria Theresa&#039;, a Cuban ship sunk by the USS Iowa II in the battle of Santiago. It was given to the state in 1900 by the United States Department of the Navy.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1112 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Pinnacle",
            "lat": "41.592557",
            "lon": "-93.598106",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-thepinnacle.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Pinnacle</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592557,-93.598106\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>This piece was created by Marc Moulton and celebrates Iowa’s ethnic heritage. It was commissioned by the Civil Rights Commission and funded in part by the Iowa Arts Council.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 E 14th St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "American Expeditionary Forces Memorial Tablet",
            "lat": "41.592757",
            "lon": "-93.602674",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-americanexpeditionaryforcesmemorialtablet-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">American Expeditionary Forces Memorial Tablet</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592757,-93.602674\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>A crowd gathered on Aug. 12, 1921, at the State Historical, Memorial and Art Building (now the Ola Babcock Miller Building) to dedicate a memorial tablet commemorating the World War I service of the 351st Infantry, 88th Division, American Expeditionary Forces. The unit activated on Aug. 5, 1917, at Camp Dodge, sailed overseas on Sept. 7, 1918, and was deactivated on June 10, 1919. At the memorial&#039;s dedication, legendary state curator Edgar R. Harlan and Major H. F. Evans explained that all of the unit&#039;s men contributed to funding the memorial tablet as a regimental gift and that the Historical Department of Iowa cooperated in its creation. The memorial tablet, sculpted by Sherry E. Fry, was accepted by Gov. Nathan E. Kendall on behalf of the people of Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Grand Ave.<br />Ola Babcock Miller<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Bicentennial Fountain",
            "lat": "41.590933",
            "lon": "-93.605230",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-bicentennialfountain.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bicentennial Fountain</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590933,-93.605230\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bicentennial Fountain stands on a site that was formerly occupied by the Centennial Fountain. The two are very similar, but the original fountain had three additional female figures circling the center support. After vandalism and disrepair, the new fountain was ordered in 1980.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Bochumer Verein Cannon (Spanish-American War Cannon)",
            "lat": "41.591100",
            "lon": "-93.604343",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bochumer Verein Cannon (Spanish-American War Cannon)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591100,-93.604343\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This cannon is located on the west stairway to the Capitol Building. Captured in 1898 at the Battle of Santiago, Cuba, it was brought to Iowa in 1901.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Bryant Boulder",
            "lat": "41.591195",
            "lon": "-93.607513",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-bryantboulder.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bryant Boulder</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591195,-93.607513\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This boulder marks the site of Bryant School, the first real school building on the east side, completed in 1867, and named for William Cullen Bryant, a poet.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Buffalo Head Drinking Fountain",
            "lat": "41.590858",
            "lon": "-93.605556",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buffalo Head Drinking Fountain</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590858,-93.605556\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Originally designed to be a lion&#039;s head, this bronze buffalo head was determined to be more appropriate to Iowa&#039;s prairie environment. The fountain was made for drinking, for horses as well as humans.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Civil War Parrot Rifle",
            "lat": "41.590824",
            "lon": "-93.604365",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-parrotrifle.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Civil War Parrot Rifle</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590824,-93.604365\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 10,000 pound cannon was made at West Point Foundry in New York, and was used during the civil war.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "G.A.R. Sundial",
            "lat": "41.591004",
            "lon": "-93.604826",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-garsundial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">G.A.R. Sundial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591004,-93.604826\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bronze sundial is dedicated to the Union veterans of the civil war. It was installed in 1938, and adjusted by Dr. D. W. Morehouse, then president of Drake University and astronomy professor.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Great Seal of Iowa",
            "lat": "41.590952",
            "lon": "-93.605065",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-iowaseal.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Great Seal of Iowa</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590952,-93.605065\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bronze tablet is a replica of the state seal used by early Iowan governors. The seal illustrates Iowa&#039;s history; highlighting military contributions, agriculture, shipping, and industrialization.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Liberty Bell",
            "lat": "41.591053",
            "lon": "-93.601629",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-libertybell.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Liberty Bell</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591053,-93.601629\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Federal Department of Treasury presented this 2,000 pound miniature liberty bell to Iowa in 1950 to thank the state for its efforts selling war bonds during World War II.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 E 12th St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Mortar",
            "lat": "41.591045",
            "lon": "-93.604621",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-mortar.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mortar</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591045,-93.604621\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 22,000 pound mortar was made in 1895 at Fort Pitt, Pennsylvania. It was used on the gunboat &quot;Mathew Vassar&quot; in the civil war.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Oley Nelson Memorial Tree",
            "lat": "41.591859",
            "lon": "-93.603239",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-oleynelsonmemorialtree.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oley Nelson Memorial Tree</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591859,-93.603239\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This tree was donated by the Iowa Sons of Union Veterans at the June encampment in 1936 to honor Oley Nelson. Nelson was the commander and chief of the GAR from 1935 to 1936.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 E 12th St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Pioneer Statuary Group",
            "lat": "41.590865",
            "lon": "-93.605441",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-pioneerstatuarygroup.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pioneer Statuary Group</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590865,-93.605441\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created by Karl Gerhardt in 1890, this statue depicts the search for a future home by a father and son, being lead by a Native American.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5592</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Spanish-American War Monument",
            "lat": "41.591883",
            "lon": "-93.602057",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-spanishamericanwarmonument.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spanish-American War Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591883,-93.602057\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This memorial is dedicated to Iowans who voluntarily served in the Spanish-American War, the Philippine Insurrection, and the China Relief Expedition.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 E 12th St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Statue of Liberty",
            "lat": "41.592159",
            "lon": "-93.602047",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-statueofliberty.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Statue of Liberty</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592159,-93.602047\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This miniature Statue of Liberty was donated in 1950 by the Tall Corn (now Mid-Iowa) Council of the Boy Scouts of America as part of their annual service project.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 E 12th St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Teacher Boulder",
            "lat": "41.590900",
            "lon": "-93.607030",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-teachermemorial.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Teacher Boulder</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590900,-93.607030\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This boulder is placed in proximity to the site of Bryant School, and celebrates professional educators. Iowa has a long history of great educators including James Van Allen, George Washington Carver, Carrie Chapman Catt; but there are thousands more that have made a difference and continue to do so on a daily basis.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "V.F.W. Monument",
            "lat": "41.590878",
            "lon": "-93.604782",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-vfwmonument.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">V.F.W. Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590878,-93.604782\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Installed in 1976, this monument was a bicentennial gift from Iowa chapters of the Veterans of Foreign Wars and their Ladies&#039; Auxiliary to honor all Americans who fought overseas.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World War II Memorial Plaza",
            "lat": "41.592006",
            "lon": "-93.599843",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-wwiimemorialplaza.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World War II Memorial Plaza</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592006,-93.599843\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This memorial honors those who served during WWII, while celebrating the compelling reason for US involvement: The preservation of freedom around the world.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 E 13th St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Iowa Holocaust Memorial",
            "lat": "41.590987",
            "lon": "-93.607089",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-iowaholocaustmemorial.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Holocaust Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590987,-93.607089\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Holocaust Memorial was installed on the West Capitol Terrace in June 2013. The design of ribbons of aluminum in concrete, with prairie grasses, is intended to be an abstract representation of a Holocaust survivor&#039;s journey. The struggle for survival and perseverance in the face of oppression are described in text samples along the memorial. As the visitor moves east, the rolling features of the landscape blossom and expand outward to the State Capitol, showcasing Iowa&#039;s role as a welcoming refuge for any people in need of a new start.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://iowaholocaustmemorial.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Iowa Women of World War I Memorial",
            "lat": "41.592234",
            "lon": "-93.600131",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Women of World War I Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592234,-93.600131\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This marker is a tribute to all Iowa women who served in the Armed Forces and with the Red Cross and YMCA during World War I. In May 1921, Iowa honored ten nurses who died in service during World War I by planting ten white birch trees to memorialize these &quot;soldiers in white.&quot; Marion Crandell of Cedar Rapids and Davenport - recognized as the first American woman to die in active service during the war - was honored, along with Elsie May Hatch of Edgewood, Kathleen Kennebeck of Carroll, and Dorothy Koellner of Fort Madison. Newspapers also reported Mary Welman Lorraine Lawson (whose surname is actually Ransom), Maud Holt (which was believed to be a transcription error), Marie Beeman, Mary Mahoney and Ramona Bates as honorees. With the original trees lost to time, the memorial was revived in 1928 with the planting of ten white oak trees placed equally to the north and south of the World War II Memorial Plaza. The memorial was dedicated on May 5, 2019 and was a project of the Iowa World War I Centennial Committee supported through the U.S. World War I Centennial Commission, Branstad Iowa History Fund and Iowa American Legion Foundation. The research undertaken by the Iowa World War I Centennial Commission about the women casualties from Iowa can be accessed at the State Historical Library &amp; Archives research centers in Des Moines.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE 13th St<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Iowa Workers Monument",
            "lat": "41.591939",
            "lon": "-93.605834",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-iowaworkforcedevelopment.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Workers Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591939,-93.605834\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Iowa is the 38th state to create a monument to its workers. The sculpture represents four interlocking arms and hands, dedicated to the energy and integrity of the Workers of Iowa. Each arm supports the other, in the same way a diverse blend of people, from many backgrounds, come together to work and create the cultural and business base of Iowa. It is constructed of welded bronze strips, supported by a stainless steel interior armature. The open, woven or latticed quality of the sculpture allows constant shifting sunlight to filter through the sculptural space. (Artist: Michael Stutz)</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Lincoln and Tad",
            "lat": "41.591127",
            "lon": "-93.604855",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-lincolnandtad.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lincoln and Tad</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591127,-93.604855\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Sculpted by Fred and Mabel Torey of Des Moines, the statue was dedicated on the anniversary of the Gettysburg Address, November 19, 1961, and depicts Abraham Lincoln reading to one of his sons, Tad (Thomas). Found on the West side of the Iowa State Capitol Building.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "American Enterprise Art Park",
            "lat": "41.590041",
            "lon": "-93.624869",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-americanenterpriseartpark.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">American Enterprise Art Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590041,-93.624869\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>American Enterprise Group&#039;s contemporary art collection began in the 1960s to inspire an innovative work environment and the Art Park extends that creative environment into a public green space. The eleven sculptures installed in this area are intended to enhance the natural surroundings while providing a contemplative space for the community.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5th Ave. and Watson Powell Junior Pkwy.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.catchdesmoines.com/listings/American-Enterprise-Art-Park/8927/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Column of Change",
            "lat": "41.590039",
            "lon": "-93.624944",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-columnofchange.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Column of Change</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590039,-93.624944\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Column of Change is a bronze sculpture by Michael Pavovsky built in 1996. The Column is a bronze column filled with faces and shows the progress of humanity. Pavovsky is a renowned sculpter who has enjoyed great success, and has been commissioned on several large projects like the &quot;Movement to Overcome&quot; constructed on the site of Martin Luther King, Jr.’s assassination.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 6th Ave.<br />American Enterprise Art Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.ci.frisco.tx.us/projectsPrograms/publicart/Pages/PublicArtCollectionArtist.aspx?Artist=Michael%20Pavlovskypid=bio\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Construction",
            "lat": "41.590219",
            "lon": "-93.624777",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-construction.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Construction</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590219,-93.624777\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>“Construction” is a wall with painted steel components commissioned for the American Republic Insurance Company in 1971. (Artist: Ivan Chermayeff)</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 6th Ave.<br />American Enterprise Art Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Dephinus",
            "lat": "41.590135",
            "lon": "-93.624932",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-dephinus.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dephinus</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590135,-93.624932\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This sculpture was created by Eric Jean-Marie in 1995. The sculpture is minimal and appears to be chained to the Earth. The artist has this to say of his work: &quot;My work moves along the lines of constructivism, infusing organic industrial weight with the pure and refined synergy of connection, tension, harmony and balance found in the structural materials of industry and architecture with a focus on symmetrical, pure and direct abstraction, even biomorphic. If there is a singular theme, it is of the &quot;ghost in the machine.&quot;</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 6th Ave.<br />American Enterprise Art Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Hall of Pride Mural",
            "lat": "41.591269",
            "lon": "-93.622423",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hall of Pride Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591269,-93.622423\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This high-relief sculptural mural by David B. Dahlquist was designed for the Iowa Hall of Pride and dedicated by the Iowa Bankers&#039; Association.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t330 Park St.<br />Iowa Hall of Pride<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Kenyon Cox Lunettes",
            "lat": "41.591132",
            "lon": "-93.603615",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kenyon Cox Lunettes</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591132,-93.603615\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Eight lunettes, or half-moon-shaped paintings, surrounding the rotunda of the Iowa State Capitol, are the work of Kenyon Cox, famous American artist. They are entitled: Hunting, Herding, Agriculture, the Forge, Commerce, Education, Science, and Art. They are allegorical and indicate the progress of civilization.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Building<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Iowa Allegory",
            "lat": "41.592012",
            "lon": "-93.607426",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Allegory</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592012,-93.607426\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Richard Jacobbi created this oil painting in 1976. The painting is a study of Iowa commodities and the people who live and work with the earth.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t502 E 9th St.<br />Wallace Building<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/node/68866\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Iowa Made: By Land and Hand",
            "lat": "41.594857",
            "lon": "-93.555257",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-art-iowamadelandhand.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Made: By Land and Hand</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.594857,-93.555257\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;Iowa Made: By Land and Hand&quot; by Artist David B. Dahlquist was warded by the Iowa State Fair Board of Trustees and the State of Iowa. The ceramic mural and floor medallion is the public art focal point at the south entrance to the Knapp Varied Industries Building.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Landscape Piece No. 1",
            "lat": "41.590091",
            "lon": "-93.624731",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-landscapepiece1.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Landscape Piece No. 1</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590091,-93.624731\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dale Eldred created this sculpture out of wood and treated with zinc. The piece consists of two main slabs that lean away from each other, but are connected through cable to a grounding point.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 6th Ave.<br />American Enterprise Art Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Mosaics",
            "lat": "41.591083",
            "lon": "-93.604164",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mosaics</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591083,-93.604164\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Frederick Dielmann created these six mosaics, placed above the grand staircase of the building, in 1904. Each mosaic represents a different function of government.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Building<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Primavera III",
            "lat": "41.590046",
            "lon": "-93.624698",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-primaveraiii.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Primavera III</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590046,-93.624698\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created by Peter Chinni in 1965, this sculpture focuses on growth, change, and renewal. The word &quot;Primavera&quot; translates roughly to mean the season &quot;Spring&quot;.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 6th Ave.<br />American Enterprise Art Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Until the Woods Began to Move",
            "lat": "41.591171",
            "lon": "-93.621712",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Until the Woods Began to Move</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591171,-93.621712\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This public art project by Anna Gaskell, a site specific project at the Iowa Events Center, was approved by the Polk County Board of Supervisors in 2005. The work of art, called &quot;Until the Woods Began to Move&quot;, is composed of a hedge maze and video; the artist&#039;s statement is incorporated into the site.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t700 3rd St.<br />Iowa Events Center<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "West Pediment",
            "lat": "41.591084",
            "lon": "-93.604093",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Pediment</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591084,-93.604093\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The West Pediment is a limestone relief sculpture built in 1879. The sculpture features five figures representing core values of the Iowa Capitol and the state of Iowa.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Westward",
            "lat": "41.591531",
            "lon": "-93.603746",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Westward</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591531,-93.603746\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The large-scale mural Westward, painted by American Edwin Howland Blashfield, depicts early pioneers traveling through Iowa and the industrial progress that follows the cultivation of crops.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5597</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.legis.iowa.gov/resources/tourCapitol/pictorial/today/secondFloor/westward\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "XII",
            "lat": "41.590094",
            "lon": "-93.624879",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-xii.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">XII</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590094,-93.624879\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Edward Lee Hendricks created this sculpture in 1983. It is currently installed in the American Enterprise Art Park.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 6th Ave.<br />American Enterprise Art Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Gateway Dance Theatre",
            "lat": "41.589080",
            "lon": "-93.610815",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gateway Dance Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589080,-93.610815\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Founded in 1972, Gateway Dance Theatre (GDT) moves to the rhythms of the world, fusing African-American, Caribbean, Asian and Indian music and movement into a multimedia experience for people of all ages and backgrounds. The theatre offers dance classes, performances, a residency program, workshops, and more.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t315 E 5th St.<br />Suite 12<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.283.8383</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.gatewaydance.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Hoyt Sherman Place",
            "lat": "41.588871",
            "lon": "-93.638189",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-hoytshermanplace-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hoyt Sherman Place</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.588871,-93.638189\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Hoyt Sherman Place was originally built in 1877 as the private residence of Major Hoyt Sherman, a prominent banker who came to Iowa in 1848. After Sherman’s death in 1904, the house sat empty until it became a cultural facility in 1907 due to the efforts of the Des Moines Women’s Club. Since then it has evolved into a museum and performing arts center. The original house and gallery display a collection of 19th and 20th century paintings, elaborately carved 17th century furniture, and other artifacts. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1501 Woodland Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.244.0507</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.hoytsherman.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Family at Corner",
            "lat": "41.589722",
            "lon": "-93.625147",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Family at Corner</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589722,-93.625147\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This sculpture consists of a family, peaking out from above some greenery. It is a playful sculpture, featuring child-inspired imagery. (Artist: unknown)</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 6th Ave.<br />American Enterprise Art Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Folded Circle Zig",
            "lat": "41.589871",
            "lon": "-93.624902",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-foldedcirclezig.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Folded Circle Zig</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589871,-93.624902\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Fletcher Benton created this painted steel sculpture in 1988.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 6th Ave.<br />American Enterprise Art Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Granite Tree",
            "lat": "41.589890",
            "lon": "-93.624710",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-granitetree.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Granite Tree</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589890,-93.624710\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Jesús Bautista Moroles created this sculpture out of granite. He states this about his work: “My work is a discussion of how man exists in nature and touches nature and uses nature. Each of my pieces has about 50 percent of its surfaces untouched and raw—those are parts of the stone that were torn. The rest of the work is smoothed and polished. The effect, which I want people to not only look at but touch, is a harmonious coexistence of the two.”</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 6th Ave.<br />American Enterprise Art Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Greenfall",
            "lat": "41.590298",
            "lon": "-93.609552",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-greenfall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Greenfall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590298,-93.609552\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Iowa artist Shirley Wyrick created this 8 ½ x 10 foot bronze relief sculpture tracing the path and topology of the Wisconsin and Mississippi Rivers, where, at their junction, Jacques Marquette and Louis Joliet first viewed the territory that would become the State of Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t600 E Locust St.<br />State Historical Building<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Harmony Line",
            "lat": "41.602517",
            "lon": "-93.790631",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-harmonyline.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Harmony Line</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.602517,-93.790631\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Harmony Line is a sculpture by TJ Moberg built in 2010. Harmony Line expresses the concept of healthy living through expressive forms and use of materials that suggest movement, enthusiasm and the complexity of the human body. It also expresses healthy living through an interactive experience of exploration and discovery, evolving visually depending on the viewers location, time of day and time of year.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t12497 University Ave.<br />Clive, IA 50325<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Last Breath",
            "lat": "41.589036",
            "lon": "-93.628978",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Last Breath</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589036,-93.628978\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>James Turrell created this artwork in 1990. Turrell&#039;s work deals mainly with light and space. This piece is located in the Principal Corporate 2 Lobby, at the corner of Pleasant and 8th Streets. Please note that pre-scheduled access is available upon request and security screening is required.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t650 8th St.<br />Principal Financial Building<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Plains Aurora",
            "lat": "41.590443",
            "lon": "-93.609398",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Plains Aurora</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590443,-93.609398\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created by Cork Marcheschi, this 32-foot glass block tower of light is displayed on the exterior of the State Historical Society Building.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t600 E Locust St.<br />State Historical Building<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.6911</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowahistory.org/publications/historian/2005/july/public-art-fundraisers.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Quantum Leaf",
            "lat": "41.589147",
            "lon": "-93.619709",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-quantamleaf.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Quantum Leaf</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589147,-93.619709\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Sally Pettus created this piece in 2005 out of bronze. &quot;Quantum Leaf,&quot; about 15 feet in diameter and 11 feet in height, looks like an oversized dying leaf with its edges curled. The sculpture was created as a fountain with water pouring from the leaf-form into a shallow circular pond.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 Grand Ave.<br />Hansen Triangle Park<br />Des Moines, IA 50265<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Rack-N-Roll Project",
            "lat": "41.590058",
            "lon": "-93.609731",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-racknroll.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rack-N-Roll Project</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590058,-93.609731\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The East Village “Rack ‘n’ Roll Project” was funded in part and guided by the Greater Des Moines Public Art Foundation. The project was an open competition, resulting in over 20 entries from Iowa artists. The bicycle “art racks” are functional pieces that serve the dual purpose of securing bicycles while introducing public art into the East Village streetscape. The bicycle art racks are in eight separate locations east of the Des Moines River, along East Locust Street and East Grand Avenue. The submissions were reviewed by an experienced panel of judges who made final recommendations based on pre-determined criteria and quality of the artist&#039;s work.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE 6th St. and E Locust St.<br />East Village<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Sphere Within a Sphere",
            "lat": "41.589808",
            "lon": "-93.625282",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-spherewithinasphere.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sphere Within a Sphere</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589808,-93.625282\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Italian sculptor Arnaldo Pomodoro’s 18,000-pound outdoor sculpture, “Sphere Within Sphere,” marks the entrance to the American Republic Insurance Company building. Set on an axis, the bronze sculpture revolves like a globe. Pomodoro is known for his sphere sculptures; his most famous are at Vatican City in Rome, Italy and the United Nations headquarters in New York.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 6th Ave.<br />American Enterprise Art Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Spherically Bent Beam",
            "lat": "41.590279",
            "lon": "-93.599028",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spherically Bent Beam</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590279,-93.599028\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Doug Hanson created this sculpture out of clay and stainless steel in 2014. It is located in the west lobby of the Herbert Hoover State Office Building.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1305 E Walnut St.<br />Hoover State Office Building<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/node/68856\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Theater",
            "lat": "41.589952",
            "lon": "-93.624782",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-thetheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589952,-93.624782\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;The Theater&quot; was created by artist David Kraisler in 1991. The sculpture is located on the grounds of the American Republic Insurance headquarters and portrays a human figure, standing against an abstracted stage.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 6th Ave.<br />American Enterprise Art Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Tinctorial Spiral",
            "lat": "41.590279",
            "lon": "-93.599028",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tinctorial Spiral</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590279,-93.599028\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Priscilla Sage created this suspended sculpture out of mixed media and fibers in 1979. It is located in the west lobby of the Herbert Hoover State Office Building.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1305 E Walnut St.<br />Hoover State Office Building<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/node/68858#date\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Five Stones, One Tree",
            "lat": "41.590424",
            "lon": "-93.600056",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-5stonesonetree.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Five Stones, One Tree</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590424,-93.600056\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>As they approach this building, visitors may notice an unusual triangular formation made by two, symmetrical limestone columns and a flowering tree. Artist Luther Utterback designed this environmental sculpture, which consists of a pair of rough-cut pillars, each comprised of two stones, and a fifth stone sunken below ground. Centered between the columns, a Japanese gingko tree blooms annually, symbolizing longevity and renewal.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1298 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Allison Monument",
            "lat": "41.589481",
            "lon": "-93.603162",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-allisonmonument.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Allison Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589481,-93.603162\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Evelyn Longman created this monument in 1916 as a tribute to US senator William Boyd Allison, who represented Iowa in congress for 43 years. He was twice a presidential candidate for his party, and was a close associate to many presidents, from Abraham Lincoln to Theodore Roosevelt.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Bicentennial Time Capsule",
            "lat": "41.589657",
            "lon": "-93.603935",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-bicentennialtimecapsule.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bicentennial Time Capsule</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589657,-93.603935\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This time capsule was sealed in July, 1977, at the time of the nation&#039;s bicentennial. It is to be reopened July 4, 2075. There are 58 items in the capsule, all selected for their historic significance.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Centennial Time Capsule",
            "lat": "41.589483",
            "lon": "-93.603888",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-centennialtimecapsule.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Centennial Time Capsule</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589483,-93.603888\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This time capsule was sealed in 1984 during the 100th anniversary of the dedication of the Capitol. It will be reopened in January of 2084.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Cornerstone",
            "lat": "41.590681",
            "lon": "-93.603965",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-cornerstone.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cornerstone</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590681,-93.603965\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located on the southwest corner of the capitol, this cornerstone reads &#039;Iowa 1873 AD&#039;.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Crocker Memorial",
            "lat": "41.590097",
            "lon": "-93.602281",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-crockermemorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Crocker Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590097,-93.602281\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This memorial was installed in 1944 by the Crocker Women&#039;s Relief Corps and honors the first brigade formed in Iowa during the Civil War.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "G.A.R. Memorial Tree",
            "lat": "41.589661",
            "lon": "-93.604254",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">G.A.R. Memorial Tree</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589661,-93.604254\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This tree was planted in honor of the Civil War veterans during a national encampment in Des Moines.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Korean War Memorial",
            "lat": "41.589867",
            "lon": "-93.602498",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-koreanwarmemorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Korean War Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589867,-93.602498\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This memorial was created after students from a Harding Junior High School class in Des Moines wrote to the governor in 1984 asking why Korean War veterans did not have a memorial. Stone tablets surround a central obelisk.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Martin Luther King Memorial Tree",
            "lat": "41.589932",
            "lon": "-93.602197",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-martinlutherkingtree.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Martin Luther King Memorial Tree</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589932,-93.602197\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Planted in 1984, this tree celebrates the memory of Martin Luther King. Two local Des Moines citizens purchased the marker for the tree.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Purple Heart Memorial",
            "lat": "41.589752",
            "lon": "-93.602641",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-purpleheartcombatveterans.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Purple Heart Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589752,-93.602641\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This monument was installed by the Department of Iowa Military Order of the Purple Heart and dedicated on February 21, 2004. The Purple Heart is specifically a combat decoration, awarded to eligible members of the armed forces.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Soldiers&#039; and Sailors&#039; Monument",
            "lat": "41.589733",
            "lon": "-93.603466",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-soldiersandsailors.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Soldiers&#039; and Sailors&#039; Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589733,-93.603466\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The State of Iowa erected this monument to commemorate Iowans who fought during the Civil War. The monument was approved in 1888, the cornerstone was laid in 1894, and the structure was completed two years later. Because a controversy developed over the location and artistic details of the monument, nearly 50 years passed before its dedication in 1945. Iowa artist Harriet A. Ketcham&#039;s design for the memorial was chosen over 47 others, although she died before the monument was completed. Both real and symbolic figures are portrayed. &quot;Victory&quot; is the most prominent figure, topping the 135-foot structure. Four equestrians, all Iowa Civil War generals, are depicted: Marcellus M. Crocker, who joined Grant at the siege of Vicksburg; Grenville M. Dodge, who built railroads to support Grant&#039;s army and accompanied Sherman on the March to the Sea; Samuel R. Curtis, commander of the Union Army at Pea Ridge; and John M. Corse, who was promoted to brigadier general in 1863 and assigned to the command of the Fourth Division of the Fifteenth Army Corps. The four soldiers depicted on the upper base represent Iowans who served in different branches of the military during the Civil War: Infantryman Shelby Norman, who, at the age of 18, was the first Iowan killed in battle; Ensign William H.C. Michael, a school teacher turned sailor; Artilleryman Captain Henry H. Griffiths, whose battery never lost a gun throughout the war; and Cavalryman Lt. James Horton, killed while leading a saber charge at the battle of Lovejoy Station. Nearly 80,000 Civil War military men were from Iowa, the largest number of soldiers per capita of any state participating during the war. Noted Iowa generals and battle scenes are pictured along the base. On the north side, a statue portrays Iowa as a mother offering nourishment to her children. To the south, &quot;History&quot; gazes into the future, and &quot;Iowa&quot; is shown as a youngster.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1111 E Court Ave.<br />State Capitol Complex<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5594</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Submarine Memorial",
            "lat": "41.589518",
            "lon": "-93.602569",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-submarinememorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Submarine Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589518,-93.602569\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This memorial was installed as a part of a nationwide effort to establish memorials for each of the 52 submarines lost during World War II. The submarine assigned to the Iowa committee for this effort in the S-36.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Vietnam War Memorial",
            "lat": "41.589477",
            "lon": "-93.602269",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-vietnamwarmemorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vietnam War Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589477,-93.602269\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dedicated on memorial day, 1984, this memorial is similar in design to the monument in Washington DC. At a separate ceremony on Veterans Day, 1984, bronze plaques and missing names were added.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Life Flight Crew Memorial",
            "lat": "41.589194",
            "lon": "-93.633806",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Life Flight Crew Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589194,-93.633806\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Iowa artist Rebecca Eckstrand created this sculpture in 1983. The sculpture serves as a memorial to the emergency respondents who lost their lives in a helicopter accident while on their way to a hospital in 1980.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1200 Pleasant St.<br />Iowa Methodist Medical Center Courtyard<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Woodland Cemetery Gold Star Section",
            "lat": "41.588773",
            "lon": "-93.645617",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-cemetery-woodland-goldstar.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Woodland Cemetery Gold Star Section</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.588773,-93.645617\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Gold Star section at Woodland Cemetery is the second and final resting place of Iowa soldiers killed in World War I. (Many of the soldiers were first buried in France.) Among those buried here is Medal of Honor recipient Lt. Col. Emory J. Pike, who helped a wounded soldier during a heavy artillery shelling and was severely wounded himself when another shell burst during the ordeal. While waiting to be brought to the rear, he continued in command and directed the reorganization until the unit&#039;s position could be held. He died of the wounds he sustained during the battle. Another soldier here is Capt. Edward Fleur, who was also killed in France during World War I and is buried across the lane from his wife, Minnie, who was a county recorder in the 1920s, a rare job for women in those days. Since wives weren&#039;t allowed to be buried with the soldiers, the Fleurs&#039; across-the-street arrangement was the closest they could get.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWoodland Ave.<br />Woodland Cemetery<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "World Food Prize Hall of Laureates",
            "lat": "41.587641",
            "lon": "-93.618871",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historymuseum-worldfoodprize.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World Food Prize Hall of Laureates</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587641,-93.618871\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The World Food Prize Hall of Laureates is a building dedicated to the World Food Prize and Dr. Norman E. Borlaug. The Hall of Laureates has a world-class museum to recognize great achievements in agriculture and fighting hunger, an educational facility featuring interactive displays on hunger and food security, and a conference center and event space available to other groups and organizations for their meetings and other activities. The building originally housed the Des Moines Public Library from 1903-2006. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.245.3783</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.worldfoodprize.org/hall\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "American Revolution",
            "lat": "41.589256",
            "lon": "-93.603509",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-americanrevolution.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">American Revolution</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589256,-93.603509\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This monument is a tribute to revolutionary war veterans. The monument consists of a central stone inscribed with the names of 39 revolutionary war veterans who are buried in the state. This stone is surrounded by 13 pillars, dedicated to the original colonies.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Christopher Columbus Memorial",
            "lat": "41.589319",
            "lon": "-93.602674",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-christophercolumbusmemorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Christopher Columbus Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589319,-93.602674\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Donated to the state by the Italian-American community in 1938, this monument is a tribute to the discoverer of America, Columbus. A bronze bust rests between classical granite pillars.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Japanese Bell and Bell House",
            "lat": "41.588278",
            "lon": "-93.602766",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-japanesebellandbellhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Japanese Bell and Bell House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.588278,-93.602766\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1959, typhoons damaged crops and homes in Yamanashi prefecture in Japan. Citizens of Iowa sent breeding hogs and feed corn to aid the district. This bell house was presented to Iowa by the citizens of Yamanashi as a symbol of appreciation, peace, and friendship.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1111 E Court Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Memorial Bench",
            "lat": "41.588407",
            "lon": "-93.602899",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-garmemorialbench.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Memorial Bench</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.588407,-93.602899\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bench is in memory of Mrs. Tomoko Yamamoto, noted Japanese flower arranger and instructor. It was dedicated on May 20, 1967, during the formal visit of the Japanese governor to the Iowa Capitol.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1111 E Court Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Peace Officers&#039; Memorial",
            "lat": "41.589072",
            "lon": "-93.605532",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-peaceofficersmemorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Peace Officers&#039; Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589072,-93.605532\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This monument honors all Iowan police officers killed in the line of duty, as well as those who continue to serve. The monuments three individual forms represent the three levels of law enforcement in Iowa (city, county, and state).</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t292 Finkbine Dr.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Workspace",
            "lat": "41.587757",
            "lon": "-93.621959",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-workspace.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Workspace</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587757,-93.621959\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Jordan Weber’s 2015 mural on the west side of the building features a woman from a vintage comic strip – blonde hair, blue eyes, ruby red lips – who stares in shock at the graffiti on the rest of the wall. The colorful hodgepodge includes Dopey from Disney’s “Snow White,” a pair of Smurfs, and the logo of the interior design and office furniture company Workspace, which commissioned the project.\r\n\r\nWeber told the Des Moines Register that the wide-eyed woman represents “the ‘American consumer’ or a ‘more traditional’ Des Moines citizen reacting to downtown’s rapid growth.”</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t309 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Des Moines Civic Center",
            "lat": "41.587283",
            "lon": "-93.620489",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artperforming-desmoinesciviccenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines Civic Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587283,-93.620489\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Des Moines Civic Center, which has been in operation since 1979, is Central Iowa’s premier destination for world-class performing arts. From live, professional theater direct from Broadway to concerts, dance and family shows, the Civic Center offers a full spectrum of entertainment that appeals to everyone. The Main Hall accommodates more than 2,700 people and is known for its excellent acoustics and sight lines. Inside the Civic Center is the Stoner Theater, is a 200-seat black box theater for community rentals and education initiatives. The Civic Center is managed and programmed by Des Moines Performing Arts.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t221 Walnut St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.246.2300</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.DesMoinesPerformingArts.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Shattering Silence",
            "lat": "41.588363",
            "lon": "-93.603210",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-shatteringsilence.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Shattering Silence</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.588363,-93.603210\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created by James Ellwanger in 2009, the sculpture &quot;Shattering Silence&quot; is adjacent to the building that houses the Iowa Supreme Court. It is in commemoration of the 170th anniversary of the landmark 1839 Iowa Territorial Supreme Court ruling that prohibited slave Ralph Montgomery from being extradited back to Missouri after he failed to raise the $550 he promised to pay to buy his freedom.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1111 E Court Ave.<br />State Capitol Complex<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5592</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://das.gse.iowa.gov/monuments/index_30.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "A Social History of Des Moines",
            "lat": "41.587635",
            "lon": "-93.618963",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-socialhistoryofdesmoines-15.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">A Social History of Des Moines</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587635,-93.618963\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This wrap around mural, more than 1,000 feet in length, traces the history of Des Moines from prehistoric times through its founding in the mid-1930s. Artist Harry Donald Jones and a team of twenty-one other researchers, artists and artisans created this mural as part of the Depression-era Public Works of Art Project, supervised by renowned Iowa artist Grant Wood. The building, which originally housed the Des Moines Public Library, is home today to the World Food Prize Foundation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Locust St.<br />World Food Prize<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.245.3784</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.worldfoodprize.org/index.cfm?nodeID=37219andaudienceID=1\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "A World of Possibilities",
            "lat": "41.587240",
            "lon": "-93.628519",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">A World of Possibilities</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587240,-93.628519\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created by Viola Frey in 1995, these monumental, intensely colored ceramic sculptures explore issues of gender and cultural iconography.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t801 Grand Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Crusoe Umbrella",
            "lat": "41.587413",
            "lon": "-93.621438",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-crusoeumbrella.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Crusoe Umbrella</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587413,-93.621438\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Crusoe Umbrella&#039;, an iconic sculpture by artists Cleas Oldenburg and Coosje van Brugeen, is a playful reference to the handmade umbrella carried by Robinson Crusoe. The 33-foot-tall sculpture, situated in the Cowles Commons plaza (formerly Nolen Plaza) in downtown Des Moines, was installed in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3rd St. and Locust St.<br />Des Moines, IA 50313<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Dr. Norman E. Borlaug Statue",
            "lat": "41.587325",
            "lon": "-93.619400",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-drnormanborlaug.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. Norman E. Borlaug Statue</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587325,-93.619400\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This eight-foot bronze sculpture depicts Dr. Norman E. Borlaug, an agronomist and father of the Green Revolution, humanitarian, and founder of The World Food Prize, headquartered in Des Moines. The sculpture was designed by artist John Collier. Born in Cresco, Iowa, Dr. Norman E. Borlaug was awarded the Nobel Peace Prize in 1970.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWorld Food Prize<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.245.3783</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.aoc.gov/capitol-hill/national-statuary-hall-collection/dr-norman-e-borlaug\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Hand and Land: Fingerprint",
            "lat": "41.588382",
            "lon": "-93.607002",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hand and Land: Fingerprint</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.588382,-93.607002\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;Hand and Land: Fingerprint,&quot; a site-integrated work of art, consists of numerous elements: two exterior illuminated pattern-cut steel columns; a series of terracotta tiles flanking the main entrance; a large stained glass window and illuminated metal cut text in the interior lobby; and colored wood relief signage on each floor. The commissioned project visualizes the Iowa Department of Public Safety which is dedicated to protect and serve the public.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t215 E 7th St.<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/hand-and-land-fingerprint\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "John Ruan, Sr. Statue",
            "lat": "41.587716",
            "lon": "-93.619547",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-johnruan.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Ruan, Sr. Statue</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587716,-93.619547\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Chas Fagan designed this bronze sculpture of John Ruan, Sr., founder of the World Food Prize Foundation. The Prize honors the achievements of individuals who have advanced human development by improving the quality, quantity or availability of food in the world.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Locust St.<br />World Food Prize<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.245.3785</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Prairie Song",
            "lat": "41.589301",
            "lon": "-93.597742",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prairie Song</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589301,-93.597742\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>California-based team Jeffery Reed and Jennifer Madden were commissioned to create this kinetic sculpture, emulating the movement and sound of the native prairie grass that once covered most of Iowa. “Prairie Song” consists of five 20-foot tall blades of prairie grass, made from stainless steel. Each &quot;leaf” encases a corrugated steel tube filled with steel balls that rattle in the wind. The artist team calibrated the poles’ hinges to sway in a heavy gust of wind. Like seeds using the wind, these pods chime with the movement of the stalks.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t198 East 13th St.<br />Iowa Utilities Board/Office of the Consumer Advocate<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/prairie-song\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Puzzle of Life",
            "lat": "41.588182",
            "lon": "-93.628453",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-puzzleoflife.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Puzzle of Life</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.588182,-93.628453\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Completed in 2003 by artist Barri Lester, &quot;The Puzzle of Life&quot; is a large-scale mural on the west exterior wall of PACE Juvenile Center. This public art project was inspired by participating young people, ages 12-17, of this alternative school, who had experienced problems with school or the law. The mural reflects the teenagers progress as they complete his or her education while working to improve his or her opportunities throughout life.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t620 8th St.<br />PACE Juvenile Center<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Solitary Journey: Morning, Noon, Dusk, Night",
            "lat": "41.587300",
            "lon": "-93.628546",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Solitary Journey: Morning, Noon, Dusk, Night</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587300,-93.628546\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This painting, created by Astrid Preston in 1992, depicts a garden scene with a hedge maze. Preston is known for her surreal scenes, which look both real and imagined in interpretation. This painting hangs on the skywalk level of 801 Grand Ave, downtown Des Moines.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t801 Grand Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Untitled Murals",
            "lat": "41.588380",
            "lon": "-93.601286",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Untitled Murals</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.588380,-93.601286\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Fritz Melzer created these three large murals, one large medallion, and six smaller medallions for the Iowa Supreme Court courtroom in 1886.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1111 E Court Ave.<br />State of Iowa Judical Branch Building<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Untitled Murals for Bankers Life",
            "lat": "41.587473",
            "lon": "-93.628542",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Untitled Murals for Bankers Life</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587473,-93.628542\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Prominently featured over the front entry doors of 801 Grand, the Principal Financial Group Building, are three large murals cast in poetic glass, created by artist Lowell Houser in 1939. They are about Native American myths about water, earth, and fire.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t801 Grand Ave.<br />Principal Financial Group<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Polk County Heritage Gallery",
            "lat": "41.586717",
            "lon": "-93.619174",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artmuseum-polkcountyheritagegallery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Polk County Heritage Gallery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.586717,-93.619174\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Polk County Heritage Art Gallery is a multi-use exhibition space for both artistic and historical exhibits.  It is a unique facility to contribute to the cultural development of Des Moines and Polk County and to complement existing educational and cultural institutions. The building was built as a United States Post Office and was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t111 Court Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.286.2242</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.polkcountyheritagegallery.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Des Moines Symphony Association",
            "lat": "41.585885",
            "lon": "-93.630316",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines Symphony Association</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585885,-93.630316\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The mission of the Des Moines Symphony Association is to enrich, educate and entertain our community by performing great orchestral music. Led by Music Director Joseph Giunta for the past 25 years, the Orchestra has established an outstanding national reputation as one of the country&#039;s leading regional orchestras, performing a regular series of Masterworks, Pops, Family, and Education Concerts, as well as performing for special events. With the establishment in 2003 of the Des Moines Symphony Academy, the organization is one of only a handful of American orchestras to sponsor an Academy of Music as an integral part of its core mission and the Symphony and Academy together are now the largest employer of professional artists in Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1011 Locust St.<br />The Temple for Performing Arts<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.280.4000</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://dmsymphony.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Temple for the Performing Arts (Masonic Temple of Des Moines)",
            "lat": "41.585927",
            "lon": "-93.630295",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-masonictemple.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Temple for the Performing Arts (Masonic Temple of Des Moines)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585927,-93.630295\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Now known as the Temple for Performing Arts, the Masonic Temple of Des Moines was constructed from 1911-1913 and was designed by prominent Des Moines architects Proudfoot, Bird, and Rawson. The Temple represented a significant architectural feat for the time, with two 4,000-square-foot ballrooms stacked one on top of the other in the center of the building. Over the years, the building has housed such tenants as the Maxwell automobile dealership and Des Moines Waterworks. The Temple was added to the National Register of Historic Places in 1997, but still faced the threat of demolition until the spring of 2001, when Harry Bookey and Pamela Bass-Bookey proposed a plan to restore the building. Their organization, Downtown Preservation Partners, renamed it the Temple for Performing Arts and transformed the building into a venue for performing arts and cultural entertainment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1011 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.321.8498</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.templeforperformingarts.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Air Gets Into Everything Even Nothing",
            "lat": "41.585542",
            "lon": "-93.634129",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-airgetsintoeverything.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Air Gets Into Everything Even Nothing</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585542,-93.634129\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Ugo Rondinone cast this sculpture out of aluminum and coated it in white enamel. The original tree was found in the countryside outside Naples. The white tree, weighing a ton, will complement Iowa’s winter landscape, establishing a discourse between the history-laden olive trees and their unusual urban context.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t598 13th St.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.277.4405</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/Pappajohn-Sculpture-Park-Audio-Tours.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Caste and Cashed",
            "lat": "41.586141",
            "lon": "-93.657012",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Caste and Cashed</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.586141,-93.657012\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Jordan Weber created this mural in 2013, using acrylic latex, spray paint, enamel, and tar. (13ft x 50ft). The mural focuses on cultural iconography and consumerism.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2911 Ingersoll Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Five Dangos",
            "lat": "41.586199",
            "lon": "-93.617865",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-5dangos.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Five Dangos</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.586199,-93.617865\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Jun Kaneko presented these five ceramic signature “Dangos” (meaning “rounded form” or “dumpling” in Japanese) at a public dedication on November 13, 2012. Des Moines&#039; series of five ovular sculptures were created from 2001-2009 and resemble vases without openings. The hand built, ceramic works stand about 7.5 feet in height.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCourt Ave. and Water St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "In the Morning",
            "lat": "41.585600",
            "lon": "-93.634441",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-inthemorning.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">In the Morning</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585600,-93.634441\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;In the Morning&quot; by artist Anthony Caro is a cast bronze sculpture. The sculpture was formed in clay and cast from a model.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1330 Grand Ave.<br />Des Moines, IA 50265<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Leap of Faith",
            "lat": "41.600686",
            "lon": "-93.790330",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-leapoffaith.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Leap of Faith</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.600686,-93.790330\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Leap of Faith is a Jesse Small piece created in 2009. The sculpture is a series of nine tall steel trees near a wellness center in Clive. The trees were designed for an area of high pedestrian traffic and are to be walked amongst.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t12493 University Ave.<br />Clive, IA 50325<br />Polk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thecitrusreport.com/2011/features/jessie-small/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Les Vents",
            "lat": "41.585711",
            "lon": "-93.632001",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-lesvents.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Les Vents</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585711,-93.632001\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Edward Lee Hendricks created this kinetic sculpture titled Les Vents. It is comprised of three 30-foot posts, each with movable 11-foot propellers. The sculpture was installed in the park between the old Central Library and the Civic Center in 1986 and moved to its new location when the library relocated.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 Grand Ave.<br />Des Moines Public Library<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Moonrise",
            "lat": "41.585518",
            "lon": "-93.634285",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-moonriseseast.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Moonrise</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585518,-93.634285\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created by Ugo Rondinone in 2005, these two works represent the man and the moon. The sculptures were originally made from clay, then cast in aluminum and painted with enamel. When you look at these sculptures from the right location, one peaks out from behind the other. Located in the Pappajohn sculpture park.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1330 Grand Ave.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50265<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0344.</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Post Balzac",
            "lat": "41.585585",
            "lon": "-93.634590",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-postbalzac.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Post Balzac</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585585,-93.634590\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created in 1990 by Judith Shea, this sculpture is a tribute to the French writer Balzac, one of the pioneers of realism in European literature, as well as the era he ushered in. Balzac was known for wearing a robe while writing his work. The robe is depicted as hollow in this sculpture, a metaphor for the human spirit.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1398 Grand Ave.<br />Des Moines, IA 50265<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0344</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Prairie Emergence",
            "lat": "41.600844",
            "lon": "-93.792558",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prairie Emergence</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.600844,-93.792558\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created by Mac Hornecker in 2006 out of steel, &#039;Prairie Emergence&#039; represents prairie grasses sprouting from the Earth.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t12695 University Ave.<br />Clive, IA 50325<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.223.6220</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofclive.com/residents/public-art-program/support-art\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Spider",
            "lat": "41.585477",
            "lon": "-93.634695",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-spider.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spider</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585477,-93.634695\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Louise Bourgeois created this piece in 1997. Although many see the spider as an intimidating, even dangerous creature, Bourgeois references her mother through the spider, who died when she was 21. From drawings to large-scale installations, Bourgeois&#039; spiders appear as looming and powerful protectresses, yet are nurturing, delicate, and vulnerable.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1330 Grand Ave.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50265<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0351</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Temple Chess and Poetry Garden",
            "lat": "41.585875",
            "lon": "-93.630626",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-templechessandpoetrygarden.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Temple Chess and Poetry Garden</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585875,-93.630626\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dedicated May 16, 2006, this public space designed by the American artist Siah Armajani, is completed only when someone enters it, sits down to play chess or reads the poetry or in some way becomes a participant. Armajani has created such environments all over the world, and they all reflect his belief in public art.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1011 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Thinker on a Rock",
            "lat": "41.585483",
            "lon": "-93.634867",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-thinkeronarock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thinker on a Rock</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585483,-93.634867\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This piece, created by Barry Flanagan, is a comedic parody of Rodins&#039; famous sculpture &#039;the thinker&#039;. Instead of a man, the &#039;thinker&#039; in this sculpture has been replaced with an anthropomorphized hare.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1330 Grand Ave.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50265<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0352</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Wall Drawing 1238, Whirls and Twirls",
            "lat": "41.585926",
            "lon": "-93.632762",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wall Drawing 1238, Whirls and Twirls</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585926,-93.632762\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>American artist Sol Lewitt designed this colorful, geometric mural for the Pappajohn Higher Education Center in 2007. &quot;Whirls and Twirls&quot; is an example of LeWitt’s highly saturated colorful later works made in acrylic. While the forms are curvilinear, playful and seem almost random, they are drawn according to an exacting set of guidelines. The bands are a standard width, for example, and no colored section may touch another section of the same color.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1200 Grand Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "G.A.R. Flagpole",
            "lat": "41.587588",
            "lon": "-93.600834",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-garflagpole.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">G.A.R. Flagpole</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587588,-93.600834\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 65 ft pole was donated to the state by the Ladies of the Grand Army of the Republic at their 1931 national convention. It is dedicated to the memory of the Grand Army of the Republic of Iowa (GAR).</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1111 E Court Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Peace Pole",
            "lat": "41.587493",
            "lon": "-93.601342",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-peacepole.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Peace Pole</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587493,-93.601342\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This peace pole is one of 51 replicas, presented to all 50 governors and the president. &quot;May peace prevail on Earth&quot; is written on them in four different languages.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1111 E Court Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Scott&#039;s Grave",
            "lat": "41.587685",
            "lon": "-93.600871",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-scottsgrave.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Scott&#039;s Grave</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587685,-93.600871\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1855, Willson Alexander Scott and other speculators donated the 10 acres of land that make up the State Capitol Grounds. Scott died in 1859, and was buried on the grounds, as were his wishes.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1111 E Court Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Temple Theater",
            "lat": "41.585877",
            "lon": "-93.630054",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artperforming-templetheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Temple Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585877,-93.630054\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in the historic Temple for Performing Arts, the Des Moines Temple Theater is a 280-seat venue that is home to the hottest professional comedic theater and live concert presentations. Managed and programmed by Des Moines Performing Arts since 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1011 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.DesMoinesPerformingArts.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Cowles Commons",
            "lat": "41.587123",
            "lon": "-93.621711",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-cowlescommons.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cowles Commons</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587123,-93.621711\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Cowles Commons is a recently renovated outdoor space in downtown Des Moines. Operated by Des Moines Performing Arts, the space features numerous amenities. \r\n\r\nThe amenities include the Lauridsen Fountain, a decorative water feature with 55 color changing lights that will be programmed to change colors in conjunction with the streams of water; seat walls with thought-provoking peace quotes from a variety of authors; and enhanced lighting that will create safety and ambiance from the internationally renowned Iowa-based company, Musco Lighting. \r\n\r\nCowles Commons celebrates the best of Iowa nature with more than 12,000 native plants and 40 trees.\r\n\r\nAdditionally, two sculptures are in the space, including the iconic Crusoe Umbrella, designed by Claes Oldenburg and Coosje van Bruggen, and the new Jim Campbell suspended sculpture that will be illuminated with thousands of LED lights. \r\n\r\nRounding out the amenities is the red granite stone and brick surface that extends from Capital Square to the Des Moines Civic Center, creating a red carpet. The red carpet will host concerts, festivals, markets, outdoor films and other special events.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3rd St. and Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.246.2368</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.DesMoinesPerformingArts.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Repertory Theater of Iowa",
            "lat": "41.584217",
            "lon": "-93.645938",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-theater-repertorytheaterofiowa-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Repertory Theater of Iowa</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584217,-93.645938\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Repertory Theater of Iowa (RTI) was founded in 2004 by Joseph Leonardi, a Des Moines native who had spent the previous 15 years as an actor, director, and playwright in San Francisco. RTI tries to bring resident theatre professionals from the state of Iowa together to create works of theatre. In 2008, the Drama Workshop (Est. 1951) merged with RTI in order to preserve its 57-year history of producing classic dramatic works, and making RTI the leading producer of Iowa theatre.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2124 Grand Ave<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.979.0310</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.dmcirtc.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Bachelor Mural",
            "lat": "41.585257",
            "lon": "-93.619528",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-bachelormural.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bachelor Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585257,-93.619528\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Van Holmgren, a full-time artist from Johnston, painted this mural for an episode of the reality TV program &quot;The Bachelor.&quot;  Iowa native Chris Soules was starred in the 19th season of the show. Holmgren created the mural while Soules was on a date in the restaurant. Soules revealed the mural to his date later that evening.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t208 Court Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Ancient Forest, Juno",
            "lat": "41.585364",
            "lon": "-93.634872",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-junoandancientforest.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ancient Forest, Juno</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585364,-93.634872\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>These sculptures are not actually made of wood, but cast bronze. Individual branches are cast and then welded together to create a horse form. (Artist: Deborah Butterfield)</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1330 Grand Ave.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50265<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.277.4405</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/Pappajohn-Sculpture-Park-Audio-Tours.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Back of Snowman (Black, White)",
            "lat": "41.585370",
            "lon": "-93.635334",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-backofsnowman.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Back of Snowman (Black, White)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585370,-93.635334\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Covered in reflected enamel, these sculptures reflect the light around them. These sculptures are playful, because there is no front to them, encouraging viewers to walk around and around them. (Artist: Gary Hume)</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1418 Grand Ave.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.277.4405</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/Pappajohn-Sculpture-Park-Audio-Tours.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Decoy",
            "lat": "41.585247",
            "lon": "-93.634422",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-decoy.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Decoy</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585247,-93.634422\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Martin Puryear created this sculpture in 1990, and focuses on the tension between interior and exterior space. The sculpture is cast bronze.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1330 Grand Ave.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50265<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.277.4405</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/Pappajohn-Sculpture-Park-Audio-Tours.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Des Moines Color Field",
            "lat": "41.584545",
            "lon": "-93.629255",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-desmoinescolorfield.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines Color Field</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584545,-93.629255\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This installation by artist &#039;STRETCH&#039; is composed of 190 front-load, repurposed glass domes, and with LED lighting produces an infinite light pattern and rainbow-color combinations. This solid wall of glass domes, orbs and sconces is wired like a scoreboard with colored, programmable LED lights in staggered patterns. The art work was executed for the Davis Brown Tower’s street level interior lobby in downtown Des Moines.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t215 10th St.<br />Davis Brown Tower<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.279.9191</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Expansion",
            "lat": "41.585776",
            "lon": "-93.617682",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-bridge-expansion.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Expansion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585776,-93.617682\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;Expansion&quot; was fabricated by the artist in collaboration with Derix Glasstutios in 2012-13 and installed on site October 21-23, 2013. Illuminated from behind with 39,060 LED lights, the mural is located on the exterior wall of the triangular pump station and faces north towards the Hub Spot Plaza and pavilion — the site of Kaneko’s signature “dango&quot; sculptures.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCourt Ave. and Water St.<br />Principal River Walk<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Five Plate Pentagon",
            "lat": "41.585066",
            "lon": "-93.634419",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-5platepentagon.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Five Plate Pentagon</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585066,-93.634419\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Richard Serra created this piece in 1986. Serra&#039;s work focuses on the materiality of what he uses, creating tension through balance his use of balance.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1301 Locust St.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.277.4405</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/Pappajohn-Sculpture-Park-Audio-Tours.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Gymnast III",
            "lat": "41.585282",
            "lon": "-93.635713",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-gymnast.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gymnast III</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585282,-93.635713\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;Gymnast III&quot; is cast in bronze and more than seven-feet tall. The &quot;Gymnast&quot; series of sculpture captures the basic strength of a bending and stretching athlete, rather than with the kind of virtuosity that brings an Olympic audience to its feet. Limbering up, not performing, is its subject matter. The figure is highly simplified. (Artist: William G. Tucker)</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1418 Grand Ave.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "John and Mary Pappajohn Scultpure Park",
            "lat": "41.585194",
            "lon": "-93.635278",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-pappajohnsculpturepark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John and Mary Pappajohn Scultpure Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585194,-93.635278\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John and Mary Pappajohn Sculpture Park, opened in 2009, contains 27 sculptures designed by 21 of the world&#039;s most celebrated artisits. The sculptures are part of the Des Moines Art Center&#039;s permanent collections.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t13th St. and Grand Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0344.</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Marriage",
            "lat": "41.584942",
            "lon": "-93.635760",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-marriage.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marriage</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584942,-93.635760\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Tony Smith created this piece in 1961. Smith was originally an architect who later began making sculptures instead. His work focuses on geometry and architectural elements, and how these elements interact with art viewers. The black color references a silhouette, placing emphasis on human presence.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1330 Grand Ave.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0344</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Modular Piece",
            "lat": "41.584831",
            "lon": "-93.636593",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-modularpiece.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Modular Piece</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584831,-93.636593\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Sol LeWitt created this piece in 1969. LeWitt prefers the term &#039;structure&#039; rather than sculpture, which reflects his interest in architecture and self-referential work. Being made up of white cubes, this piece emphasizes structure, as well as repetition, and divisibility.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1330 Grand Ave.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0345</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Nomade",
            "lat": "41.584939",
            "lon": "-93.635162",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-nomade.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nomade</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584939,-93.635162\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Spanish artist Jaume Plensa designed this large-scale sculpture, which symbolizes the relationship between humans, language and culture. The John and Mary Pappajohn Sculpture Park, opened in 2009, contains 27 sculptures designed by 21 of the world&#039;s most celebrated artists. The sculptures are part of the Des Moines Art Center&#039;s permanent collection. The Pappajohn Sculpture Park is open sunrise to midnight.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1330 Grand Ave.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0347</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Order",
            "lat": "41.585240",
            "lon": "-93.635950",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-order.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Order</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585240,-93.635950\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created in 1989 by Tony Cragg, these figures are partially trilobite, a marine fossil, and partially lab equipment, mixing science and nature. The title &#039;Order&#039; references scientific classification systems, as well as the interruption of order through human action.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1330 Grand Ave.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0348</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Panoramic Awareness Pavilion",
            "lat": "41.585093",
            "lon": "-93.634759",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-panoramicawarenesspavilion.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Panoramic Awareness Pavilion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585093,-93.634759\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Panoramic awareness pavilion, designed by German artist Olafur Eliasson, is an environmental sculpture and pavilion activated by light and the surrounding cityscape. The artwork invites you to enter and engage from inside. The John and Mary Pappajohn Sculpture Park, opened in 2009, contains 27 sculptures designed by 21 of the world&#039;s most celebrated artists. The sculptures are part of the Des Moines Art Center&#039;s permanent collections. The Pappajohn Sculpture Park is open sunrise to midnight, and guided tours are available from April 1 through October 31.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t13th St and Grand Ave<br />Pappajohn Sculpture Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0344.</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/Panoramic-awareness-pavilion.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Prairie Winds",
            "lat": "41.585477",
            "lon": "-93.626035",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prairie Winds</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585477,-93.626035\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in the lobby of a major building in downtown Des Moines, &quot;Prairie Wind&quot; is most often viewed from the skywalk. This sculpture was created in 1996 by Mac Hornecker. Hornecker was inspired by the Iowa landscape and the way that wind moves through prairie grass.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t700 Walnut St.<br />EMC Insurance Companies<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Presenting the Flag",
            "lat": "41.584636",
            "lon": "-93.623505",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Presenting the Flag</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584636,-93.623505\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Edward Simmons painted this mural for the Polk County Courthouse in 1912.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t500 Mulberry St.<br />Polk County Courthouse<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Reclining Figure",
            "lat": "41.585204",
            "lon": "-93.635777",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-recliningfigure.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Reclining Figure</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585204,-93.635777\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created by Williem Kooning, this sculpture makes references to a reclined female figure, but it is highly abstracted, forming what Kooning refers to as &#039;the elemental woman&#039;.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1330 Grand Ave.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0349</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Seating for Eight/Café Table I",
            "lat": "41.585217",
            "lon": "-93.635435",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-seatingforeight.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Seating for Eight/Café Table I</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585217,-93.635435\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>These sculptures serve both as art pieces as well as a functional seating area for visitors to the park. The artist, Scott Burton, is known for blurring the line between furniture and art, because he recognizes that physical needs take precedence over purely aesthetic experiences.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1330 Grand Ave.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0350</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "T-8",
            "lat": "41.584717",
            "lon": "-93.636398",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-t8.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">T-8</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584717,-93.636398\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>American artist Mark di Suevro drew on many sources of inspiration for this large-scale sculpture, made of industrial steel I-beams, including math, physics and the T8 vertebrae of the human spinal cord. The John and Mary Pappajohn Sculpture Park, opened in 2009, contains 27 sculptures designed by 21 of the world&#039;s most celebrated artists. The sculptures are part of the Des Moines Art Center&#039;s permanent collections. The Pappajohn Sculpture Park is open sunrise to midnight, and guided tours are available from April 1 through October 31.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t13th St and Grand Ave<br />Pappajohn Sculpture Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0344</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Coming of the White Man",
            "lat": "41.584636",
            "lon": "-93.623505",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Coming of the White Man</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584636,-93.623505\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Douglas Volk created this mural for the Polk County Courthouse in 1913.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t500 Mulberry St.<br />Polk County Courthouse<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Indian in His Natural State",
            "lat": "41.584636",
            "lon": "-93.623505",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Indian in His Natural State</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584636,-93.623505\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Bert Phillips painted this mural for the Polk County Courthouse in 1913.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t500 Mulberry St.<br />Polk County Courthouse<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Three Dancing Figures (Untitled Artwork)",
            "lat": "41.584782",
            "lon": "-93.635532",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-threedancingfigures.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Three Dancing Figures (Untitled Artwork)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584782,-93.635532\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>During his short lifetime, New York City-based artist Keith Haring created a signature artistic style, inspired by graffiti, cartoons, and comic strips and reflected in murals, street and subway art, and public sculptures. Haring&#039;s bold, colorful figures and invented symbols represent the universality of human experience. The John and Mary Pappajohn Sculpture Park, opened in 2009, contains 27 sculptures designed by 21 of the world&#039;s most celebrated artists. The sculptures are part of the Des Moines Art Center&#039;s permanent collections. The Pappajohn Sculpture Park is open sunrise to midnight.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1330 Grand Ave.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0353</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "White Ghost",
            "lat": "41.585092",
            "lon": "-93.636696",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">White Ghost</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585092,-93.636696\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Japanese artist Yoshitomo Nara created this sculpture in 2010. The artwork references Japanese pop-art and is cute and ominous at the same time, a common quality in Nara&#039;s work.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1330 Grand Ave.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0354</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Willy",
            "lat": "41.585041",
            "lon": "-93.636391",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-willy.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Willy</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585041,-93.636391\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Tony Smith created this piece in 1962. Smith was originally an architect who later began making sculptures. His work focuses on geometry and architectural elements, and how these elements interact with art viewers. The black color references a silhouette, placing emphasis on human presence.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1330 Grand Ave.<br />Pappajohn Sculpture Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0355</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org/visit/pappajohn-sculpture-park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Yesterday",
            "lat": "41.584764",
            "lon": "-93.629357",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-yesterday.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Yesterday</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584764,-93.629357\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>JD Hansen created this piece in 2006. It was first sculpted in hot wax and then cast into bronze.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t215 10th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Des Moines Art Center",
            "lat": "41.583927",
            "lon": "-93.681522",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artmuseum-desmoinesartcenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines Art Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583927,-93.681522\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Des Moines Art Center is home to an extensive collection of paintings, sculpture, modern art, and mixed media. The collection includes works by many well-known artists, including Andy Warhol, Henri Matisse, Claude Monet, Georgia O&#039;Keeffe, Mary Cassatt, Auguste Rodin, Grant Wood, Eva Hesse, and Jasper Johns. The museum&#039;s facility is a work of art in its own right. The original structure was designed in a combination of Art Nouveau and Art Deco styles by Eliel Saarinen and was completed in 1948. In 1966, an additional wing was designed in a Modernist style by I.M. Pei, and a third wing designed by Richard Meier was added in 1985. The building was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4700 Grand Ave.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.277.4405</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Civic Music Association",
            "lat": "41.583968",
            "lon": "-93.628239",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Civic Music Association</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583968,-93.628239\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civic Music Association exists to engage, enrich and educate the central Iowa community through provocative, world-class musical performances by legends and rising stars. Founded in 1925, Civic Music continues to be a unique and significant arts organization in Des Moines. The mission has not varied from its inception to both present artistic excellent performances and foster education. By bringing world-renowned artists to central Iowa, Civic Music not only offers audiences unforgettable fine arts experiences, but also builds awareness, understanding and respect for classical, world and jazz artistry.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t900 Mulberry St.<br />Suite 203<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.280.4020</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.civicmusic.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Animal Pyramid",
            "lat": "41.584316",
            "lon": "-93.682192",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-animalpyramid.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Animal Pyramid</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584316,-93.682192\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The 12-foot high cast bronze sculpture is a triangular composition of seventeen separate animals cast from three types of taxidermy forms: caribou, deer, and fox. Standing on the backs of five caribou are eight deer rearing their front legs as if jumping. The crown of the &quot;Animal Pyramid&quot; are four foxes balancing on the heads each deer. &quot;Animal Pyramid&quot;, created in 1990, has elements of humor, as well as serious commentary on the human condition.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4700 Grand Ave.<br />Des Moines Art Center<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Confluence",
            "lat": "41.583715",
            "lon": "-93.624512",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Confluence</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583715,-93.624512\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Prominently featured in the main lobby of the 2012 central station of DART (Des Moines Area Regional Transit), Lynn Basa’s terrazzo floor design is made with crushed-up, recycled glass, mirror, and mother of pearl from old buttons. The stylized image hints at the city’s transportation history, with a DART route in yellow and gray stripes for the streets. Two blue curves represent the Des Moines and Raccoon Rivers, which carried people here even before their horses did.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t616 Cherry St.<br />Dart Central Station<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Gateway Colossus",
            "lat": "41.582870",
            "lon": "-93.636859",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-crown.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gateway Colossus</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.582870,-93.636859\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 2011, ASI Custom Sheet Metal, Inc. was contacted by Des Moines artist, James Ellwanger, to build a life size replica of the statue of liberty&#039;s crown to be placed atop of the Exile Brewing Company restaurant in downtown Des Moines. Framed of a steel structure and then cladded in copper, the life sized crown measures approximately 30ft in diameter. It was installed in October 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1514 Walnut St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Man and Pegasus",
            "lat": "41.583805",
            "lon": "-93.681585",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Man and Pegasus</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583805,-93.681585\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This sculpture was created out of cast bronze in 1949 by Carl Milles. Six other editions can be found in Texas, Japan, India, and other places around the world. This piece can be found in the courtyard for the Des Moines Art Center.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4700 Grand Ave.<br />The Des Moines Art Center<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.277.4405</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://emuseum.desmoinesartcenter.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Plantoir",
            "lat": "41.583927",
            "lon": "-93.639725",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-plantoir.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Plantoir</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583927,-93.639725\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Meredith Corporation purchased this sculpture from the rooftop garden of the Metropolitan Museum of Art in New York City to celebrate its 100th anniversary. &quot;Plantoir&quot; is an enlarged and exaggerated version of a garden shovel, and was created in 2001 by Claes Oldenburg.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t17th St. and Locust St.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Standing Stones",
            "lat": "41.584497",
            "lon": "-93.680649",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Standing Stones</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584497,-93.680649\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created by Richard Serra in 1989, these site-specific sculptures celebrate the rise and fall of the land and the experience of seeing the work when walking or driving past the Des Moines Art Center. The hill shifts in two directions and the stones mark the shift in the landscape. Intended to be human scale, the approximately five-foot high stones were quarried in Sweden.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4700 Grand Ave.<br />Des Moines Art Center<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0344</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Three Way Piece No. 1: Points",
            "lat": "41.584408",
            "lon": "-93.681540",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-3waypiece.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Three Way Piece No. 1: Points</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584408,-93.681540\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created by Henry Moore in 1965, this piece is the first from a series of three. The other two casts of &quot;Three Way Piece Points&quot; are located at the Law School Garden at Columbia University, New York, and in Fairmount Park, Philadelphia.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4700 Grand Ave.<br />Des Moines Art Center<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0346</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://216.81.182.170:8080/emuseum/view/objects/asitem/601/247/title-asc?t:state:flow=6140ccec-38de-4956-a295-a45c54480a95\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Former Des Moines Fire Department Headquarters (Des Moines Social Club)",
            "lat": "41.583895",
            "lon": "-93.628245",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-desmoinesfiredeptheadquarters-desmoinessocialclub-viaductgallery.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Former Des Moines Fire Department Headquarters (Des Moines Social Club)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583895,-93.628245\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Des Moines Fire Department Headquarters, Fire Station No. 1 and Shop Building was built in 1937 in a Streamlined Moderne style with Art Deco motifs designed by notable Des Moines architectural firm, Proudfoot, Rawson, Brooks and Borg. \r\n\r\nIn the 1930s the Des Moines Fire Department faced twentieth-century firefighting challenges while headquartered in a dark and dusty late-nineteenth-century building constructed to house horses and horse-drawn apparatus. Motorized fire trucks of the day were growing wider, longer, and taller. Traffic around the old headquarters had become congested, lengthening response time. New recruits and seasoned professionals needed updates and practice in how to handle the ever-changing technical aspects of life-saving and controlling fire in a city landscape filled with fire risks unimaginable in earlier years - from skyscrapers and crowded movie theaters to fuel-laden gas stations and large-scale industrial operations. A 1933 survey by the Des Moines Fire Department by the National Board of Fire Underwriters published a report that led to the construction of the new facility, funded in part by a PWA grant. The City of Des Moines Fire Department vacated the headquarters complex in March of 2013.\r\n\r\nThe building now houses the Des Moines Social Club, a nonprofit multidisciplinary arts organization. The Des Moines Social Club’s Viaduct Gallery exhibits works by emerging local, regional, national, and international artists. The theater at the Des Moines Social Club (901 Cherry Street) is a black box theater for theater, film, music, dance and much more.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t900 Mulberry St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://desmoinessocialclub.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Birth Place of Des Moines",
            "lat": "41.582074",
            "lon": "-93.617098",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Birth Place of Des Moines</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.582074,-93.617098\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This porcelain tile mural, 34 feet by 4 feet, created by Hilde DeBruyne in 2010, is a pictorial timeline of the history of Des Moines and marks the area’s first non-Native American settlement of 1843. The mural is built into the brick wall near a 1840s log cabin on the west bank of the Des Moines River, north of its confluence with the Raccoon River − the birthplace of Iowa’s Capitol. Today, this location is known as Principal Park.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 W Martin Luther King Junior Pkwy.<br />Principal Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Big Question",
            "lat": "41.582679",
            "lon": "-93.619689",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-sciencecenterthebigquestion.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Big Question</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.582679,-93.619689\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The plaza of the Science Center of Iowa serves as a gathering place, a play area, and a science exhibit. The Big Question project transformed the area into an environment that brings to the outside of the building a sense of wonder and inquiry that visitors experience inside the Science Center. The main element is an earth berm in the shape of a question mark to be used as an amphitheater for gatherings and events.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 SW 3rd St.<br />Science Center of Iowa<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.274.6868</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.sciowa.org/explore/interactive-map/outdoor-public-art/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Three Cairns",
            "lat": "41.582965",
            "lon": "-93.680602",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-threecairns.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Three Cairns</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.582965,-93.680602\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>British artist Andrew Goldsworthy used limestone quarried from Stone City, the art colony made famous by Iowan Grant Wood, to create three stone markers, called cairns, representing life, death and regeneration. This installation is part of a larger project that spans the continent, with cairns at sites on the East and West coasts and in the Midwest. Two key components of the project in Iowa are found within 50 miles of each other; &#039;Prairie Cairn&#039; is located near Kellogg, 12 miles west of Grinnell. This piece is located on the south lawn of the Des Moines Art Center, in Greenwood Park.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4700 Grand Ave.<br />Des Moines Art Center<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.271.0345</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Thunderer",
            "lat": "41.582543",
            "lon": "-93.635018",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thunderer</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.582543,-93.635018\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created by local artist Robert Craig, this sculpture resides in the courtyard adjacent to Central Iowa Shelter and Services. It was installed in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1420 Mulberry St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Greenwood Pond: Double Site",
            "lat": "41.579845",
            "lon": "-93.682064",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Greenwood Pond: Double Site</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.579845,-93.682064\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Greenwood Pond: Double Site is the first urban wetland project in the nation. It moves away from the notion of sculpture as “object” and toward art understood and realized through its relationship with nature and outdoor space. The spaces of Double Site are literally layered with wooden and screened lookouts, multileveled walkway, pavilion, and pathways. Shifting viewpoints, multifaceted situations, and ever-changing audience perceptions are all factors that inform the project.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t303 45th St.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Seam",
            "lat": "41.579201",
            "lon": "-93.616904",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-theseam.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Seam</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.579201,-93.616904\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist James Ellwanger created this large-scale steel sculpture, representing the seams of a baseball, to honor former Iowa Cubs owner Ken Grandquist (1923-1999), commissioned by his family. A plaque there says, “Like the seams of a baseball which never end, Ken Grandquist’s love of the game and the fans was never ending.” Chuck Offenburger, 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1 Line Dr.<br />Principal Riverwalk<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Relief with Covered Wagon",
            "lat": "41.576795",
            "lon": "-93.683066",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Relief with Covered Wagon</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.576795,-93.683066\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Above the low relief of a covered wagon crossing a prairie it reads: &quot;Ashworth Park. The gift of Charles and James T. Ashworth to the people of Des Moines - December 4, 1924. Overland from New Hampshire they came in 1851. Here on the neighboring prairies respected and loved they lived to witness the transformation of a primitive land into a rich and powerful commonwealth. In commemoration of those pioneer days they have dedicated this piece of virgin land to the people as a playground forever. To their memory this pool is erected as a monument by the City of Des Moines.&quot;</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 SW 45th St.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Tallgrass Theatre Company",
            "lat": "41.577792",
            "lon": "-93.723281",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tallgrass Theatre Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.577792,-93.723281\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Tallgrass Theatre Company strives to enrich the greater Des Moines community by providing a venue for new and unique performance work that is both entertaining and evocative.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1401 Vine St.<br />Rex Mathes Auditorium<br />West Des Moines, IA 50265<br />Polk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.tallgrasstheatre.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Mural for the Italian-American Cultural Center",
            "lat": "41.570347",
            "lon": "-93.613392",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mural for the Italian-American Cultural Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.570347,-93.613392\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artists John Neal and Ken Tynan in 2005. Located on the exterior of the Italian-American Cultural Center, the mural celebrates Italian-American culture, heritage, and immigration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1961 Indianola Ave.<br />Italian American Cultural Center<br />Des Moines, IA 50315<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.280.3719</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://iaccofia.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Webster City Community Theatre",
            "lat": "42.466396",
            "lon": "-93.819546",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-artperforming-webstercitycommunitytheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Webster City Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.466396,-93.819546\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Webster City Community Theatre (WCCT) is an organization that brings theatrical performances to Webster City. The WCCT is a non-profit organization that puts on 3-5 shows a year. With its 40- foot wide stage and 176 comfortable seats, it is the premier theatre in Webster City.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1001 Willson Ave.<br />Webster City, IA 50595<br />Hamilton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.832.7268</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Peter Marasco Sculpture (Untitled Artwork)",
            "lat": "41.556610",
            "lon": "-93.644227",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Peter Marasco Sculpture (Untitled Artwork)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.556610,-93.644227\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">32.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Peter Marasco, a local Des Moines artist, built this sculpture out of steel in 1972. It was commissioned for the Park Fleur condominiums.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2000 Willowmere Dr.<br />Park Fleur Condominiums<br />Des Moines, IA 50315<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Victory Victory",
            "lat": "41.524625",
            "lon": "-93.615574",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-victoryvictory-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Victory Victory</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.524625,-93.615574\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">34.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;Victory Victory,&quot; a welded stainless steel piece created by Richard Hunt in 2004, honors African-American officers from World War I and the first Women&#039;s Army Auxiliary Corps (WAAC) from World War II. Both groups trained at Fort Des Moines.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6545 Chaffee Rd.<br />Fort Des Moines Memorial Park<br />Des Moines, IA 50315<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 202.588.6000</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Echo",
            "lat": "42.052096",
            "lon": "-92.934910",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/marhall-artpublic-echo-1.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Echo</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.052096,-92.934910\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Echo is a 34 foot high stainless steel sculpture by artist Bruce White. It was installed in May 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN 13th St.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World War I Soldier Monument",
            "lat": "42.055138",
            "lon": "-92.935087",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-monument-worldwar1soldier-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World War I Soldier Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.055138,-92.935087\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>At the Iowa Veterans Home in Marshalltown, a limestone doughboy stands as a monument to World War I veterans. It was sculpted by an artist named Eric Oberg and installed in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tConstitution Ave.<br />Iowa Veterans Home<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Marshall County",
            "lat": "42.031805",
            "lon": "-92.924270",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Marshall County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.031805,-92.924270\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Marshall County Freedom Rock honors local veterans from several wars, starting with World War I soldiers Frank Glick and Frank Fletcher. Glick was born into a prominent Marshalltown family and joined the Marines in 1917. After being handpicked by his captain for his exceptional character, physical fitness and marksmanship, he boarded a ship to fight in France. On June 1, 1917, Glick&#039;s company was near Belleau Wood, northeast of Paris, when the Germans were blasting them with artillery fire. The Americans were advised to retreat, but U.S. Marine Capt. Lloyd Williams refused, and Glick was killed in this pivotal battle. Fletcher was also born in Marshalltown, in 1885, and was appointed in 1902 to the U.S. Naval Academy in Annapolis. He graduated in February 1906, commencing a long and distinguished naval career. He earned the Medal of Honor during the Battle of Veracruz during World War I. His Medal of Honor cites: &quot;He was in charge of the Esperanza and succeeded in getting on board over 350 refugees, many of them after the conflict had commenced. Although the ship was under fire, being struck more than 30 times, he succeeded in getting all the refugees placed in safety. Lt. Fletcher was later placed in charge of the train conveying refugees under a flag of truce. This was a hazardous duty, as it was believed that the track was mined, and a small error in dealing with the Mexican guard of soldiers might readily have caused a conflict, such a conflict at one time being narrowly averted.&quot; Fletcher served in the Navy until 1946 and earned the rank of admiral. He was the operational commander at the Battles of Coral Sea and Midway during World War II. Fletcher died in 1973 and is buried at Arlington National Cemetery in Virginia. The Marshall County (Marshalltown) Freedom Rock was completed in 2016 by artist Ray &quot;Bubba&quot; Sorensen II of Greenfield.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Ingledue St.<br />Legion Memorial Park<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Depot",
            "lat": "42.014955",
            "lon": "-94.368265",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-artpublic-thedepotmural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.014955,-94.368265\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRaccoon River Valley Trail<br />East Edge of Town<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.8075</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Fisher Community Center: Art Gallery and Sculptures",
            "lat": "42.038753",
            "lon": "-92.914293",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-artmuseum-fishercommunitycenterartgallery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fisher Community Center: Art Gallery and Sculptures</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.038753,-92.914293\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fisher Community Art Gallery Ceramic Study Collection and Sculptures is housed in a building designed by the Iowa State University Architectural School, that holds an outstanding collection of original paintings by Impressionist and post-Impression artists, such as Mary Cassatt, Alfred Sisley, and Edgar Degas. There is also an extensive collection of sculptures and ceramic pieces from various artists from around the world.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t709 S Center St.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.753.9013</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.theartcentermarshalltown.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Sally&#039;s Alley",
            "lat": "42.015164",
            "lon": "-94.374125",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-artpublic-salleysalley.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sally&#039;s Alley</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.015164,-94.374125\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located on Lincoln Way in downtown Jefferson this southern alley is dedicated to Sally White. She was the author of &quot;Sally&#039;s Backyard Birds&quot; and an artist with her camera. As a tribute to Sally&#039;s dedication to birds several of her enlarged photographs can be found in Sally&#039;s Alley. You will also find small garden spaces, a one of a kind bird bench, a little lending library and original poetry in the midst of the alley space.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t199 W Harrison St.<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "View of Jefferson Mural",
            "lat": "42.015106",
            "lon": "-94.373571",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-artpublic-viewofjeffersonmural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">View of Jefferson Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.015106,-94.373571\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t118 S Chestnut St.<br />Off the SE Corner of the Square<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.8075</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Centre for Arts and Artists",
            "lat": "41.703325",
            "lon": "-93.056348",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-centreforartsandartists-4-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Centre for Arts and Artists</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.703325,-93.056348\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Centre for Arts and Artists includes art displays, ten working artists studios, a ceramics room, a kids room, and more. Come view and make art today!</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t501 W 3rd St. N<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.792.1391</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://centreforartsandartists.org/CAA/welcome.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Jasper County Historical Museum",
            "lat": "41.685519",
            "lon": "-93.076185",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jasper-historymuseum-japsercountyhistoricalmuseum-9-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jasper County Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.685519,-93.076185\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jasper County Historical Museum was dedicated on May 6, 1979. The museum has numerous exhibits and over 8,500 artifacts. There are exhibits about a general store, a Victorian home, a 1930s home and an agricultural barn. A 40-foot bas-relief by Newton artist Herman I. Deaton depicts first settlements, early agriculture, industrial development and the future of the county. There is an exhibit featuring the Maytag collection and military collections that cover the American Civil War, Spanish-American War, World War I, World War II, Korea and Desert Storm.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1700 S 15th Ave. W<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.792.9118</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://jaspercountymuseum.net\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Floyd W. Mahanay Memorial Carillion",
            "lat": "42.015520",
            "lon": "-94.374415",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-uniqueiowa-floydmahanaymemorialcarillion.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Floyd W. Mahanay Memorial Carillion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.015520,-94.374415\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mahanay Memorial Carillion Tower was given to the citizens of Jefferson by Mr. and Mrs. W. F. Mahanay. Mahanay amassed a fortune through his sales skills and purchase of farmland in the 1930s. The tower is 14 stores tall and had 14 cast bells from the world-famous Petit and Fritsen Bell Foundry in the Netherlands. The heaviest bell weighs 5,630 pounds. The bells chime on the hour, quarter and half-hour. Music plays daily, with 50% of the music to be patriotic and sacred music, according to Mahanay&#039;s will. Visitors to the Carillion can see 30 miles and five Iowa counties form the 128-foot high observation deck.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 E Lincolnway<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.386.2155</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "The Lindsey Memorial",
            "lat": "42.015476",
            "lon": "-94.373849",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-monument-lindseymemorial.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Lindsey Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.015476,-94.373849\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lindsey Memorial once stood at the Lindsey Air Station in Wiesbaden, Germany. When the Air Force base was closed in 1993, the monument was returned to Greene County, the home county of Captain Darrell Lindsey. Lindsey was a World War II Congressional Medal of Honor recipient whose B-26 airplane took a direct hit and by his skillful maneuvering, the crew was able to parachute to safety. Captain Lindsey went down with his aircraft on his 46th bombing mission.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 N Chestnut St.<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Abraham Lincoln Statue",
            "lat": "42.015414",
            "lon": "-94.374098",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-monument-abrahamlincolnstatue.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Abraham Lincoln Statue</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.015414,-94.374098\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Abraham Lincoln Statue was erected in 1918 as a gift from local resident E. B. Wilson to honor the first highway across the United States. This monument serves to commemorate the Lincoln Highway, which crossed through Jefferson and directly in front of the monument. It was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 N Chestnut St.<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "History Boy Theatre Co.",
            "lat": "42.014657",
            "lon": "-94.374619",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-artperforming-historyboytheatreco.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">History Boy Theatre Co.</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.014657,-94.374619\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The History Boy Theatre Company is a regional, up-and-coming theater company located in Jefferson. The company produces numerous shows each season with a mix of professional and local talent.  with tons of talent on stage! Audiences will be delighted by the cutting-edge themes as well as the direction and technical creativity.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 S Wilson Ave.<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.370.4306</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.facebook.com/Historyboytheatrecompany\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Elk&#039;s Club Mural",
            "lat": "42.014114",
            "lon": "-94.375135",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-artpublic-elksclubmural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Elk&#039;s Club Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.014114,-94.375135\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa, who has painted over 40 murals in the Midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t103 W Harrison St.<br />Elk&#039;s Club<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The New Calf Mural",
            "lat": "42.014482",
            "lon": "-94.375734",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-artpublic-thenewcalfjeffersonpostofficemural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The New Calf Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.014482,-94.375734\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by Tom Savage in 1938, this mural was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t106 W. Harrison St.<br />U.S. Post Office<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Marshalltown, Circa 1920 Mural",
            "lat": "42.048946",
            "lon": "-92.910638",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-artpublic-marshalltowncirca1920.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marshalltown, Circa 1920 Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.048946,-92.910638\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa, who has painted over 40 murals in the Midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t109 E Main St.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Betty Nyght Hamilton Bandshell",
            "lat": "42.281745",
            "lon": "-94.294023",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-artperforming-bettynyghtbandshell.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Betty Nyght Hamilton Bandshell</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.281745,-94.294023\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Betty Nyght Hamilton Bandshell sits proudly in City Park. The original bandshell, built in 1916, was lost to the ravages of time in 1990. In 1996, with a vision for reviving the past and building on a strong musical history, the bandshell was rebuilt. On June 27, the new bandshell was dedicated during a concert that featured internationally-famous bass baritone Simon Estes performing with the Gowrie Community Band &amp; Chorus. A crowd of 10,000 gathered in Gowrie for a magical evening that has been described as Hometown Renaissance. The Gowrie Arts Council continues to host a summer concert series each year that features local talent alongside performers from Iowa and beyond.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1173 Park St.<br />Gowrie, IA 50543<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Flag Mural",
            "lat": "41.699343",
            "lon": "-93.057036",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-artpublic-flagmural-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Flag Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.699343,-93.057036\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial. The Flag Mural in Newton is painted on the west side of the Veterans of Foreign Wars (VFW) building.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t315 1st Ave W<br />VFW Building<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.8075</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Castle Mural",
            "lat": "41.699331",
            "lon": "-93.055540",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-artpublic-castlemural-3-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Castle Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.699331,-93.055540\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t213 1st Ave. W<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.8075</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Newton Stores Mural",
            "lat": "41.700899",
            "lon": "-93.054775",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-artpublic-newtonstoresmural-4-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Newton Stores Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.700899,-93.054775\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t248 W 2nd St N<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.8075</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Race Car",
            "lat": "41.700916",
            "lon": "-93.055084",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-artpublic-racecarmural-4-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Race Car</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.700916,-93.055084\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa, who has painted over 40 murals in the Midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t209 W 2nd St. N<br />Apples of Gold<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.8075</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Welcome to Newton Mural",
            "lat": "41.699384",
            "lon": "-93.056022",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-artpublic-welcometonewtonmural-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Welcome to Newton Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.699384,-93.056022\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />One Block West of the Square<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.8075</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Newton Farm Scene Mural",
            "lat": "41.699677",
            "lon": "-93.052718",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-artpublic-farmscenemural-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Newton Farm Scene Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.699677,-93.052718\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t116 1st Ave. E<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.8075</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World War I Memorial",
            "lat": "41.699755",
            "lon": "-93.054357",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jasper-monument-worldwar1memorial-11-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World War I Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.699755,-93.054357\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1928, a Veterans&#039; Memorial was installed at the Jasper County Courthouse to honor all the county men who had served in World War 1. By 1992, citizens felt it was in deplorable condition and commissioned the Newton artist Nick Klepinger to create a new bronze memorial. A plaque that was part of the original 1928 memorial was installed behind the new statue, and the new memorial was dedicated on July 4, 1994.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st Ave. W<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Newton Printshop Mural",
            "lat": "41.699780",
            "lon": "-93.051715",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-artpublic-newtonprintshopmural-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Newton Printshop Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.699780,-93.051715\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210 1st Ave. E<br />Newton Daily News<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.8075</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fred Maytag Park Historic District",
            "lat": "41.688372",
            "lon": "-93.055467",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-nhr-maytagpark-8-3-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fred Maytag Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.688372,-93.055467\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">38.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The park was constructed by Newton industrialist Fredrick L. Maytag as a gift to the residents of Jasper County. The property is locally significant as an example of a privately-funded public park built during the depression. The park includes the Fred Maytag Bowl, a historic bandshell. The Maytag Bowl was renovated in 2013 and is home to many shows held throughout the year. The Fred Maytag Park Historic District was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 S 11th Ave. W<br />Maytag Park<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.791.0859</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://ia-newton.civicplus.com/index.aspx?nid=91\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Newton Community Theatre",
            "lat": "41.691623",
            "lon": "-93.032805",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jasper-artperforming-newtoncommunitytheater-2-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Newton Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.691623,-93.032805\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Newton Community Theatre is a non profit organization dedicated to bringing theatrical performances to the people of Jasper County. Their goal is to allow any and everyone to express themselves and enjoy performing in theatre. They began in 1961, and are still bringing quality theatre to the area.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1701 S 8th Ave. E<br />YMCA Building<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.792.0690</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.newtontheatre.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Pat Clark Art Collection",
            "lat": "42.521822",
            "lon": "-93.263819",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pat Clark Art Collection</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.521822,-93.263819\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Donated to Ellsworth Community College by Iowa Falls native, Pat Clark, the artwork is featured in a beautiful gallery setting that is meant to highlight and explore Clark&#039;s global and artist perspective. Born and raised in Iowa Falls, Clark travelled around the world working for the U.S. State Department. In her travels, she explored everything from the streets of Paris to Vietnam. Her many travels were captured in her artwork.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1100 College Ave.<br />Carnegie Ellsworth Building<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.648.8576</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://patclarkart.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Iowa Falls Community Theatre",
            "lat": "42.521993",
            "lon": "-93.263967",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-artperforming-iowafallscommunitytheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Falls Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.521993,-93.263967\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Falls Community Theater started in 1961, with a performance of &quot;Born Yesterday.&quot; The group has a permanent facility that houses its scene shop, costume room, prop storage, board meetings and more.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t510 Stevens St.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Oleson Park Music Pavilion (Karl King Bandshell)",
            "lat": "42.488983",
            "lon": "-94.172430",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-nhr-olsesonparkbandshell.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oleson Park Music Pavilion (Karl King Bandshell)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.488983,-94.172430\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">41.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Oleson Park Music Pavilion was the home base of bandmaster, Karl King, from its construction in 1938 until his death in 1971. King was a prolific composer of music for concert and military bands known the world over. The project to built the pavilion was championed by King with the help of State Senator Edward Breen and Walter Engelbart, who helped fund 85% of the cost as a Works Progress Administration (WPA) project. The Oleson Park Music Pavilion was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1400 Oleson Park Ave.<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Olaf Martin Oleson Monument",
            "lat": "42.488747",
            "lon": "-94.172029",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-monument-olafoleson.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Olaf Martin Oleson Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.488747,-94.172029\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">41.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Olaf Martin Oleson was born in Norway and emigrated to the United States in 1870, finding employment on a farm near Fort Dodge. Oleson attended the Philadelphia College of Pharmacy and later returned to Iowa and established the Oleson Drug Company, a retail and wholesale drug business. Oleson founded numerous organizations in Fort Dodge including the Fort Dodge Light and Power Company, Fort Dodge Telephone Company, Fort Dodge Hotel Company and Oleson Land Company. Oleson was also a successful botanist and his plant collection was adopted as a model for the collection at Iowa State University. He was elected state senator and represented his district in the upper house of the general assembly from 1891-1895. Oleson donated the property for the park that bears his name.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1400 Oleson Park Ave.<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Blanden Memorial Art Museum",
            "lat": "42.502678",
            "lon": "-94.184527",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-artmuseum-blanden.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Blanden Memorial Art Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.502678,-94.184527\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Blanden Art Museum is located in the Historic Oak Hill District of Fort Dodge. The museum&#039;s permanent collection includes the Ann R. Smeltzer Modernist collection, Harold D. Peterson print collection, and photography, contemporary and Iowa artist collections.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t920 3rd Ave. S<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.573.2316</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.blanden.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Sumner Heman Mural",
            "lat": "42.505142",
            "lon": "-94.185629",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-artpublic-sumnerhermanmural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sumner Heman Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.505142,-94.185629\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa in 1995. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t9th St. and Central Ave.<br />Central Avenue Pavilion<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.8075</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Duncombe Hotel Mural",
            "lat": "42.504453",
            "lon": "-94.190632",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-artpublic-duncombehotelmural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Duncombe Hotel Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.504453,-94.190632\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN 5th St.<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.8075</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Karl L. King Sculpture",
            "lat": "42.504365",
            "lon": "-94.191522",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-monument-karlking.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Karl L. King Sculpture</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.504365,-94.191522\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Karl King was born in Ohio in 1891. He spent his childhood there and came to Fort Dodge in 1920, after spending nine years travelling the country in circus bands.  In the fall of 1920, he began directing the Fort Dodge Municipal Band, a position he held until 1971. King led the Fort Dodge Municipal Band (now named for him) to fame. King was a prolific composer, and is perhaps best known for composing “Barnum and Bailey’s Favorite.” He was instrumental in the creation of the “Iowa Band Law” in 1921, which allowed cities to levy a tax to support a municipal band. Hundreds of towns and cities in Iowa used the “Iowa Band Law” to support a local band, and 33 other states enacted similar legislation. After the law was passed, King wrote “The Iowa Band Law March.” He passed away in 1971 and is buried at North Lawn Cemetery in Fort Dodge.  This sculpture of King, installed in 2006, was created by Paul Rieffer to serve as a memorial gift to the city by the Rotary Club of Fort Dodge, members of the Karl L. King Municipal Band and generous supporters of the band.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t424 Central Ave.<br />City Square Park<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Fort Dodge Historic Timeline",
            "lat": "42.504551",
            "lon": "-94.191374",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-historicmarker-fortdodgehistorictimeline-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fort Dodge Historic Timeline</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.504551,-94.191374\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Discover the history of Fort Dodge from 1830-1960 in City Square Park by following the brick pathway from the gazebo to the entrance of the public library.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t424 Central Ave.<br />City Square Park<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Hawkeye Community Theatre",
            "lat": "42.511524",
            "lon": "-94.183298",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-artperforming-hawkeyecommunitytheatre.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hawkeye Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.511524,-94.183298\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hawkeye Community Theatre has been performing live for more than 50 years. The theatre offers numerous shows throughout the year.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t521 N 12th St.<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.576.6061</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.hawkeyetheatre.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Webster County",
            "lat": "42.500468",
            "lon": "-94.207884",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-monument-freedomrockwebstercounty-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Webster County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.500468,-94.207884\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Webster County Freedom Rock® in Fort Dodge is dedicated to those suffering from PTSD and it side effects and to those who do their best everyday to help warriors with their struggles. The artwork depicts a nurse with her hand on the shoulder of a soldier struggling with memories of battle and shows what some of those memories may be. Below that shows the soldier struggling later in life and clutching the medals he received in service.\r\n\r\nOn the back side are two local aviators and medal recipients. The first is Darrell Lindsey who was born in Jefferson, Iowa. He enlisted as an aviation cadet at Fort Des Moines on January 16, 1942. His medal citation reads: &quot;On August 9, 1944, Capt. Lindsey led a formation of 30 B-26 medium bombers in a hazardous mission to destroy the strategic enemy held L&#039;Isle Adam railroad bridge over the Seine in occupied France. With most of the bridges over the Seine destroyed, the heavily fortified L&#039;Isle Adam bridge was of inestimable value to the enemy in moving troops, supplies, and equipment to Paris. Capt. Lindsey was fully aware of the fierce resistance that would be encountered. Shortly after reaching enemy territory, the formation was buffeted with heavy and accurate antiaircraft fire. By skillful evasive action, Capt. Lindsey was able to elude much of the enemy flak, but just before entering the bombing run his B-26 was peppered with holes. During the bombing run, the enemy fire was even more intense, and Capt. Lindsey&#039;s right engine received a direct hit and burst into flames. Despite the fact that his ship was hurled out of formation by the violence of the concussion, he brilliantly maneuvered back into the lead position without disrupting the flight. Fully aware that the gasoline tanks might explode at any moment, Capt. Lindsey gallantly elected to continue the perilous bombing run. With fire streaming from his right engine and his right wing half enveloped in flames, he led his formation over the target upon which the bombs were dropped with telling effect. Immediately after the objective was attacked, Capt. Lindsey gave the order for the crew to parachute from the doomed aircraft. With magnificent coolness and superb piloting, and without regard for his own life, he held the swiftly descending airplane in a steady glide until the members of the crew could jump to safety. With the right wing completely enveloped in flames and an explosion of the gasoline tank imminent, Capt. Lindsey still remained unperturbed. The last man to leave the stricken plane was the bombardier, who offered to lower the wheels so that Capt. Lindsey might escape from the nose. Realizing that this might throw the aircraft into an uncontrollable spin and jeopardize the bombardier&#039;s chances to escape, Capt. Lindsey refused the offer. Immediately after the bombardier had bailed out, and before Capt. Lindsey was able to follow, the right gasoline tank exploded. The aircraft sheathed in fire, went into a steep dive and was seen to explode as it crashed. All who are living today from this plane owe their lives to the fact that Capt. Lindsey remained cool and showed supreme courage in this emergency.&quot;\r\n\r\nThe other pilot, Willis Moeller, a lifetime resident of Fort Dodge, was born April 19, 1922. Willie graduated Fort Dodge High School in 1940, received pilot training in Clarion, primary training in Pasco, Washington, instrument and gunnery training in Corpus Christi, Texas and operational training in Deland, Florida. He went overseas with a fighter pilot replacement group in Nov 1944. In 1945 he was assigned to the USS Hancock in the South Pacific. Willie earned the Distinguished Flying Cross as a result of rescuing a downed pilot during during the battle of Kagoshima Bay.\r\n\r\nThe final piece is a nod to the Fort Dodge Dragoons. The 1st U. S. Dragoons, the country&#039;s first mounted infantry unit marched in the summer of 1835, to scout Iowa after the Black Hawk Purchase of 1832 put the area under U.S. control. The march lead to the establishment of outposts from present-day Fort Dodge and Webster City, as well as, Des Moines to Pella and Knoxville. One man in particular, Dr. Bill Ryan, an Army volunteer himself, was very active in the Fort Dodge community and in particular held the rank of Colonel in the Dragoons. \r\n\r\nThe Webster County (Fort Dodge) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2016.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t129 A St.<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Civil War Monument: Webster County",
            "lat": "42.521991",
            "lon": "-94.179798",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-monument-civilwarsoldiers-oaklandcemetery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Civil War Monument: Webster County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.521991,-94.179798\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>On the high ground of Oakland Cemetery, in section D, stands a monument dedicated to the unknown soldiers of the Civil War. The monument was created in 1900 by local sculptor William Pollock, who was a Civil War soldier himself. The red granite sculpture takes the form of a Civil War soldier on a high pedestal with his rifle at parade rest. The inscription reads, &quot;Erected in memory of unknown soldiers of the Union Army, 1861-65, By Fort Donelson Post No. 236 Fort Dodge and citizens of Webster County, Iowa, Unveiled May 30, 1900.&quot;</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1600 N 15th St.<br />Oakland Cemetery<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Wright County",
            "lat": "42.656430",
            "lon": "-93.499255",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Wright County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.656430,-93.499255\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">44.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wright County Freedom Rock® has a unique, “lava rock” texture. One side of the rock features a Civil War veteran and an Iraq/Afghanistan veteran – book-ending the service of area veterans. The Civil War veteran pictured also connects with “To Preserve the Union,” the Civil War themed rest area nearby on I-35. President John F. Kennedy’s quote: “As we express our gratitude, we must never forget that the highest appreciation is not to utter words, but to live by them.” The back side of the rock honors Vietnam War veterans and has a few Huey helicopters in honor of a local veteran who served on and was wounded on one. The Wright County (Dows) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t296 E Ellsworth St<br />Dows, IA 50071<br />Wright County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "To Preserve the Union",
            "lat": "42.672233",
            "lon": "-93.460433",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/franklin-artpublic-topreservetheunion.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">To Preserve the Union</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.672233,-93.460433\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">45.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>To Preserve the Union tells the story of Iowa&#039;s role in the Civil War with art designed by David Dahlquist. A monumental sculptural chain holds together the opposite walls of the building, symbolizing the North and the South, while Iowa soldiers&#039; letters create markers along the walking trails. The rest area is located in Franklin County, which suffered more casualities during the Civil War than any other Iowa County.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tInterstate Hwy. 35 Northbound and Southbound<br />Mile Post 159 Rest Area<br />Dows, IA 50071<br />Franklin County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadot.gov/maintenance/rest_areas/posters/i35dows.pdf\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Farnham Galleries",
            "lat": "41.365523",
            "lon": "-93.564533",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-artmuseum-farnhamgalleries.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Farnham Galleries</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.365523,-93.564533\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">45.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Farnham Galleries at Simpson College provides the Simpson College campus and the surrounding community with opportunities to witness and experience professional art. They present exhibitions from a wide range of artists, including annual Senior Shows by art students. Farnham Galleries is located on the third floor of Mary Berry Hall at Simpson College.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMary Berry Hall<br />Simpson College<br />Indianola, IA 50125<br />Warren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.961.1487</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://simpson.edu/farnham-galleries/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Des Moines Metro Opera Inc",
            "lat": "41.362648",
            "lon": "-93.561924",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-artperforming-desmoinesmetroopera.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines Metro Opera Inc</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.362648,-93.561924\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Des Moines Metro Opera maintains office space in the former Indianola Public Library, a Carnegie library built in 1904. Des Moines Metro Opera is a major American Summer Opera Festival founded in 1973. The company’s Summer Festival Season runs from May through July with many performances held at Simpson College, also in Indianola.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t106 W Boston Ave.<br />Indianola, IA 50125<br />Warren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.961.6221</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://desmoinesmetroopera.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Soldier&#039;s Monument",
            "lat": "42.663949",
            "lon": "-93.901480",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Soldier&#039;s Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.663949,-93.901480\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Soldiers and Sailors Monument is carved with a relief of a World War I soldier, walking and holding his rifle. The monument also has an eagle and markers of Gold Star soldiers and Red Cross nurses. The monument was dedicated at a ceremony on Aug. 7, 1921, where the main speaker was the Rev. H. Fay Tyler, a man the Eagle Grove Eagle described as a &quot;warm blooded American and patriot&quot; in a report several days later. Tyler praised the Women&#039;s Relief Corps for constructing the monument to honor the veterans and declared that America has too few such memorials. At the time of its dedication, the monument was in Northwestern Park, but that area has since been developed. Veterans Memorial Park was developed in 2000 and sits directly west of the Soldiers and Sailors Monument.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Broadway St. and S Park Ave.<br />Across from Veterans Memorial Park<br />Eagle Grove, IA 50533<br />Wright County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Prairie Cairn",
            "lat": "41.685839",
            "lon": "-92.864714",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prairie Cairn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.685839,-92.864714\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>British artist Andrew Goldsworthy used limestone quarried from Stone City, the art colony made famous by Iowan Grant Wood, to create this stone marker, called &quot; cairn&quot;, representing life, death and regneration. This sculpture is part of a larger project that spans the continent, with cairns at sites on the East and West coasts and in the Midwest. Two key components of the project in Iowa are found within 50 miles of each other; &#039;Three Cairns&#039; is located in Greenwood Park in Des Moines.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS 12th Ave. E<br />Conard Environmental Research Area<br />Kellogg, IA 50135<br />Jasper County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://web.grinnell.edu/faulconergallery/CampusArt/goldsworthy.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Hardin County",
            "lat": "42.554272",
            "lon": "-93.054923",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Hardin County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.554272,-93.054923\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">47.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hardin County Freedom Rock® depicts a World War II veteran visiting the cemetery in Normandy, representing a Hardin County veteran who parachuted into Normandy and lost a good friend. This side of the rock shows the price of battle and how emotional wounds can stay with servicemen and women for their entire lives. Portrayed on the northwest side of the rock is the USS Indianapolis, which sank with 300 sailors on board, including a Hardin County native. This sinking was the greatest single loss of life at sea in the history of the US Navy. The north and northeast sides of the rock are based on POW stories from Hardin County veterans including a B-17 tail gunner who was shot down and taken prisoner and a Korean War veteran who was taken prisoner. The dark sky represents the black of the POW/MIA Flag and the darkness of their imprisonment. The Hardin County (Ackley) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t517 Main St.<br />Ackley, IA 50601<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Matchstick Marvels Museum",
            "lat": "42.187677",
            "lon": "-92.716562",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-historicunique-matchstickmarvels.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Matchstick Marvels Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.187677,-92.716562\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">48.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Matchstick Marvels Museum is dedicated to the art work of Iowa artist Patrick Acton. The museum features Acton&#039;s matchstick models of famous buildings and modes of transportation. The sculptures are made entirely out of matchsticks, and he can use up to 200,000 matchsticks in one piece. His most famous sculptures include a 13&#039; scale model of the USS Iowa, a 12&#039; model of the United States Capitol, and a re-creation of the space shuttle Challenger and its launch station.  Many of Acton&#039;s creations are featured at Ripley&#039;s Believe It or Not Museums, and a permanent collection is on display at Matchstick Marvels.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t319 2nd St.<br />Gladbrook, IA 50635<br />Tama County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.473.2410</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://matchstickmarvels.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Farm Scene Mural",
            "lat": "42.732088",
            "lon": "-93.731268",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-artpublic-farmscenemural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Farm Scene Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.732088,-93.731268\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">49mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Paul Faulkner was commissioned to create this mural in 1943 as part of a Depression-era program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 1st St. NE<br />U.S. Post Office<br />Clarion, IA 50525<br />Wright County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Tama County",
            "lat": "42.181562",
            "lon": "-92.706459",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Tama County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.181562,-92.706459\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">49.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Tama County Freedom Rock® in Gladbrook features a thank you to Meskwaki Code Talkers. Meskwaki men were trained to use their native language to provide secure battlefield communication during World War II. The Code Talkers served in Algeria, Tunisia and Italy. The logo of the Sac and Fox Tribe of the Mississippi in Iowa is also on the rock. In 2013, the Meskwaki Code Talkers were posthumously awarded the Congressional Gold Medal. The road facing side of the rock features soldiers from the Civil War through today. The Tama County (Gladbrook) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA Hwy. 96<br />Gladbrook, IA 50635<br />Tama County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Listen to the Wind",
            "lat": "41.677429",
            "lon": "-94.504441",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Listen to the Wind</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.677429,-94.504441\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Listen to the Wind, by Hilde DeBruyne, moves with the wind and depicts a Native American proverb: “Listen to the wind, it talks. Listen to the silence, it speaks. Listen to your heart, it knows. This installation is part of the Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. Listen to the Wind is located on the Western Skies Scenic Byway.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t307 State St.<br />Guthrie Center, IA 50115<br />Guthrie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Guthrie County",
            "lat": "41.676801",
            "lon": "-94.508247",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Guthrie County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.676801,-94.508247\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Guthrie County Freedom Rock® located in Guthrie Center is based on the stories of local veterans. The front side depicts a Guthrie County veteran who received the Silver Star in the M-39 tank for rescuing five soldiers from a burning tank on a battlefield in Korea before being blown up and wounded himself. Also, a soldier from this county crawled a mile through darkness to blow a hole through the dragons teeth to allow Patton&#039;s tanks to roll into Germany for the first time. He received the Bronze Star. The east side of the rock depicts the story of a Guthrie County man who stood the gun mount of the tiny USS Hoel firing on the world&#039;s biggest battleship (the Japanese Yamato) before being sunk and killed. The Yamato retreated only moments after the Hoel sunk, saving the lives of thousands of U.S. soldiers on a nearby beachhead. Below, the European cemetery represents the soldiers who were buried in Europe, receiving the Purple Heart. On the north side, the B-24s and B-17s represent Guthrie County veterans, two who survived shoot downs and one killed in action, and their Air Medals and Purple Hearts. The F/A-18 was the jet of a Guthrie County veteran who flew many successful missions and helped in gathering the stories of his fellow veterans for this Freedom Rock. The Guthrie County (Guthrie Center) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW State St.<br />Guthrie Center, IA 50115<br />Guthrie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Josiah B. Grinnell Gravesite",
            "lat": "41.738715",
            "lon": "-92.734673",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-cemetery-josiahbgrinnell-gravesite.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Josiah B. Grinnell Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.738715,-92.734673\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This is the final resting place of Josiah Bushnell Grinnell: Congregational minister, co-founder of the town that bears his name, member of the U.S. House of Representatives, and passionate abolitionist. As an active participant of the Underground Railroad, he used his influence as well as his home and barn to aid slaves in their quest for freedom. He welcomed John Brown and his party to Grinnell as Brown crossed Iowa on his flight from Kansas in 1859. In 1862 the Iowa City Press declared that, &#039;No man in America more fully embodies the whole juice and spirit of rampant abolitionism in its present sense, than does J.B. Grinnell&#039;. Follow the directional signage from the main entrance to the grave site.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 1st Ave.<br />Hazelwood Cemetery<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Faulconer Gallery",
            "lat": "41.746386",
            "lon": "-92.720975",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-artmuseum-faulconergallery.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Faulconer Gallery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.746386,-92.720975\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Faulconer Gallery at Grinnell College is a changing exhibition space for art by regional, national and international artists. The Gallery features exhibitions curated by the professional staff, as well as shows from other institutions. Staff and students create dynamic programs, publications, and events year round. The gallery is open seven days a week and is free to all.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1108 Park St.<br />Bucksbaum Center for the Arts - Grinnell College<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.269.4660</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://grinnell.edu/faulconergallery\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Smith Gallery",
            "lat": "41.749213",
            "lon": "-92.720602",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-artmuseum-smithgallery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Smith Gallery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.749213,-92.720602\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This gallery features art produced by Grinnell College students and is open year-round.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1115 8th Ave.<br />Joe Rosenfield &#039;25 Center - Grinnell College<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.grinnell.edu/about/visit/spaces/smith-gallery\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Grinnell Arts Center and Gallery",
            "lat": "41.744054",
            "lon": "-92.723757",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-artmuseum-grinnellartscenterandgallery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grinnell Arts Center and Gallery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.744054,-92.723757\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grinnell Area Arts Council hosts this center and gallery in order to promote and assist art and other cultural activities in the Grinnell area. Features rotating exhibits. The Stewart Library, completed and dedicated in 1902, is an interesting local adaptation of the Romanesque Revival style. It was named for Joel Stewart, a farmer, banker, and state legislator who found time for philanthropic activities, including the organization and building of a library for the town. The library was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t926 Broad St.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.236.3203</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://grinnellarts.org/news.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Print and Drawing Room",
            "lat": "41.746487",
            "lon": "-92.720213",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-artmuseum-printanddrawingroom-burlinglibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Print and Drawing Room</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.746487,-92.720213\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grinnell College extensive art-on-paper collection can be viewed in this print and drawing room, located in the Burling Library. The facility houses over 3000 works on paper.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1111 6th Ave.<br />Burling Library - Grinnell College<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.269.3371</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.grinnell.edu/about/visit/spaces/print-and-drawing-study-room\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Eclipse",
            "lat": "41.741594",
            "lon": "-92.722681",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-artpublic-eclispe.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Eclipse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.741594,-92.722681\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Grinnell College artist in residence, David Loewenstein, worked with local youth to create this mural on the South side of central park, downtown Grinnell.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tPark St. and 3rd Ave.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Jasper County",
            "lat": "41.578583",
            "lon": "-92.846372",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-monument-sullyfreedomrock-1.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Jasper County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.578583,-92.846372\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jasper County Freedom Rock® in Sully features a unique illustration of a Revolutionary War hero, Sgt. William Jasper. Under attack by the British and low on ammunition, Sgt. Jasper and the 2nd South Carolina Regiment only fired when ships closed in on their fort. The liberty flag they were fighting under, designed by Col. Moultrie at the behest of the colonial government, was shot down and fell to the bottom of the ditch on the outside of the fort. Leaping from an opening, Jasper recovered the flag, which he tied to a sponge staff where he supported it under intense enemy fire until a permanent flag staff had been procured and installed. With this rallying point, the colonists held out until sunset, forcing the British to retreat. Jasper was offered an officers commission, but turned it down because he felt it would be an embarrassment since he couldn&#039;t read or write. He was later killed in battle, but not before he could move his regiment&#039;s colors to a place of safety before he died. On the west side of the rock is an eagle carrying a purple heart and silver star, those medals earned by heroic Jasper County residents. It also features a farmer and soldier crouched, almost as one, signifying the citizen soldier with a quote from President Washington: &quot;When we assumed the soldier, we did not lay aside the citizen.&quot; The Jasper County (Sully) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t380 7th Ave.<br />Sully City Park<br />Sully, IA 50251<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Iowa Quilt Museum",
            "lat": "41.334316",
            "lon": "-94.014373",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-artmuseum-iowaquiltmuseum-1.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Quilt Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.334316,-94.014373\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Quilt Museum is located in Winterset&#039;s historic town square and displays vintage and contemporary quilts with exhibits that rotate every four months.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t68 E Court<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "George Stout Memorial",
            "lat": "41.333341",
            "lon": "-94.014764",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Stout Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.333341,-94.014764\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The George Stout Memorial, by Michael Goodall, is a monument to legendary art conservator George Stout. A Winterset native, Stout led efforts to preserve Europe&#039;s art and cultural treasures during World War II. The 2014 feature film &quot;The Monuments Men&quot; made Stout famous for his work. This installation is part of the Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. The George Stout Memorial is located on the Covered Bridges Scenic Byway.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t111 W Washington St.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Winterset Art Center",
            "lat": "41.332689",
            "lon": "-94.013640",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-artmuseum-wintersetartcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Winterset Art Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.332689,-94.013640\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Winterset Art Center is a not for profit organization dedicated to art education, to the history and preservation of local art and artists, and to the promotion of artistic endeavor in Winterset, Madison County, and the State of Iowa. The Art Center is a place for artists to meet, work, and exchange ideas, and supports a continuing program of education in various forms of artistic expression for all skill levels, from beginners to experienced artists.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t224 S John Wayne Dr.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.975.5444</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Winterset World War I Memorial",
            "lat": "41.329929",
            "lon": "-94.009321",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-monument-wintersetworldwar1memorial-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Winterset World War I Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.329929,-94.009321\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Madison County soldiers who sacrificed their lives in World War I are memorialized around a tall, granite marker topped by a statue of a soldier. The monument is inscribed: &quot;Erected by the people of Madison County, Iowa, as a grateful tribute to the memory of its soldiers and sailors.&quot; It stands on a plot of ground that the Winterset Cemetery Association donated to the War Memorial Association, whose members dedicated the monument on Veterans Day in 1920.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS 4th St.<br />Winterset Cemetery<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Coon Rapids Roadside Sculpture Garden",
            "lat": "41.866331",
            "lon": "-94.675671",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/carroll-artpublic-coonrapidsroadsidesculpturegarden-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Coon Rapids Roadside Sculpture Garden</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.866331,-94.675671\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Coon Rapids Roadside Sculpture Garden features permanent sculptures by artists Ian Carter, Dough Carpenter, Allen Bukoff, Jacob Evans, Dennis Wurr and Zach Bowman.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1390 IA Hwy. 141<br />Coon Rapids, IA 50058<br />Carroll County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.999.7031</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.creatinggreatplaces.org/page11744416.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Hybrid Icons",
            "lat": "41.865937",
            "lon": "-94.677231",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/carroll-artpublic-hybridicons-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hybrid Icons</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.865937,-94.677231\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist David B. Dahlquist created these three sculptures, which symbolize Coon Rapids as the home of Roswell Garst, founder of the Garst Seed Company and an early pioneer in promoting hybridized seed corn.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHighway 141 and S. 5th Avenue<br />Coon Rapids, IA 50058<br />Carroll County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Cow and Calf Sculpture",
            "lat": "41.988591",
            "lon": "-92.582059",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-artpublic-cowcalfsculpture.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cow and Calf Sculpture</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.988591,-92.582059\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Easily visible beside a Burr Oak tree, near the intersection of Business Route US Highways 30 and 63 in Toledo, a cow helping her calf to stand - is sculpted in life size. Sculptor Norma &quot;Duffy&quot; Lyons, best known as the &quot;Butter Cow Lady&quot; for her creations a the Iowa State Fair, made this artwork in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBusiness US Hwy. 30 and US Hwy. 63<br />Toledo, IA 52342<br />Tama County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.484.2160</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://tamacountyiowa.org/communities/toledo/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wieting Theatre",
            "lat": "41.995349",
            "lon": "-92.576719",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-theater-wietingtheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wieting Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.995349,-92.576719\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wieting Theatre opened in 1912. It is built in the Colonial Revival style, which was unusual in small towns. The Wieting was one of three, possibly identical, opera houses funded by Ella W. Wieting as memorials to her husband. The Wieting Theatre was added to the National Register of Historic Places in 1979 and was recently renovated. Movies are now shown there, in addition to it being a live theatre venue.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 S Church St.<br />Toledo, IA 52342<br />Tama County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Marion County",
            "lat": "41.322574",
            "lon": "-93.111909",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-artpublic-marioncountyfreedomrock-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Marion County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.322574,-93.111909\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">55.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Marion County Freedom Rock tells two local stories and is one of just a few Freedom Rocks to feature a woman. When the United States entered World War I in 1917, Iowa had no state flag for the Iowa-based regiments to carry. So a local woman named Dixie Cornell Gebhardt (featured on the front of the rock) designed a flag and submitted it to the governor, and it became the official state flag in 1921. William M. Stone (on the back of the rock) served in the Civil War and was captured twice. He became Iowa&#039;s sixth governor soon after and was good friends with President Abraham Lincoln. Some evidence suggests that Stone was at Ford&#039;s Theater when Lincoln was assassinated and may have helped carry the president across the street to the Petersen House, where he died. The Marion County Freedom Rock was completed by artist Ray &quot;Bubba&quot; Sorensen II of Greenfield in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Lincoln St.<br />Knoxville, IA 50138<br />Marion County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Pioneer Group at the Red Rock Line 1845 Mural",
            "lat": "41.320042",
            "lon": "-93.097305",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-artpublic-pioneergroupattheredrockline1845mural.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pioneer Group at the Red Rock Line 1845 Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.320042,-93.097305\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by Marvin Beerbohm, this mural was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 E Marion St.<br />United States Post Office<br />Knoxville, IA 50138<br />Marion County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://livingnewdeal.berkeley.edu/projects/knoxville-post-office-pioneer-group-at-the-red-rock-line-1845-mural-knoxville-ia/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Merle Hay Memorial",
            "lat": "42.064230",
            "lon": "-94.740600",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Merle Hay Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.064230,-94.740600\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This memorial to Merle David Hay was erected by the State of Iowa in 1930 and features a drawing by the famous newspaper cartoonist Ding Darling. Hay was born on a farm near old Carrollton, Iowa, on July 30, 1896, before the family moved to a farm near Glidden. He voluntarily enlisted in the Army on May 3, 1917, a month after Congress declared war on Germany. Tragically, he made headlines six months later when Germans cut off a small detachment of Gen. John Pershing&#039;s men, including Hay, who was killed in action on November 3, 1917. Hay was one of the first three Americans to die in France during World War I. He was buried at Bathelemont, France, and in 1921 his remains were reinterred at the West Lawn Cemetery in Glidden. That same year, the road into Camp Dodge in Des Moines was named Merle Hay Road in his honor.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t28185 US Hwy. 30<br />West Lawn Cemetery<br />Glidden, IA 51443<br />Carroll County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Marion County Veterans Memorial",
            "lat": "41.318738",
            "lon": "-93.096891",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-monument-veteransmemorial-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marion County Veterans Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.318738,-93.096891\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Marion County Veterans Memorial on the grounds of the county courthouse in Knoxville lists local casualties from World War I, World War II, Korea and Vietnam. The memorial was erected by veterans service organizations across the county, including the American Legion, the Amvets, the Disabled American Veterans and the Veterans of Foreign Wars.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Main St.<br />Knoxville, IA 50138<br />Marion County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock",
            "lat": "41.474908",
            "lon": "-94.452231",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-artpublic-freedomrock.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.474908,-94.452231\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Freedom Rock® is a large (approximately 60 tons) boulder located in rural Adair County. Every year since 1999, Greenfield-based artist Ray &quot;Bubba&quot; Sorensen II paints the rock with a new thank you to the nations veterans. The painting is always completed by Memorial Day. Sorensen is working to paint a local Freedom Rock in each of Iowa&#039;s 99 counties, similar to the original Freedom Rock. In 2015, the north side of the Freedom Rock features Carlos &quot;White Feather&quot; Hathcock, a Marine Corps sniper with a service record of 93 confirmed kills. Hathcock was most famous for shooting an enemy sniper through the enemy&#039;s own rifle scope, hitting him in the eye and killing him. After returning from active duty, Hathcock helped to establish the Marine Corps Scout Sniper School at Quantico, Virginia.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1199 IA Hwy. 25<br />Menlo, IA 50164<br />Adair County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Imaginary Farm Mural",
            "lat": "42.393809",
            "lon": "-94.633712",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/calhoun-artpublic-imaginaryfarm.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Imaginary Farm Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.393809,-94.633712\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Also known as &quot;Summer&quot;, this mural was painted by John Sharp in 1941, and was inspired by Iowa farm life.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t520 4th St.<br />U.S. Post Office<br />Rockwell City, IA 50579<br />Calhoun County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.newdealartregistry.org/rendersite/RockwellCityPostOffice/RockwellCity/IA/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Hollanders Settle in Pella Mural",
            "lat": "41.406506",
            "lon": "-92.918657",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-artpublic-hollanderssettleinpellamural.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hollanders Settle in Pella Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.406506,-92.918657\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by Byron B. Boyd in 1938, this mural depicts Pella’s founder, Dominie Scholte, leading his people to Pella from the Netherlands. This project was part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t801 Franklin St.<br />United States Post Office<br />Pella, IA 50129<br />Marion County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://livingnewdeal.berkeley.edu/projects/post-office-mural-pella-ia/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Calhoun County",
            "lat": "42.395635",
            "lon": "-94.634532",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/calhoun-monument-rockwellcityfreedomrock-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Calhoun County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.395635,-94.634532\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Calhoun County Freedom Rock® in Rockwell City features a &quot;Thank You Veterans&quot; with a soldier carrying one of his wounded to safety. A couple P47s fly in the background over the soldiers with a side view of the USS Iowa. The P47s were requested by the community to honor one of the local veterans flew many successful missions the aircraft. On the back side, an eagle clutches a ribbon that says &quot;The price of freedom will never be forgotten&quot;, giving reference to the piece above that shows soldiers&#039; crosses from different eras. The American flag draped over the top and a carved out POW/MIA is included on the side. The Calhoun County (Rockwell City) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t419 Main St.<br />Rockwell City, IA 50579<br />Calhoun County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Klokkenspel",
            "lat": "41.406547",
            "lon": "-92.915696",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-monument-klokkenspel.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Klokkenspel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.406547,-92.915696\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Klokkenspel was created by H. Stuart Kuyper as a memorial to himself. The Klokkenspel consists of a large clock, along with a small courtyard with flower beds, stone benches, and arched niches filled with Dutch tile scenes. The clock has eight 4 foot figures that perform at 11:00 am, 3:00, 5:00 and 9:00 p.m.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tFranklin St.<br />Pella, IA 50219<br />Marion County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofpella.com/Facilities/Facility/Details/7\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Pella Opera House",
            "lat": "41.406475",
            "lon": "-92.915210",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-theater-pellaoperahouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pella Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.406475,-92.915210\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pella Opera House was built in 1900. The opera house only operated for 18 years before it was closed. The building would change hands multiple times, and the businesses would change just as frequently. The building was an auto parts shop, dance hall, and even a chicken and pigeon salesman. The building was almost demolished in the 1980&#039;s, but a group of citizens banned together to save it, and after extensive renovations, the Pella Opera House was reopened and is still operating today.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t611 Franklin St.<br />Pella, IA 50219<br />Marion County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.628.8625</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://pellaoperahouse.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Mills Gallery",
            "lat": "41.401813",
            "lon": "-92.919801",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-artmuseum-millsgallery.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mills Gallery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.401813,-92.919801\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mills Gallery is located in Lubbers Center for the Visual Arts on the campus of Central College. The gallery serves as a resource for the Central College art department, the campus and the general community. The Mills Gallery offers a dynamic schedule of exhibitions featuring art from around the world, and hosting visiting artists&#039; lectures by regionally, nationally and internationally known artists. Senior art majors display their thesis exhibitions in this space. Central maintains a teaching collection of contemporary art works visible in public spaces throughout campus, integrating art into the life of the campus.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t812 University St.<br />Central College<br />Pella, IA 50219<br />Marion County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://departments.central.edu/millsgallery/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Theatre Central",
            "lat": "41.400503",
            "lon": "-92.922103",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-artperforming-theatrecentral.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Theatre Central</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.400503,-92.922103\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Theatre Central is Central College&#039;s student theater group and performs in local venues and at the Kruidenier Center on campus. Students learn creativity and artistic excellence through course work and numerous live productions each year. Tickets are available at the Maytag Center Information Booth.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t812 University St.<br />Central College<br />Pella, IA 50219<br />Marion County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://departments.central.edu/theatre/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "East Peru Veterans Monument",
            "lat": "41.231000",
            "lon": "-93.939316",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-monument-eastperuveteransmonument-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">East Peru Veterans Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.231000,-93.939316\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57mi.</span></div>\n\t\t</div>\n\n\t\t<p>A granite, eagle-topped monument at the Peru Cemetery is dedicated to war veterans. Local soldiers killed in World War I are listed on the front of the monument, while the back of the monument honors the war&#039;s unknown soldiers, as well as those who served in the Civil War and Spanish American War. The Women&#039;s Relief Corps led the effort to build the monument, which was dedicated in 1921.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. G68<br />Peru Cemetery<br />East Peru, IA 50222<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Village Square Theatre",
            "lat": "42.266842",
            "lon": "-94.741476",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Village Square Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.266842,-94.741476\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Village Square Theatre was established in 1979 and has produce more than 80 shows and given more than 60 scholarships to local students. The community theatre performs three plays each year at the Fanny Howell Auditorium.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t709 W Main St.<br />Lake City, IA 51449<br />Calhoun County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://villagesquaretheatre.weebly.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Jenison Meacham Memorial Art Center and Museum",
            "lat": "42.880706",
            "lon": "-93.602525",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-historymuseum-jenisonmeacham.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jenison Meacham Memorial Art Center and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.880706,-93.602525\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">59.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jenison-Meacham Memorial Art Center and Farm consists of 120 acres and a large 1930s restored farm site. The farm has many different agricultural and pioneer artifacts. The art center has a permanent collection of art, mainly focusing on pioneer life. The complex also contains a restored 1900s house, barn, Wisner Township No.5 schoolhouse (relocated from Loomis Park in Franklin County) and &quot;Andy&#039;s Maytag House.&quot;</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1179 Taylor Ave.<br />Belmond, IA 50421<br />Wright County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.444.3557</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://belmondartscenter.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Greatest Story Never Told",
            "lat": "41.496179",
            "lon": "-94.561699",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-artpublic-thegreateststorynevertold.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Greatest Story Never Told</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.496179,-94.561699\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">59.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This public art work, by David Dahlquist, is based on the life of Henry A. Wallace, U.S. Vice-President and Secretary of Agriculture. It commemorates his establishment of the first soil conservation district. Standing columns represent the vanishing layer of topsoil and native vegetation, while ceramic tile murals illustrate Wallace&#039;s birthplace in nearby Orient and the development of biotechnology.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tInterstate Hwy. 80 Eastbound<br />Mile Post 81 Rest Area<br />Adair, IA 50002<br />Adair County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.rdgusa.com/projects/the-greatest-story-never-told-1#/services/art-studio\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Lift",
            "lat": "41.497411",
            "lon": "-94.572681",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-artpublic-lift.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lift</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.497411,-94.572681\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">60.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This full-scale industrial wind turbine blade, rising 165 feet and visible from a mile away, is a monumental icon for wind energy production in Iowa. The installation was designed by David Dahlquist.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tInterstate Hwy. 80 Westbound<br />Mile Post 80 Rest Area<br />Adair, IA 50002<br />Adair County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.rdgusa.com/projects/lift-1#/services/art-studio\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Carroll Community Theatre",
            "lat": "42.065586",
            "lon": "-94.857624",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carroll Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.065586,-94.857624\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">62.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Carroll Community Theatre was created in 1970 by a group of local citizens that wanted to bring quality theater to Carroll. It is a non profit organization and work in tandem with the Carroll Arts Council. They produce 3-4 shows a year featuring Carroll citizens of all ages.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t716 N Grant St.<br />Carroll Recreation Center<br />Carroll, IA 51401<br />Carroll County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.775.2035</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carrollarts.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Veterans Memorial Monument",
            "lat": "42.083274",
            "lon": "-94.857649",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Veterans Memorial Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.083274,-94.857649\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">62.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Veterans Memorial Monument is dedicated to men and women from the six branches of the US Military. The monument is located in Veterans Memorial Park, a large natural space with walking trails, a shelter, and a small picnic area. The Monument was dedicated on Veterans Day 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tForest and 22nd St.<br />Veterans Memorial Park<br />Carroll, IA 51401<br />Carroll County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.792.4383</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Humboldt County",
            "lat": "42.868640",
            "lon": "-94.185172",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Humboldt County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.868640,-94.185172\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">64.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Humboldt County Freedom Rock® is located on a site that was originally landscaped to house the city hall. The west side of the rock is dedicated to the memory of area veterans handing candy and C-rations to the Vietnamese children. Area native Lance Corporal Jerry Hatcher is featured on the south side of the rock. Hatcher earned his first Purple Heart when he was hit in the hands and chest with grenade shrapnel, his second Purple Heart when he was was knicked on the elbow by a mortar fragment on the day before his 23rd birthday and his third Purple Heart when he was hit with grenade shrapnel on a routine overnight patrol. This third incident cost Hatcher his life. Artwork on the rock also includes homage to medical personnel in the armed forces, a flag, an eagle and a quote by author Sidney Sheldon. The Humboldt County (Livermore) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4th Ave.<br />Livermore, IA 50558<br />Humboldt County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Brooklyn Opera House",
            "lat": "41.729048",
            "lon": "-92.445185",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-theater-brooklynoperahouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brooklyn Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.729048,-92.445185\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Brooklyn Opera House was incorporated in 1910 and opened on February 28, 1911. The Opera House was the center of cultural activities with various performances and silent movies held during the early years. Over past several years restoration of the building had been a project for several volunteer groups. Currently, the Opera House is under private ownership.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 Jackson St.<br />Brooklyn, IA 52211<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Warren Cultural Center",
            "lat": "41.304988",
            "lon": "-94.460344",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-nhr-warrenculturalcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Warren Cultural Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.304988,-94.460344\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The EE Warren Opera House opened in 1896. By the 1940s, the theatre had fallen in to disrepair. In 1994, the building was given to Main Street Greenfield, and in 2000 the EE Warren Opera House Association began a $6.2 million restoration project. The Warren Cultural Center opened its doors in Spring 2012 and now serves as a multi-use facility, hosting meetings, receptions and overnight guests, as well as performances in its historic rooms. Ed and Eva&#039;s retail store offers unique items from more than 40 different Iowa artists, and the gallery/lobby displays exhibits of art and photography. The Warren Opera House Block and Hetherington Block stand as well preserved examples of Iowa’s small town opera houses and commercial architecture. This project was given a 2013 Best of Preservation Award by the State Historical Society of Iowa Board of Trustees, and in 2014 the theater was named in honor of Norman Lear.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t154 Public Square<br />Greenfield, IA 50849<br />Adair County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7337</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.warrenculturalcenter.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Fine Line of Gold",
            "lat": "41.070242",
            "lon": "-93.784579",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clarke-artpublic-finelineofgold.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Fine Line of Gold</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.070242,-93.784579\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">66.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Dennis Adams created this mural in 2003 for the District 2 Headquarters for the Iowa State Highway Patrol. The mural is dedicated to, and celebrates the responsibilities of highway patrol officers.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1619 Truro Pavement<br />Iowa State Highway Patrol, District 2 Headquarters<br />Osceola, IA 50213<br />Clarke County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.342.2108</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Butler County Hall of Fame",
            "lat": "42.757188",
            "lon": "-92.795854",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/butler-monument-halloffame.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Butler County Hall of Fame</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.757188,-92.795854\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">66.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hall of Fame is housed in a structure that is topped off with the old cupola that was removed from the Butler County Courthouse that was built in 1881 and torn down in 1975. The dome is 18 feet in diameter, 30 feet tall, and weighs approximately 7,000 pounds. Inside, you will find photos of county residents who have been inducted into the hall of fame over the years. Also on display are military artifacts dating back to the War of 1812 that were donated by county residents and their families who served in the military. Appointments are required.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t499 6th St.<br />Courthouse Square<br />Allison, IA 50602<br />Butler County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.885.6279</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.butlercountyiowa.com/historyattractions.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Horse and Rider",
            "lat": "42.479022",
            "lon": "-92.464377",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Horse and Rider</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.479022,-92.464377\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">67.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Jim Benedict created this sculpture out of oxidized steel in 2002. It was commissioned by The Cedar Falls Art and Culture Board and the Public Art Committee of the Cedar Falls Art and Culture Board.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6510 Hudson Rd.<br />Cedar Falls Visitor Center<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.273.8641</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cedarfalls.com/index.aspx?NID=456\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Arrival of the First Train Mural",
            "lat": "41.034599",
            "lon": "-93.767760",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clarke-artpublic-arrivalofthefirsttrain.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Arrival of the First Train Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.034599,-93.767760\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">68.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by Byron B. Boyd in 1936, this mural was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t104 S Fillmore St.<br />United States Post Office<br />Osceola, IA 50213<br />Clarke County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://livingnewdeal.berkeley.edu/projects/post-office-mural-osceola-ia/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "University of Northern Iowa Gallery of Art",
            "lat": "42.513738",
            "lon": "-92.464735",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-artmuseum-unigalleryofart.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">University of Northern Iowa Gallery of Art</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.513738,-92.464735\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69mi.</span></div>\n\t\t</div>\n\n\t\t<p>The University of Northern Iowa Gallery of Art presents nine rotating art exhibitions each year, features the work of contemporary art and artists, promotes innovation in art, and cultivates the careers of emerging artists.  The permanent collection of the University of Northern Iowa Gallery of art includes works by Berenice Abbott, Josef Albers, Romare Bearden, John Buck, Harold Eugene Edgerton, George Grosz, Philip Guston, R. B. Kitaj, Pablo Picasso, and Jerry Uelsmann.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tKamerick Art Building<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.273.6134</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.uni.edu/artdept/gallery/Home.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Bower",
            "lat": "42.509783",
            "lon": "-92.463520",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bower</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.509783,-92.463520\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lynn Basa created this sculpture out of steel, copper, glass, and LEDs in 2012. It is comprised of nine columns of varying heights, placed both indoors and out.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW 31st St.<br />Panther Village - University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/bower\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Maslow&#039;s Theory",
            "lat": "42.517083",
            "lon": "-92.467123",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Maslow&#039;s Theory</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.517083,-92.467123\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69mi.</span></div>\n\t\t</div>\n\n\t\t<p>Jack Wilkes created this series of paintings/drawings on wood board using mixed media in 1995. The series contains 46 separate panels in 4 sets of 9 and 2 sets of 5. Each panel conveys an aspect of Maslow&#039;s Hierarchy of Needs and objects from the American myth.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRichard O. Jacobson Human Performance Center<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/maslows-theory\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Porta Largo",
            "lat": "42.513381",
            "lon": "-92.464713",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Porta Largo</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.513381,-92.464713\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69mi.</span></div>\n\t\t</div>\n\n\t\t<p>Walter Dusenberry created this 15-ton sculpture out of white marble in 1985. The sculpture is composed of three parts: two columns and a connecting slab. One column references classical Greek architecture while the other symbolizes modern culture.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW 27th St.<br />Kamerick Art Building - University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.library.uni.edu/collections/special-collections/university-archives/outdoor-sculptures/porta-largo\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Purple Wave",
            "lat": "42.514902",
            "lon": "-92.467246",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Purple Wave</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.514902,-92.467246\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69mi.</span></div>\n\t\t</div>\n\n\t\t<p>Gary Kelly created this series of paintings in 2007. Each canvas depicts an athlete in motion.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUNI Athletics Hall of Fame<br />McLeod Center Connector - University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/purple-wave\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Rainwall",
            "lat": "42.511884",
            "lon": "-92.463300",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rainwall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.511884,-92.463300\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69mi.</span></div>\n\t\t</div>\n\n\t\t<p>This public sculpture was created out of stainless steel and ceramic tile in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRedeker Center Dining Hall<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/rainwall\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Shell-Shock",
            "lat": "42.511735",
            "lon": "-92.463307",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Shell-Shock</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.511735,-92.463307\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69mi.</span></div>\n\t\t</div>\n\n\t\t<p>Peter Drake created this monochromatic painting in 2010 using shades of cobalt blue. The painting depicts a toy soldier in front of spectators who watch a fireworks display above a city skyline.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRedeker Center<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/shellshock\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Osceola, Then and Now Mural",
            "lat": "41.032285",
            "lon": "-93.765312",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clarke-publicart-osceolathenandnowmural-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Osceola, Then and Now Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.032285,-93.765312\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa, who has painted over 40 murals in the Midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Main St.<br />Osceola, IA 50213<br />Clarke County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.8075</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Gallagher-Bluedorn Performing Arts Center",
            "lat": "42.511040",
            "lon": "-92.460965",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gallagher-Bluedorn Performing Arts Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.511040,-92.460965\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Decades of dreams and three years of construction became a reality on April 6, 2000, with the dedication of the new Gallagher-Bluedorn Performing Arts Center at the University of Northern Iowa. Enabled by the generosity of Cedar Valley residents Ed and Cathy Gallagher and Carl and Peggy Bluedorn, as well as support from the university, the state and over 1,400 donors across Iowa, this was the first major center to open in Iowa in twenty years. The $23 million, 100,000 square foot complex features three state-of-the-art concert halls, a soaring glass-walled lobby and dozens of teaching and rehearsal spaces. All three halls have been designed with superb acoustics and intimate sightlines. The Great Hall also has cutting-edge theatre technology, enabling the center to present artists spanning from chamber ensembles to the biggest Broadway shows. Hosting more than 300 performances each year, the GBPAC showcases the world&#039;s finest artists, ensembles of the UNI School of Music, the Waterloo-Cedar Falls Symphony and many other regional events.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t8201 Dakota St.<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.273.3660</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.gbpac.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Gregorian Chants",
            "lat": "42.513352",
            "lon": "-92.463520",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gregorian Chants</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.513352,-92.463520\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Davis Delafield created this mosaic piece in 1961. The composition references musical notation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW 27th St.<br />Russell Hall - University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/node/66744\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Prismatic Pyramids",
            "lat": "42.510993",
            "lon": "-92.460696",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prismatic Pyramids</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.510993,-92.460696\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Ray King created this hanging sculpture out of hundreds of facets of holographic glass.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t8201 Dakota St.<br />Gallagher-Bluedorn Performing Arts Center<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/prismatic-pyramids\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Stage Set for a Film No. 1",
            "lat": "42.516665",
            "lon": "-92.466113",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stage Set for a Film No. 1</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.516665,-92.466113\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dennis Oppenheim created this site-specific sculpture out of steel, mixed media, and earth in the year 2000. The sculpture was designed to enhance both its site and the architecture of the Wellness Center.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWellness and Recreation Center<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.library.uni.edu/collections/special-collections/outdoor-sculpture-uni/stage-set-film-1\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Symphony in Three Forms",
            "lat": "42.513749",
            "lon": "-92.462883",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Symphony in Three Forms</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.513749,-92.462883\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Don Finegan created this sculpture in 1960 out of bronze, fiberglass, and cement. The three figures represent three themes in musical composition; symphony, development, and climax.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMinnesota St.<br />Russell Hall - University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.library.uni.edu/collections/special-collections/outdoor-sculpture-uni/symphony-three-forms\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Acrobats",
            "lat": "42.512424",
            "lon": "-92.463505",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Acrobats</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.512424,-92.463505\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Edward Whiting created this sculpture out of fiberglass in 1965. The sixteen-foot sculpture depict three acrobats balanced on top of each other.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRedeker Center Courtyard<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.library.uni.edu/collections/special-collections/university-archives/outdoor-sculptures/acrobats\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Zephyr Blue Persian Set with Tangerine Lip Wraps",
            "lat": "42.513844",
            "lon": "-92.463348",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Zephyr Blue Persian Set with Tangerine Lip Wraps</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.513844,-92.463348\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dale Chihuly created this sculpture out of glass. It consists of nine differently shaped vessels, eight of which are nested into the largest form.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMinnesota St.<br />Russell Hall - University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/node/66721\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Waterloo-Cedar Falls Symphony",
            "lat": "42.510718",
            "lon": "-92.461473",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-artperforming-wcfsymphony.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Waterloo-Cedar Falls Symphony</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.510718,-92.461473\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Waterloo-Cedar Falls Symphony (wcfsymphony) is a passionate and energetic team of music lovers devoted to redefining the symphonic experience through live performances and community engagement. The Courier hails its &quot;innovative programming, inventive collaborations and interesting, sometimes surprising twists [which] make each concert a musical adventure.&quot; Artistic Director Jason Weinberger is known nationally for his work across genres and for his approachable, exciting style of presentation and interpretation, all typical of the work under his leadership. Join us for unforgettable musical experiences at venues across the Cedar Valley!</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t8201 Dakota St.<br />Gallagher-Bluedorn Performing Arts Center<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.273.3373</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://wcfsymphony.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Architectural and Environmental Symposium",
            "lat": "42.509969",
            "lon": "-92.457686",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Architectural and Environmental Symposium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.509969,-92.457686\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bronze sculpture was created by University of Northern Iowa art student Jason Sweet in 1994. The free-standing sculpture weighs about 1,000 pounds and will tarnish green as it weathers. The sculpture focuses on comparing architectural and environmental elements.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tJennings Dr.<br />Industrial Technology Center - University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.library.uni.edu/collections/special-collections/university-archives/outdoor-sculptures/architectural-environmental\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Balanced/Unbalanced Beaks",
            "lat": "42.514247",
            "lon": "-92.461952",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Balanced/Unbalanced Beaks</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.514247,-92.461952\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This sculpture, created out of steel by artist Fletcher Benton was installed April 20, 1993. The sculpture is a work of geometrical abstraction with numerous interlocking shapes painted bright red.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMinnesota St.<br />Curris Business Building - University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.library.uni.edu/collections/special-collections/university-archives/outdoor-sculptures/balancedunbalanced-beaks\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Environmental Place",
            "lat": "42.515714",
            "lon": "-92.462436",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Environmental Place</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.515714,-92.462436\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This sculptural installation was created in 1973 by artist Hu Hung Shu. The sculpture features a running fountain and a solar structure. The intention of the sculpture is to extend art into the landscape; highlighting the interaction between air, water, sun, wind, and earth.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tSchindler Education Center<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.library.uni.edu/collections/special-collections/university-archives/outdoor-sculptures/environmental-place\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Powhatan: Gunboat Diplomacy",
            "lat": "42.512539",
            "lon": "-92.459889",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Powhatan: Gunboat Diplomacy</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.512539,-92.459889\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Phillip Chen created this etched print as a triptych of images.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCampus St.<br />Gilchrist Hall - University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/node/66687\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Coursing Through Life",
            "lat": "42.513982",
            "lon": "-92.458369",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Coursing Through Life</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.513982,-92.458369\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lynn Basa created this 1,000 square foot flooring installation out of terrazzo, recycled glass, mother of pearl, and marble in 2010. The design unifies the main axis corridor in Sabin Hall.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tSabin Hall<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/coursing-through-life\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Industrial Technology Sculpture",
            "lat": "42.511089",
            "lon": "-92.457808",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Industrial Technology Sculpture</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.511089,-92.457808\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Robert Engman created this sculpture in 1979 out of steel. 1,536 steel rods, one-half inch wide, form interlocking curvilinear patterns. Meant to reflect the positive aspects of human relationships with technology.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIndustrial Technology Center<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.library.uni.edu/collections/special-collections/university-archives/outdoor-sculptures/industrial-technology\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Iowa Cycles",
            "lat": "42.514308",
            "lon": "-92.458688",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Cycles</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.514308,-92.458688\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Cork Marcheschi created this twenty-one foot modern sculpture primarily using aluminum. The sculpture contains geometric shapes in neon colors that are illuminated at night, and sits in a reflecting pool.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUnion Plaza<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.library.uni.edu/collections/special-collections/university-archives/outdoor-sculptures/iowa-cycles\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Metal Wall Sculpture",
            "lat": "42.514479",
            "lon": "-92.459565",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Metal Wall Sculpture</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.514479,-92.459565\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>These two sculpture installations were created out of bronze in 1904 (artist unknown). The sculptures consist of overlapping sunbursts, stars, and ellipses.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRod Library<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/metal-sculpture\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Nature&#039;s Secret",
            "lat": "42.512976",
            "lon": "-92.458289",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nature&#039;s Secret</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.512976,-92.458289\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Janet Loftquist created this sculpture installation in 1994, carved from five limestone rocks that formed over 425 million years ago, quarried in Iowa. The artist intended the sculpture to be appealing to many different viewpoints, incorporating scientific and artistic concepts.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tLatham Hall<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.library.uni.edu/collections/special-collections/university-archives/outdoor-sculptures/natures-secret\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Sun Studies",
            "lat": "42.509277",
            "lon": "-92.456134",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sun Studies</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.509277,-92.456134\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dale Eldred and Roberta Lord Eldred created this installation out of glass and aluminum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCenter for Energy and Environmental Education<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/sun-studies\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Towers Art Project",
            "lat": "42.518085",
            "lon": "-92.461512",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Towers Art Project</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.518085,-92.461512\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Anthony Padavano created this sculpture in 1973. It consists of three lens-like structures, two of which are pointing up while the third points down. The sculpture was intended to capture human desire for both interior and exterior space.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDancer Hall<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.library.uni.edu/collections/special-collections/university-archives/outdoor-sculptures/towers-art-project\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Aureole",
            "lat": "42.521127",
            "lon": "-92.462435",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Aureole</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.521127,-92.462435\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Tom Stancliffe created these two columns out of silicone, bronze, and steel. They are each 14 feet tall and 2.5 feet in diameter.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW 19th St.<br />Price Laboratory School<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/aureole\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "City Mouse",
            "lat": "42.516880",
            "lon": "-92.459142",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">City Mouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.516880,-92.459142\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Andrew Arvanetes created this sculpture out of stainless steel in 2002. The large-scale sculpture resembles a child&#039;s toy, a geometrical &quot;mouse on wheels&quot;.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW 23rd St.<br />Multimodal Transportation Center - University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/city-mouse\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Constellation",
            "lat": "42.515783",
            "lon": "-92.457929",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Constellation</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.515783,-92.457929\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This installation created by JoAnn Schnabel consists of 10 elements of varying sizes, each designed in a Persian star motif and carved spiraling patterns</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tSkywalk between Begeman Hall and Lang Hall<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/constellation-0\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Great Reading Room Murals",
            "lat": "42.513974",
            "lon": "-92.457389",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Great Reading Room Murals</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.513974,-92.457389\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Seerley Hall was originally built to house the library at Iowa State Normal School, as the University of Northern Iowa was then known.  Proudfoot and Bird, notable Des Moines architects, designed the building. College president Homer Seerley believed that a good library was a necessity. The building that now bears his name was the first campus library. After World War I, the Board of Trustees determined the Library Reading Room needed decorated.  William de Leftwich Dodge, a prominent New York artists, was commissioned to paint two 12x40 foot murals, “Education” and “In Memoriam.” They were installed in September 1920. The following year, Dodge completed three additional murals for the reading room: “Agriculture,” “The Council of Indians,” and “The Commonwealth.”  In the early 1990s, Seerley Hall was completely renovated and upon re-opening in 1993 the renovated reading room, with period furniture and the restored Dodge murals, was especially striking.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWisconsin St.<br />Seerley Hall - University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/education-memorium-agriculture-council-indians-and-commonwealth\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "From Tragedy to Triumph",
            "lat": "42.513452",
            "lon": "-92.455618",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">From Tragedy to Triumph</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.513452,-92.455618\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This sculpture was created by artist Lewis Balentine in 1995. It is the metal version of a previous sculpture titled &#039;Monument to the Elm&#039; which was made out of wood. This replacement is made of a variety of metals in order to extend its life.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2616 College St.<br />Lutheran Student Center - University of Northern Iowa<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.library.uni.edu/collections/special-collections/university-archives/outdoor-sculptures/tragedy-triumph\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Impact of Experience",
            "lat": "42.515103",
            "lon": "-92.458831",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Impact of Experience</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.515103,-92.458831\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Ted Egri created this sculpture in 1965 out of cement and steel. The abstract steel sculpture stands on a cement base, upheld by pillars. Overall, the sculpture depicts the clash between experience and the process by which one arrives at it.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRod Library<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.library.uni.edu/collections/special-collections/university-archives/outdoor-sculptures/impact-experience\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Schema",
            "lat": "42.515830",
            "lon": "-92.458174",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Schema</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.515830,-92.458174\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dan Perry created this wall piece out of steel and plastic laminate in 2012. The composition references machinery, laboratory instruments, and robotics.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBegeman Hall<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/schema\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Return of the Soldiers; Charge of the 2nd Iowa Infantry, Fort Donelson, 1862",
            "lat": "42.515558",
            "lon": "-92.457338",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Return of the Soldiers; Charge of the 2nd Iowa Infantry, Fort Donelson, 1862</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.515558,-92.457338\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Carl and Harriet Ketchum, and Rohl Smith created these relief murals out of plaster and paint in 1902. The murals depict the charge of the 2nd Iowa Infantry in the Civil War attacks on Fort Donelson, Tennessee in 1862, and the triumphant return of the soldiers in 1865.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tLang Hall<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/return-soldiers-charge-2nd-iowa-infantry-fort-donelson-1862\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Variations on a Theme: Joy",
            "lat": "42.513753",
            "lon": "-92.457786",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Variations on a Theme: Joy</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.513753,-92.457786\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Robert A. Lorr created this sculpture in 1975 out of stainless steel. It consists of three abstract figures, primarily made from geometric shapes and lines.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tSeerley Hall<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.library.uni.edu/collections/special-collections/university-archives/outdoor-sculptures/variations-theme-joy\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "We Are One",
            "lat": "42.515027",
            "lon": "-92.457542",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">We Are One</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.515027,-92.457542\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This piece was created out of concrete and runs along the inside of a 120 foot, semi circular stone colonnade.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCenter for Multicultural Education<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/we-are-one\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Yellow Zinger in Savannah",
            "lat": "42.515557",
            "lon": "-92.459102",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Yellow Zinger in Savannah</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.515557,-92.459102\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Tim Prentice created this bright yellow snake-like sculpture installation out of mixed media in 2007. It is suspended in the hallway next to the student lounge, and undulates in the buildings air currents.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tInnovative Teaching and Technical Center<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/yellow-zinger-savannah\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Audubon’s Trip Down the Ohio and Mississippi – 1820",
            "lat": "41.720235",
            "lon": "-94.930439",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/audubon-artpublic-audubonstripdowntheohioandmississippi-1820.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Audubon’s Trip Down the Ohio and Mississippi – 1820</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.720235,-94.930439\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Virginia Snedeker created this mural, which depicts naturalist James Audubon&#039;s trip down the Ohio and Mississippi Rivers, in 1942. The oil on canvas mural is part of a Depression-era program that supported artists with commissions from the Treasury Section of Find Arts to create fine art for public buildings. Snedeker was born in New York in 1909, she studied at the National Academy of Design and the Art Students League. She was an active member of the American Scene movement, rejecting avant garde modernism and embracing social realism throughout her work.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t428 Tracy St.<br />US Post Office<br />Audubon, IA 50025<br />Audubon County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 510.642.5987</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://livingnewdeal.berkeley.edu/projects/post-office-mural-audubon-ia/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Rotor Vane",
            "lat": "42.507621",
            "lon": "-92.449877",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rotor Vane</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.507621,-92.449877\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Robert Perless created this 19-foot tall, 32-foot long kinetic sculpture out of steel and aluminum in 1990. The minimalist sculpture recalls rotor vanes of the last century.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tROTH Complex<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/node/66604\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Annie Turner Wittenmyer Sculpture",
            "lat": "42.515561",
            "lon": "-92.456829",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Annie Turner Wittenmyer Sculpture</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.515561,-92.456829\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This sculpture installation was created by Tom Gibbs in 1996. It honors Annie Wittenmyer, who organized orphans homes for children of Iowa soldiers who died in the civil war. The sculpture includes tablets that give more information on Wittenmyer.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWisconsin St.<br />Lang Hall - University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.library.uni.edu/collections/special-collections/university-archives/outdoor-sculptures/annie-turner-wittenmyer\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Hearst Center for the Arts",
            "lat": "42.515576",
            "lon": "-92.448444",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hearst Center for the Arts</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.515576,-92.448444\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Poet James Hearst and his wife, Meryl, left a bequest to the City of Cedar Falls to establish the Hearst Center for the Arts. The permanent collection has hundreds of works by local and regional artists and provides a fascinating perspective on Iowa, the Midwest and the nation. The Heart Center for the Arts also boasts a contemporary sculpture garden.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t304 W Seerley Blvd.<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.273.8659</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.hearstartscenter.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Anita&#039;s Oak Tree Opry",
            "lat": "41.445221",
            "lon": "-94.764271",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Anita&#039;s Oak Tree Opry</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.445221,-94.764271\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Oak Tree Opry is located in the rustic, typically rural village of Anita. It is a non-profit dedicated to keeping acoustic rural country music alive. The Oak Tree Opry was started in 1995 by Bob and Sheila Everhart. Just across the street from the Opry is the Pioneer Music Museum, home to both America&#039;s Old Time Fiddler&#039;s Hall of Fame, and America&#039;s Old Time Country Music Hall of Fame. Admittance to these attractions are free with the purchase of a ticket to any show at the Oak Tree Opry.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t650 Main St.<br />Anita, IA 50020<br />Cass County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.762.4363</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.ntcma.net/oak-tree-opry.php\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Black Hawk County",
            "lat": "42.526080",
            "lon": "-92.442597",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Black Hawk County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.526080,-92.442597\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Black Hawk County Freedom Rock® in Cedar Falls features Taylor Morris, a Navy Explosive Ordinance Disposal Technician. In May 2012, four months in to his first tour of duty to Afghanistan, Morris sustained profound injuries to all four of his limbs. He returned to the United States and received medical care at Walter Reed Medical Center. Morris has since returned to the Cedar Valley and is working on his college degree. The west side of the rock shows the five Sullivan brothers, Waterloo natives who were serving together on the USS Juneau and were all killed in action when it sunk in November 1942. Lt. Robert Hibbs is also portrayed on the rock. Hibbs attended the University of Northern Iowa and earned a Medal of Honor in Vietnam. The Black Hawk County Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWaterloo Rd.<br />Veterans Memorial Park<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Epic",
            "lat": "42.538064",
            "lon": "-92.449915",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Epic</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.538064,-92.449915\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Marc Moulton created this sculpture out of limestone and steel in 2003. It was commissioned by the Cedar Falls City Council, and partially funded with a grant from the Iowa Department of Cultural Affairs &#039;American Spirit&#039; project.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st St. and Franklin St.<br />Riverfront Park<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.273.8641</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cedarfalls.com/index.aspx?NID=456\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Oster Regent Theatre",
            "lat": "42.537653",
            "lon": "-92.445663",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-theater-osterregenttheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oster Regent Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.537653,-92.445663\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Cedar Falls Community Theatre is a hip, fun and happening place to be for live performance in the Midwest. Great plays are performed live on stage throughout the year. Some are musicals and many are great comedies and farces that have proven to be hits. Originally known as the Cotton Theatre, this traditional theatre was built in 1910. The Cotton Theatre is one of the best examples of commercial architecture on Cedar Fall&#039;s Main Street and the only extant theatre. It is representative of the Italian Renaissance Style, an early 20th century revival. The Cotton Theatre was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t103 Main St.<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.277.5283</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.osterregent.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Gateway to the Trails",
            "lat": "42.538166",
            "lon": "-92.445096",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-artpublic-gatewaytothetrails.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gateway to the Trails</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.538166,-92.445096\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Gateway to the Trails is a steel sculpture by Bruce White. It was installed in Peter Melendy Park in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st St. and Main St.<br />Peter Melendy Park<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.273.8641</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Larry Schlue Memorial Sound Park",
            "lat": "41.896091",
            "lon": "-92.277671",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Larry Schlue Memorial Sound Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.896091,-92.277671\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dozens of freight trains pass through downtown Belle Plaine each day and train songs are an integral part of the community. The Larry Schlue Memorial Sound Park, by John Schlue, provides an environment for listening (with parabolic whisper dishes) and creating sound (with interactive instruments), as well as experiencing the reverberations of train whistles and rumbles. This installation is part of the Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. The Larry Schlue Memorial Sound Park is located on the Iowa Valley Scenic Byway.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t711 12th St.<br />Belle Plaine, IA 52208<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Pocahontas County",
            "lat": "42.813051",
            "lon": "-94.532997",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Pocahontas County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.813051,-94.532997\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pocahontas County Freedom Rock® in Rolfe is located on the property of Dan and Roger Allen, hosts to the artist. The front features an eagle laying the flag on the rock. The back side honors Vietnam veterans, specifically a few the Allen brothers know who&#039;ve earned the purple heart. The Pocahontas County (Rolfe) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRolfe, IA 50581<br />Pocahontas County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Pocahontas Statue",
            "lat": "42.732721",
            "lon": "-94.658481",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pocahontas-historicunique-pocahontasstatue.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pocahontas Statue</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.732721,-94.658481\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 25 foot tall sculpture was conceived of by local patrons Albert Shaw and Frank Shaw and is a proud symbol of the legendary Native American woman for whom the town is named.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tElm Ave. / Highway 3<br />Pocahontas, IA 50574<br />Pocahontas County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.335.4841</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "George Daily Community Auditorium",
            "lat": "41.308882",
            "lon": "-92.639491",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-artperforming-georgedailycommunityauditorium.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Daily Community Auditorium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.308882,-92.639491\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The George Daily Auditorium has become unquestionably favored among audiences, performers, and agents alike. Running a full season of professional programming, the 695-seat, state-of-the-art facility comes alive with superior entertainment. This uniquely intimate venue is nestled in the warm and welcoming community of Oskaloosa and features top-quality productions generally reserved for larger cities.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1800 N. 3rd St.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.672.0940</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.georgedaily.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Civil War Monument: Lucas County",
            "lat": "41.014728",
            "lon": "-93.307390",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-monument-civilwarmemonument.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Civil War Monument: Lucas County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.014728,-93.307390\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72mi.</span></div>\n\t\t</div>\n\n\t\t\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCourt Ave.<br />Lucas County Courthouse<br />Chariton, IA 50049<br />Lucas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Oskaloosa Veterans Memorial",
            "lat": "41.294936",
            "lon": "-92.644328",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oskaloosa Veterans Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.294936,-92.644328\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Women&#039;s Relief Corps of Oskaloosa led the effort to install a bronze memorial tablet in the Oskaloosa City Park Square. The Oskaloosa Daily Herald, published on July 9, 1920, reported that the tablet was embellished with a handsome laurel wreath and was inscribed in plain letters: &quot;Dedicated to the Men of our Civil War, Spanish American War and World War, Soldiers, Sailors, Marines and Aviators.&quot;</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS 1st St.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "The Spanish Torpedo",
            "lat": "41.294846",
            "lon": "-92.644618",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-monument-spanishtorpedo-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Spanish Torpedo</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.294846,-92.644618\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in City Square Park, this Spanish Torpedo was taken out of the harbor of Guantanamo in 1899 by Lieutenant Commander Frank F. Fletcher of the U.S. Navy, a native of Oskaloosa. Fletcher  presented it to the city of Oskaloosa as a souvenir of the Spanish American War. It is supposed to be of the same pattern as the one which destroyed the battleship Maine. The torpedo is in position as when loaded and placed in the water.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCity Square Park<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Carroll County",
            "lat": "41.906081",
            "lon": "-95.053864",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Carroll County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.906081,-95.053864\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Carroll County Freedom Rock® in Manning features a train trestle that still operates in Manning. The Milwaukee trestle was so important during World War II that there were guards posted at it to protect it from attacks. On the east side is an eagle carrying a shield with a quote on it. The south side of the rock depicts the homefront, a police officer, a nurse, a fireman and a combine (farmer). The west side features each branch of the military. The Carroll County (Manning) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t517 East St.<br />Willow Creek Park<br />Manning, IA 51455<br />Carroll County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "McElroy Auditorium",
            "lat": "42.510029",
            "lon": "-92.373876",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McElroy Auditorium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.510029,-92.373876\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73mi.</span></div>\n\t\t</div>\n\n\t\t<p>McElroy Auditorium was built in 1919 and renovated in 1936. The auditorium&#039;s construction materials, roof design and room design make it acoustically well-suited for concerts. It has been in continuous operation since 1919, making it one of the oldest arenas in the nation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tAnsborough Ave.<br />National Cattle Congress<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.pickmcelroy.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Mahaska County",
            "lat": "41.295951",
            "lon": "-92.613237",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Mahaska County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.295951,-92.613237\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mahaska County Freedom Rock® in Oskaloosa is full of great stories of local men and women. The featured bugler is Harry L. Anderson, namesake of the local American Legion post. He was killed by a German sniper while carrying orders and mail from his commanding officer to a post in the front line during World War I. The lone woman on the rock is Theresa “Billee” Davis, the first woman from Oskaloosa to join the Women’s Army Auxiliary Corps. An entire side of the rock is dedicated to the 1st Cavalry’s involvement in liberating POWs from Manila. The Battle of Manila was one of the worst battles in the Pacific Theater of World War II. Local Harold Caldwell was a member of that 1st Cavalry and owned the land the rock is located on. Seven Mahaska County-area veterans who were highly ranked leaders are on the final side of the rock. The men featured fought in the Civil War, World War I, World War II, Korean War and Gulf War. The Mahaska County (Oskaloosa) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA Hwy. 92<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Chautauqua Mural",
            "lat": "42.421654",
            "lon": "-94.974073",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sac-artpublic-chautauquamural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chautauqua Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.421654,-94.974073\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t619 E Main St.<br />Sac City, IA 50583<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Lou Henry Hoover",
            "lat": "42.493041",
            "lon": "-92.342677",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-artpublic-louhenryhoover.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lou Henry Hoover</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.493041,-92.342677\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lou Henry Hoover was born in Waterloo in 1874. Her family moved to California when she was a child. She was one of the first female geology majors to graduate from Stanford University. At Stanford, Lou met Herbert Hoover.  They married and moved to China, where she learned to speak fluent Chinese.  Herbert was elected United States President in 1928.  Lou served as First Lady from 1929 to 1933.  \r\n\r\n\r\nArtist John Jago created this sculpture of First Lady Lou Henry Hoover in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWashington St. and W 4th St.<br />Grout Museum District<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.waterloocenterforthearts.org/publicart/publicart_downtown.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Lone Sailor",
            "lat": "42.493175",
            "lon": "-92.343627",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-artpublic-lonesailor.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Lone Sailor</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.493175,-92.343627\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Stanley Bleifeild created this sculpture/statue out of bronze in 2003. It is located in the Grout Museum District, Waterloo.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWashington St. and W Park Ave.<br />Sullivan Brothers Iowa Veterans Museum<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.waterloocenterforthearts.org/publicart/publicart_downtown.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Waterloo Community Playhouse and BlackHawk Children&#039;s Theater",
            "lat": "42.497252",
            "lon": "-92.343251",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-artperforming-waterloocommunityplayhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Waterloo Community Playhouse and BlackHawk Children&#039;s Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.497252,-92.343251\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74mi.</span></div>\n\t\t</div>\n\n\t\t<p>Waterloo Community Playhouse is proud to have served the entire Cedar Valley and beyond for nearly a century. Organized in 1916 by the Waterloo Drama League for the purpose of producing amateur theatre, approximately 30,000 patrons see their productions each year. Most public performances take place in the Hope Martin Theatre at the Waterloo Center for the Arts.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t224 Commercial St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.235.0367</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.wcpbhct.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Politically Purple",
            "lat": "42.498218",
            "lon": "-92.343371",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-artpublic-politicallypurple.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Politically Purple</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.498218,-92.343371\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Jerry Cowger created this sculpture out of painted steel.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUS Hwy. 63<br />Waterloo Center for the Arts<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.waterloocenterforthearts.org/publicart/publicart_downtown.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Women of Justice Mural",
            "lat": "43.097324",
            "lon": "-93.601282",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Women of Justice Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.097324,-93.601282\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by an unknown artist in 1910. Three female figures represent the law, justice, and vanity.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t855 State St.<br />Hancock County Courthouse<br />Garner, IA 50438<br />Hancock County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Civil War Monument: Sac County",
            "lat": "42.421742",
            "lon": "-94.988166",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sac-monument-civilwarmemorial.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Civil War Monument: Sac County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.421742,-94.988166\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sac County Civil War Monument was erected in memory of the soldiers of the war of the rebellion. On three of the four sides of the monument the names of Sac County Civil War veterans are inscribed. The Monument Committee was composed of three Civil War veterans, Phil Shaller, W. Patterson and A.B. Smith.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Memorial Park<br />Sac City, IA 50583<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Sac County",
            "lat": "42.421741",
            "lon": "-94.987180",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sac-monument-freedomrock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Sac County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.421741,-94.987180\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sac County Freedom Rock® in Sac City portrays a medic, a tunnel rat, a soldiers silhouette and a thank you to women in service. The back side of the rock shows a soldier from Sac County being rescued by two Navajo Code Talkers and a P-38 plane. Two different veteran&#039;s ashes are mixed into the paint in the stars on top of the rock. The Sac County (Sac City) Freedom Rock was completed by Greenfield-based artist Ray &quot;Bubba&quot; Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Sac City, IA 50583<br />Sac County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Waterloo Center for the Arts",
            "lat": "42.498361",
            "lon": "-92.342442",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-artmuseum-waterloocenterforthearts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Waterloo Center for the Arts</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.498361,-92.342442\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>There is something creative for the entire family at Waterloo Center for the Arts: gallery exhibits, classes, ceramics, and digital art studios, special events, gift store, ArtHouse Cafe, and the Phelps Youth Pavilion - an interactive children&#039;s museum focused on cultural and agricultural exploration! The center also holds the largest public collection of Haitian artwork in the US, Midwestern works by Grant Wood and Thomas Hart Benton, American Decorative Art and International Folk Art.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t225 Commercial St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.291.4490</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://waterloocenterforthearts.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Art and Environment: Where We Gather",
            "lat": "42.498359",
            "lon": "-92.342134",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Art and Environment: Where We Gather</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.498359,-92.342134\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artists Pam Echeverria, Scott Robert Hudson, Carol Macomber and Joan Webster-Vore worked in collaboration to design this banner installation on the River Loop Expo Plaza.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t225 Commercial St.<br />Waterloo Center for the Arts<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.waterloocenterforthearts.org/publicart/publicart_downtown.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Song Sung Blue",
            "lat": "42.497591",
            "lon": "-92.340822",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-artpublic-songsungblue.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Song Sung Blue</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.497591,-92.340822\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Jerry Cowger created this sculpture out of painted steel.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCedar St. &amp; W 3rd St.<br />RiverLoop Amphitheatre<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.waterloocenterforthearts.org/publicart/publicart_downtown.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "We Stick Together: Home, At Sea, Preserving Freedom",
            "lat": "42.495078",
            "lon": "-92.340548",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">We Stick Together: Home, At Sea, Preserving Freedom</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.495078,-92.340548\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mosaic, in the lobby of the Five Sullivan Brothers Convention Center was designed by artist Concetta Morales. It commemorates the sinking of the U.S.S Juneau and the loss of the five Sullivan brothers, of Waterloo, Iowa, during World War II.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t205 W 4th St.<br />Five Sullivan Brothers Convention Center<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.waterloocenterforthearts.org/publicart/publicart_downtown.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "YMCA Building and Statues",
            "lat": "42.496484",
            "lon": "-92.339359",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-ymcabuildingandstatues.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">YMCA Building and Statues</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496484,-92.339359\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The former YMCA is a significant example of the buildings designed by Mortimer B. Cleveland, a notable Northeast Iowa architect. The YMCA built the building in 1931 at a cost of $365,000.00. It is the largest Art Deco building in Downtown Waterloo. At the time of it&#039;s construction, the YMCA was elaborate in terms of it&#039;s size and scale for a city the size of Waterloo. The four bronze statues, facing the river, were salvaged from the second Black Hawk County Courthouse, built in 1902. Sculptor Robert DeGlass was paid $800 to create six bronze &quot;allegorical figures&quot; for the courthouse. They were that courthouse&#039;s most prominent feature, as they gazed out over the front entrance. They became known as the &quot;Green Ladies.&quot; In the early 1960s, that courthouse was demolished. Four of the &quot;Green Ladies&quot; - &quot;Agriculture,&quot; &quot;Justice,&quot; &quot;History,&quot; and Commerce&quot; - were moved to the YMCA building, and one - &quot;Peace&quot; - was moved to Upper Iowa University in Fayette. The sixth Green Lady has been lost to history. The former YMCA Building, currently used for other commercial enterprises, was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10 W 4th St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Black Hawk County Soldiers Memorial Hall",
            "lat": "42.495296",
            "lon": "-92.338366",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Black Hawk County Soldiers Memorial Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.495296,-92.338366\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Memorial Hall is a Classical Revival building that was designed by local Waterloo architect John G. Ralston. Memorial Hall was built by the Grand Army of the Republic from 1915-1916, and construction was funded by a special tax levy. It is also the best example in Waterloo (and Black Hawk County) of a building designed to be a memorial to honor veterans. The building has two stories, and the second floor houses a library that displays uniforms, artifacts, medals and weapons. Memorial Hall was added to the National Register of Historic Places in 1988.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCedar St. &amp; W 5th St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Hancock County",
            "lat": "43.095240",
            "lon": "-93.801995",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Hancock County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.095240,-93.801995\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hancock County Freedom Rock® in Britt is painted to give the illusion that the soldier kneeling was carved out of the rock with a bright blue ribbon flowing behind it stating the phrase &quot;For Those Who Gave All&quot;.‬ The back side honors Hancock County&#039;s namesake, John Hancock, with his famous signature as well as a likeness. On the top is the American flag as if it were just set on the rock. The Hancock County (Britt) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2nd St.<br />Britt, IA 50423<br />Hancock County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Chief Black Hawk Sculpture",
            "lat": "42.308613",
            "lon": "-95.043278",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chief Black Hawk Sculpture</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.308613,-95.043278\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.3mi.</span></div>\n\t\t</div>\n\n\t\t\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCrescent Park Dr.<br />Lake View, IA 51450<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Keki Me Si Metose Neniwa (We The People)",
            "lat": "42.499401",
            "lon": "-92.335596",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-artpublic-kekimemetoseneniwaweareallonepeople.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Keki Me Si Metose Neniwa (We The People)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.499401,-92.335596\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Richard C. Thomas, a New Orleans-based artist who relocated to Waterloo following Hurricane Katrina, was commissioned to create this 72 foot wide mural that tells the story of Waterloo&#039;s history through collaged imagery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE 4th St.<br />Public Parking Ramp<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.waterloocenterforthearts.org/publicart/publicart_downtown.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "View of Waterloo",
            "lat": "42.497834",
            "lon": "-92.336118",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">View of Waterloo</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.497834,-92.336118\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa, who has painted over 40 murals in the Midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t118 E 4th St.<br />Waterloo, IA 50703<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Cityscape",
            "lat": "42.498581",
            "lon": "-92.334572",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cityscape</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.498581,-92.334572\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Jim Benedict created this sculpture/archway in 2004 out of steel. It is a part of the Main Street Waterloo Art Collection.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tLafayette St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.waterloocenterforthearts.org/publicart/publicart_downtown.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "From Fields to Table",
            "lat": "42.499110",
            "lon": "-92.334601",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">From Fields to Table</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.499110,-92.334601\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Jake Jacobs created this mural in 1995. Paint on wood.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE 4th St. and Lafayette St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.waterloocenterforthearts.org/publicart/publicart_downtown.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Welcome to Britt Mural",
            "lat": "43.098398",
            "lon": "-93.802074",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Welcome to Britt Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.098398,-93.802074\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Britt, IA 50423<br />Hancock County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chief Black Hawk Statue",
            "lat": "42.306867",
            "lon": "-95.046877",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chief Black Hawk Statue</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.306867,-95.046877\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Black Hawk, the Sauk war chief, earned a place in history when, in 1832, he led approximately 900 Sauk from Iowa territory back into Illinois, where they had previously been resettled. The Chief Black Hawk Statue in Black Hawk State Park was installed in the 1930s as part of a New Deal relief program supporting arts and culture. It was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCrescent Park Dr.<br />Black Hawk State Park<br />Lake View, IA 51450<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Quill",
            "lat": "42.500824",
            "lon": "-92.334035",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Quill</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.500824,-92.334035\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Marc Moulton created this sculpture out of steel in 2004. It is located on the Northeast side of Lincoln Park in Waterloo, and features an electronic light for night viewing.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Park Ave. and Franklin St.<br />Lincoln Park<br />Waterloo, IA 50703<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.waterloocenterforthearts.org/publicart/publicart_downtown.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Crest Area Theatre",
            "lat": "41.072296",
            "lon": "-94.376682",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Crest Area Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.072296,-94.376682\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76mi.</span></div>\n\t\t</div>\n\n\t\t<p>Crest Area Theatre is an all-ages community theatre, operated by volunteers. The group was founded as Creston Community Theatre, Inc. in 1974. They often perform at the Southwestern Community College Performing Arts Center at the Southern Prairie YMCA.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1501 W Townline St.<br />Southwestern Community College<br />Creston, IA 50801<br />Union County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Blue Grass Palace Mural",
            "lat": "41.071904",
            "lon": "-94.376908",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/union-publicart-bluegrasspalacemural.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Blue Grass Palace Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.071904,-94.376908\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. “Bluegrass Palace” depicts the Bluegrass Palace, constructed in Creston in 1889. Residents of 18 counties from the Bluegrass League of Southwest Iowa banded together to build the Bluegrass Palace at the Union County Fairgrounds. It was decorated with native grasses. Exhibits inside the Bluegrass Palace featured local agriculture and manufactured products. Railroads even ran special trains for visitors to the Bluegrass Palace! The mural also depicts the Creston Depot and a train, showcasing the town’s past as a railroad division point.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1201 W Townline St.<br />Southern Prairie YMCA<br />Creston, IA 50801<br />Union County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Bachmann Fine Arts Center",
            "lat": "42.727278",
            "lon": "-92.482444",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bachmann Fine Arts Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.727278,-92.482444\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located on the ground floor of the Fine Arts Center on the Wartburg College campus in Waverly, this art gallery features exhibits containing work from local, national, and international artists.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Wartburg Blvd.<br />Wartburg College<br />Waverly, IA 50677<br />Bremer County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 352.8386</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.wartburg.edu/gallery/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Neumann Auditorium",
            "lat": "42.727631",
            "lon": "-92.480978",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Neumann Auditorium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.727631,-92.480978\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Neumann Auditorium is the largest auditorium on Wartburg College&#039;s campus. It was constructed in 1961 and holds over 1,200 people. It is the home of the Wartburg Choir, one of the top vocal ensembles in the nation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Wartburg Blvd.<br />Wartburg College<br />Waverly, IA 50677<br />Bremer County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.352.8691</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.wartburg.edu/na/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Bust of Dr. Jesse Wasson",
            "lat": "42.315231",
            "lon": "-92.192744",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-monument-bustofdrjessewasson.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bust of Dr. Jesse Wasson</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.315231,-92.192744\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bust honors Dr. Jesse Wasson, the founder of the city of La Porte, Iowa. Wasson purchased property and set up a store room in La Porte in 1855.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 Main St.<br />La Porte City, IA 50651<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Union County",
            "lat": "41.045332",
            "lon": "-94.380530",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Union County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.045332,-94.380530\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Union County Freedom Rock® contains four unique tributes. The north side of the rock has a tribute to the Rainbow Division, the 42nd Infantry. Many men in the Rainbow Division left for World War I from the Creston Depot. The east side of the rock shows the attack at Pearl Harbor and Doris “Dorie” Miller shooting down Japanese fighter planes. Miller served as a cook on the USS West Virginia. When the USS West Virginia was attacked at Pearl Harbor, Miller went above and beyond the call of duty and began firing anti-aircraft machine guns. The other image on the east side of the rock is a Korean War scene featuring a Jeep of that era still in use in Union County. The west side of the rock represents the Vietnam War with Huey helicopters and a duster tank. That side of the rock also commemorates the War on Terror, showing a stealth bomber, a Humvee and a Marine. The Marine is Lance Corporal C.J. Miller who was born in Creston and graduated from Nodaway Valley High School in Greenfield. Miller was killed in Iraq on December 11, 2006 and is buried in Creston. The Union County (Creston) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tNew York Ave.<br />Creston, IA 50801<br />Union County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Clear Lake Arts Center",
            "lat": "43.135818",
            "lon": "-93.380728",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrocordo-artmuseum-clearlakeartscenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clear Lake Arts Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.135818,-93.380728\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clear Lake Arts Center was built in 2002 at its first location at 213 Main Ave. The original building was set for demolition in 2005, leading to the center moving to its current location at 17 S 4th St. in 2007. The Clear Lake Arts Center offers collections from professional artists, community art, and even offers some art classes as well.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t17 S 4th St.<br />Clear Lake, IA 50428<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.357.1998</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://clartscenter.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Daily Bread",
            "lat": "43.070131",
            "lon": "-94.226483",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Daily Bread</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.070131,-94.226483\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Robert Francis White created this mural for the US Post Office in 1941. The project was part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings. The mural, Daily Bread, is now exhibited at the Algona Public Library.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210 N. Phillips St.<br />Algona Public Library<br />Algona, IA 50511<br />Kossuth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 510.642.5987</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://livingnewdeal.berkeley.edu/projects/algona-public-library-daily-bread-mural-algona-ia/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Three Stars Plaza",
            "lat": "43.140014",
            "lon": "-93.390955",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-greatplace-threestarsplaza.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Three Stars Plaza</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.140014,-93.390955\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Three Stars Plaza is a public work of art dedicated to the three rock and roll stars that died in a plane crash in 1959. J.P. Richardson, Ritchie Valens, and Buddy Holly are represented by the three records on top of the spindle. Their last performance before their untimely death was at the historic Surf Ballroom across in Clear Lake. Visitors may listen to sound recordings programmed into the 15 foot tall sculpture, which represents a record player spindle stacked with three 45 rpm records.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t474 N Shore Dr.<br />Clear Lake, IA 50428<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.357.5267</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofclearlake.com/pView.aspx?id=2543andcatid=29\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "9/11 Steel Memorial",
            "lat": "43.139096",
            "lon": "-93.378936",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-monument-911steel.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">9/11 Steel Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.139096,-93.378936\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The 9/11 Steel Memorial is a display made of a steel artifact that was salvaged from the attacks on the World Trade Center in New York City on September 11, 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t112 N 6th St.<br />Clear Lake Fire Station<br />Clear Lake, IA 50428<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Hans Christan Andersen&#039;s the Little Mermaid and Sculpture Garden",
            "lat": "41.629825",
            "lon": "-95.072522",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/audubon-artpublic-hanschristianandersenlittlemermaid-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hans Christan Andersen&#039;s the Little Mermaid and Sculpture Garden</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.629825,-95.072522\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Omaha artist Troy Mueller created a series of bronze sculptures interpreting the stories of Danish author Hans Christian Andersen. The Little Mermaid is a replica of the famous statue located in Copenhagen, Denmark. The statue was created in 1978. It was recently recast in bronze so it can remain outside all year around.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310 N Main St.<br />Mermaid Park<br />Kimballton, IA 51543<br />Audubon County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.764.6161</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.danishvillages.com/attractions/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Audubon County",
            "lat": "41.629839",
            "lon": "-95.071837",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Audubon County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.629839,-95.071837\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Audubon County Freedom Rock® in Kimballton honors the strong Danish heritage of the community, which is also home to a replica Little Mermaid statue by Hans Christan Andersen. The rock features the Little Mermaid holding the American and Danish flags which represents the many Danish-American soldiers from the area that served the country. There are many unique sites in the county featured, including the Heritage Rose Garden in Gray, Albert the Bull, the Plow in the Oak, and the Tree in the Middle of the Road. In addition, the rock depicts the county&#039;s namesake, John James Audubon, who created &quot;The Birds of America&quot;. The Audubon County (Kimballton) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t150 Esbeck St.<br />Kimballton, IA 51543<br />Audubon County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "New Century Art Guild",
            "lat": "41.628700",
            "lon": "-95.072927",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/audubon-artpublic-newcenturyartguild-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">New Century Art Guild</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.628700,-95.072927\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The New Century Art Guild offers over 4000 square feet of studio and gallery space, and promotes artistic culture and the development of art careers in the Midwest. They have a special interest in military veterans wishing to make new careers in visual art.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t117 N Main St.<br />Kimballton, IA 51543<br />Audubon County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://newcenturyartguild.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Keokuk County",
            "lat": "41.401277",
            "lon": "-92.354907",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Keokuk County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.401277,-92.354907\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">79.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Keokuk County Freedom Rock® in What Cheer  features the Grand Army of the Republic (GAR). The GAR was a fraternal organization composed of the veterans of the Union Army, Navy, Marines and the Revenue Cutter Service who served in the Civil War for the Union. There were many GAR veterans who settled back in Iowa after the war, and Keokuk County was no exception. In fact, there was even one man who had the honor of escorting President Abraham Lincoln in and out of the capitol. \r\n\r\nOn the back side is a tribute to some local veterans who represent a few different eras of service. Ronald Shirlaw had distinguished service in both World War II and Korea. He earned the Silver Star, two Distinguished Flying Crosses, a Bronze Star and Prisoner of War Medal. Ronald was captured by communist forces after he was shot down over North Korea and was held as a Prisoner of War until his release during Operation Big Switch at the end of the war. Ronald is represented by his image and a POW scene of his plane crash landing in the background. Gary Ferns, a decorated Vietnam veteran, retired after 21 years of service in the US Army as a Special Forces officer. He earned the Silver Star, Bronze Star and Purple Heart. He is represented by his image along with a Green Beret in action and a Vietnam background. Emery Kerr was a medic in World War II and he is represented by an image of him in action in Sicily.\r\n\r\nThe Keokuk County (What Cheer) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2016.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t109 N Barnes St.<br />What Cheer, IA 50268<br />Keokuk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Meredith Willson Footbridge",
            "lat": "43.149675",
            "lon": "-93.194549",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Meredith Willson Footbridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.149675,-93.194549\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">80.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This footbridge was named in honor of Mason City native, Meredith Willson author of &quot;The Music Man&quot;, &quot;It&#039;s Beginning to Look a lot Like Christmas&quot; and more. The bridge provides a scenic view that spans over Willow Creek and connects River Heights Drive and South Connecticut Ave.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Connecticut Ave.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.422.1663</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Charles MacNider Art Museum",
            "lat": "43.149568",
            "lon": "-93.196018",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-artmuseum-charlesmacniderartmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles MacNider Art Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.149568,-93.196018\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">80.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Charles H. MacNider Museum is a non-profit, municipally owned institution conceived in 1964 and opened by 1966 in Mason City, Iowa. The museum exhibits and interprets a permanent collection of American art; temporary exhibitions of art; provides art classes for all ages; offers enriching arts programs; and maintains an art library.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t303 2nd St. SE<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.421.3666</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://macniderart.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Mason City Community Theatre",
            "lat": "43.149692",
            "lon": "-93.199125",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mason City Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.149692,-93.199125\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">80.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mason City Community Theatre is a local group devoted to the production of live theatre for all of Northern Iowa. The theatre puts on productions of plays, musicals, and all other kinds of live theatre. They also have an Independent Film series in the works.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t215 S Delaware Ave.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.424.6424</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "River City Sculptures on Parade",
            "lat": "43.152250",
            "lon": "-93.201900",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-artpublic-sop-circleoffriends.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">River City Sculptures on Parade</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.152250,-93.201900\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81mi.</span></div>\n\t\t</div>\n\n\t\t<p>River City Sculptures on Parade is a non-profit group with a vision to bring a significant display of public art to Mason City. Artworks on display through change annually. The sculptures can be seen on a walking tour that begins at Central Park. The walking tour is a looping route that leads tourists through the Cultural Crescent and back to the central core of Mason City.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCentral Park<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.423.5724</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.sculpturesonparade.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Spirit of the American Doughboy",
            "lat": "43.154386",
            "lon": "-93.202870",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spirit of the American Doughboy</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.154386,-93.202870\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>After World War I, more than 100 copies of &quot;Spirit of the American Doughboy&quot; were installed throughout the United States. Two were installed in Iowa -- one in Mason City and another in Mechanicsville. The sculpture was created by Ernest Moore Viquesney (1876-1946), a Spanish-American War veteran who may have worked with Mount Rushmore sculptor Gutzon Borglum. The Doughboy at Mason City was erected at the old county courthouse by the American Hellenic Education and Patriotic Association and dedicated to the memory of Cerro Gordo County&#039;s World War I dead on June 24, 1934. It was moved to the site of the current courthouse in 1960 and restored in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Washington Ave.<br />Cerro Gordo County Courthouse<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Stebens Children&#039;s Theatre",
            "lat": "43.157774",
            "lon": "-93.199608",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stebens Children&#039;s Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.157774,-93.199608\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Stebens Children&#039;s Theatre is a non-profit organization that works to teach students, from middle-school to high school, about theatre. They have 6 tiered classes for children of all levels of experience to participate and learn about theatre performance, production, and creation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t616 N. Delaware Ave<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.424.9802</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"www.netconx.net/~stebens/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Kossuth County",
            "lat": "43.064182",
            "lon": "-94.425887",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/kossuth-monument-freedomrock-3.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Kossuth County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.064182,-94.425887\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kossuth County Freedom Rock® was designed to fit the shape of the rock.  Greenfield-based artist Ray “Bubba” Sorensen II said the shape of the rock made him think of Iwo Jima so he painted an iconic image of Marines and a Navy Medic raising the flag after the Battle of Iwo Jima. This scene is paired with a Winston Churchill quote: “Never was so much owed by so many to so few.” The back of the rock honors Gold Star Mothers, honoring mothers who have lost their children in service to the nation. The plane flying above the funeral scene is a Bamboo Bomber, because a gentleman in Whittemore had a restored Bamboo Bomber and did flyovers. The smaller sides of the rock are adorned with an eagle and a flag. The Whittemore (Kossuth County) Freedom Rock was completed in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBroad St.<br />Whittemore, IA 50598<br />Kossuth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Crawford County",
            "lat": "41.890022",
            "lon": "-95.232339",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Crawford County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.890022,-95.232339\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Crawford County Freedom Rock® memorializes several local servicemen. Brothers Casey and Justin Byers. Iowa National Guardsman, Sergeant Casey Byers was killed in Iraq in June 2005. Two days before Casey was to be eulogized, his brother, Iowa National Guardsman Specialist Justin Paul Byers, was struck and killed by a pick-up on a local highway. Both were interred at Arlington National Cemetery. Manilla native, Staff Sergeant James A. Justice was killed in Iraq in April 2011 when his helicopter came under small-arms fire. The World War II Destroyer USS Sims was attacked by all directions from the Japanese. When it was attacked, it exploded and then sank, killing Manilla native John Christensen. The rock is completed with a US Military roundel, an Air Force Raptor, and a roundhouse that symbolizes Manilla’s rich railroad history. The Crawford County (Manilla) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St. and 5th St.<br />Manilla, IA 51454<br />Crawford County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Cass County Veterans Memorial",
            "lat": "41.404488",
            "lon": "-95.013490",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-monument-casscountyveteransmemorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cass County Veterans Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.404488,-95.013490\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cass County Veterans Memorial was dedicated on July 10, 1919, to commemorate Civil War, Spanish-American War and World War I veterans. This monument was designed by architect Edward A. Pryor of Postville and constructed at a cost of $22,984. It stands 62 feet high with Lady Liberty standing at the top. Four bronze soldiers and sailors stand on each corner of the monument, and plaques list the names of Cass County veterans.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tAtlantic City Park<br />Atlantic, IA 50022<br />Cass County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Palace Theatre",
            "lat": "42.167560",
            "lon": "-92.026087",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-theater-palacetheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Palace Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.167560,-92.026087\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Palace Theatre opened in 1915 with silent movies and live performances. In 1932, the interior of the Palace was destroyed by fire and it was rebuilt with a Spanish motif. The theatre closed in 1972, and the building was used as a bakery, arcade, pawn shop and gym. In 1997, the Area Community Theatre Inc. (ACT I) purchased the theatre. After a massive community fundraising effort to complete renovations, the theatre was re-opened in November 1999 with a dual purpose of showing movies and providing a home stage for community theatre group ACT I&#039;s live performances.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210 W 4th St.<br />Vinton, IA 52349<br />Benton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.472.9958</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.vintonpalace.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Minne Estema Mural",
            "lat": "42.167455",
            "lon": "-92.024429",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-artpublic-minneestema.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Minne Estema Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.167455,-92.024429\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa, who has painted over 40 murals in the Midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 W 4th St.<br />Vinton, IA 52349<br />Benton County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Buddy Holly, Ritchie Valens, and Big Bopper Crash Site Memorial",
            "lat": "43.220332",
            "lon": "-93.374300",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-monument-buddyhollyritchievalensandbigboppercrashsitememorial.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buddy Holly, Ritchie Valens, and Big Bopper Crash Site Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.220332,-93.374300\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Buddy Holly, Ritchie Valens, and Big Bopper Crash Site Memorial was created to honor the three musicians and pilot who died in a tragic plane crash on February 3rd, 1959. The memorial has a larger than life replica of Buddy Holly&#039;s famous glasses, and a 1/2 mile trail leading to the exact spot the plane went down. At the crash site, they have placed a stainless steel guitar and three records in remembrance of the three musicians.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tGull Ave. and 315th St.<br />Clear Lake, IA 50428<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.357.2159</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Odebolt Veterans Memorial",
            "lat": "42.298907",
            "lon": "-95.245853",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Odebolt Veterans Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.298907,-95.245853\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Veterans&#039; Memorial Monument is located at the Odebolt Cemetery and honors 939 veterans from the Odebolt area who served between 1900-2000 in World War I, World War II, the Korean War and the Vietnam War.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3300 S Des Moines St.<br />Odebolt Cemetery<br />Odebolt, IA 51458<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Monument Circle",
            "lat": "42.312146",
            "lon": "-95.250364",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Monument Circle</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.312146,-95.250364\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>W.P. Adams of Odebolt donated the Monument Circle as a World War I veterans&#039; memorial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2nd St. and Main St.<br />Odebolt, IA 51458<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Spanish-American War Cannon Barrel",
            "lat": "43.262750",
            "lon": "-93.638611",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winnebago-monument-spanishamericanwarcannon.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spanish-American War Cannon Barrel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.262750,-93.638611\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The original cannon barrel dated to 1869. Engraved in Spanish “Fundicion de Artilleria,” the cannon was manufactured in Seville, Spain, commissioned by royal decree by Spain’s Queen Isabella II. During the Spanish-American War, the cannon was captured in 1898 at the Spanish Fort San Felipe, located in Manila Bay, Philippines. The original barrel was obtained by Forest City’s David Secor in 1899 from the United States government, honoring Winnebago County Spanish-American War Veterans. In 1942, the original cannon barrel was donated to the World War II war effort, via a scrap metal drive. The barrel weighed 2,070 lbs. of solid brass. Today on the Winnebago County Courthouse lawn, the cannon barrel on display is a replica of the original.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t126 S Clark St.<br />Winnebago County Courthouse<br />Forest City, IA 50436<br />Winnebago County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Civil War Soldier Monument and Fountain",
            "lat": "43.263008",
            "lon": "-93.638654",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winnebago-monument-civilwarsoldier.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Civil War Soldier Monument and Fountain</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.263008,-93.638654\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Union Soldier monument was purchased by the Women’s Relief Corps (WRC) in 1899 and was unveiled and dedicated in 1900. The local WRC chapter was founded in 1891 and was committed to caring for Civil War Union Soldiers, extending aid to their widows and orphans, and honoring the heroic dead. 151 Civil War soldiers are buried in Winnebago County. The statue and fountain were separate pieces crafted by J. L. Mott Iron Works of Trenton, New Jersey. The soldier cost $155, and the fountain with French Victorian design cost $700. Only one other combination identical to this Civil War Soldier Monument and Fountain exists nationwide. Per the Smithsonian Institute, 124 Union and 26 Confederate Soldier statues are in existence today. Few grace courthouse squares.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t126 S Clark St.<br />Winnebago County Courthouse<br />Forest City, IA 50436<br />Winnebago County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Sherman Tank",
            "lat": "43.263243",
            "lon": "-93.638565",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winnebago-monument-shermantank.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sherman Tank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.263243,-93.638565\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Following World War II, Forest City’s American Legion Commander, Bud Totten, suggested that local veteran Dave Anderson write a letter to the Federal Government to inquire about what Forest City might receive in response to the community’s donation of its original Spanish-American War cannon 10 years earlier. Totten heard that the government had a surplus of tanks after World War II, and he suggested that Anderson specifically ask for a tank for the Forest City community. Anderson was shocked by Totten’s bold request, but the government obliged, under one condition, that Forest City would pay $400 for the tank to be shipped to Des Moines by freight train. Anderson wrote another letter, challenging that stipulation with a reminder that Forest City had sacrificed its historic cannon. The government agreed, and the National Guard then delivered the Sherman Tank directly to Forest City. In 1957, the American Legion Post 121 dedicated the Sherman Tank. The ceremony was led by Brigadier General Joseph M. Colby of nearby Lake Mills, Iowa, who had contributed to the M-4 Sherman Tank’s design. Forest City’s Sherman Tank was completely demilitarized after September 11, 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t126 S Clark St.<br />Winnebago County Courthouse<br />Forest City, IA 50436<br />Winnebago County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Waldorf College Art Gallery",
            "lat": "43.262952",
            "lon": "-93.641710",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Waldorf College Art Gallery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.262952,-93.641710\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Waldorf College Art Gallery, located in the Campus Center, is a contemporary art gallery showcasing many different exhibits throughout the school year.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t106 S 6th St.<br />Campus Center, Waldorf College<br />Forest City, IA 50436<br />Winnebago County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.585.8210</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.waldorf.edu/Residential/Fine-Arts/Art-Gallery\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Waldorf College Theatre",
            "lat": "43.262953",
            "lon": "-93.640507",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Waldorf College Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.262953,-93.640507\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Waldorf College Theatre performs numerous works throughout the year. One focus of the theatre is it&#039;s dedication to performing a work of Shakespeare each fall as part of its season which includes the use of several of Shakespeare&#039;s staging practices such as universal lighting and live acoustic music. Performances are held at the Smith Theatre in Voss Hall on the Waldorf College campus.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t106 S 6th St.<br />Voss Hall, Waldorf College<br />Forest City, IA 50436<br />Winnebago County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.585.8288</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.waldorf.edu/Residential/Fine-Arts/Theatre\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Evening on the Farm Mural",
            "lat": "43.265761",
            "lon": "-93.638457",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winnebago-artpublic-eveningonthefarm.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Evening on the Farm Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.265761,-93.638457\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1932, Franklin Roosevelt said, &quot;Give me your help not to win votes alone, but to win in this crusade to restore America to its own people.&quot; President Roosevelt launched the New Deal to lift the U.S. from the chains of the Great Depression. As part of the New Deal, the U.S. Treasury Department commissioned mural art to enliven Post Office walls. Forest City was thrilled to be selected for a mural. &quot;Evening on the Farm&quot; (1942) by Orr C. Fisher is among the most notable Post Office murals nationwide, with its rich vivid colors and lively activity depicted by the farm family and animals in this scene.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t312 N Clark St.<br />U.S. Post Office<br />Forest City, IA 50436<br />Winnebago County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.585.3090</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Gravesite of Carl King - Oldest Civil War Soldier",
            "lat": "41.097566",
            "lon": "-92.519966",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-cemetery-gravesiteofoldestcivilwarsoldier-12b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gravesite of Carl King - Oldest Civil War Soldier</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.097566,-92.519966\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Curtis King, age 80, was a member of the Iowa 37th Infantry Regiment, also known as the &quot;Graybeard Regiment.&quot;  He is believed to be the oldest Civil War soldier.  He served several months and was discharged in March 1863.  He farmed near Chillicothe and had 3 wives and 21 children.  This memorial has his tombstone and a plaque and is located on the south side of US Highway 63.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUS Hwy. 63<br />Chillicothe, IA 52548<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Mooney Art Collection",
            "lat": "43.065759",
            "lon": "-92.676982",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mooney Art Collection</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.065759,-92.676982\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mooney Art Collection is located in the Charles City Public Library. The gallery is from Arthur Mooney&#039;s previously private collection. The collection was donated when he died in 1941 but wasn&#039;t made public until 1998. It is now on permanent display in the Charles City Public Library. The collection includes a Rembrandt print and several other notable works.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t106 Milwaukee St.<br />Charles City Public Library<br />Charles City, IA 50616<br />Floyd County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.257.6319</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.charles-city.lib.ia.us/artgal\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Charles City Arts Center",
            "lat": "43.068590",
            "lon": "-92.677203",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/floyd-artmuseum-charlescityartcenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles City Arts Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.068590,-92.677203\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Owned by the city of Charles City and operated by the Charles City Arts Council, this art center is free and open to the public. Funding is provided by memberships, grants, and public donations. Offers art exhibits, classes, workshops, and more.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t398 N Main St.<br />Carnegie Library Building<br />Charles City, IA 50616<br />Floyd County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.228.6284</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.charlescityarts.com/index.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Charles City Public Art Collection",
            "lat": "43.068809",
            "lon": "-92.678237",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/floyd-artpublic-charlescitypublicartcollection.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles City Public Art Collection</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.068809,-92.678237\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Charles City boasts a collection of outdoor sculpture placed along the Cedar River riverwalk, in parks and by various buildings throughout the community.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 N. Main St.<br />Charles City, IA 50616<br />Floyd County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.228.2335</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.charlescitychamber.com/documents/PublicArtFlyer06.pdf\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Donna Reed Center for the Performing Arts",
            "lat": "42.016573",
            "lon": "-95.354883",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/crawford-artperforming-donnareedcenterforperformingarts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Donna Reed Center for the Performing Arts</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.016573,-95.354883\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Donna Reed Center for the Performing Arts opened in 1914 as the Germania Opera House, and was later known as the Ritz Theatre. The building was purchased by the Donna Reed Foundation in 1988 and converted into the venue it is today. The theatre seats 550 and offers films as well as live concerts and theatrical presentations year round.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1305 Broadway<br />Denison, IA 51442<br />Crawford County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.263.3334</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://donnareed.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Honey Creek State Park Resort Integrated Artworks",
            "lat": "40.869877",
            "lon": "-92.918158",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Honey Creek State Park Resort Integrated Artworks</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.869877,-92.918158\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">88.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Department of Natural Resources (IDNR) commissioned artists Brad Kaspari of Minneapolis, MN, and Carolyn Braaksma of Denver, CO, to create a series of artworks, integrated throughout this resort.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t12633 Resort Dr.<br />Lake Rathbun<br />Moravia, IA 52571<br />Appanoose County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/honey-creek-state-park-resort\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Indian Harvest Mural",
            "lat": "41.333520",
            "lon": "-92.206048",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Indian Harvest Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.333520,-92.206048\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">88.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by Richard Olsen in 1940, this mural was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 West Washington St.<br />U.S. Post Office<br />Sigourney, IA 52591<br />Keokuk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Keokuk County Courthouse",
            "lat": "41.333293",
            "lon": "-92.204499",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Keokuk County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.333293,-92.204499\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">88.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>After the Keokuk County seat was returned to Sigourney in 1856, the courthouse was constructed in 1911. The courthouse is constructed with Bedford limestone and its central tower rises above the surrounding business district and the historic trees on the courthouse and library grounds donated by poet Lydia Huntley Sigourney. The trees were planted in appreciation of the final decision by the government to establish the county seat in Sigourney. Inside the courthouse you will find six murals painted by C.E. Rang of Chicago in 1912. They were rediscovered and restored in 1983 by Des Moines artist Sven Paulson. The Keokuk County Courthouse was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 S Main St.<br />Sigourney, IA 52591<br />Keokuk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Norway Baseball Mural",
            "lat": "41.902588",
            "lon": "-91.920559",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-artpublic-norwaybaseballmural.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Norway Baseball Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.902588,-91.920559\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">88.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa, who has painted over 40 murals in the Midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Railroad St.<br />Norway, IA 52318<br />Benton County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Veterans Memorial Park",
            "lat": "42.809823",
            "lon": "-92.257843",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Veterans Memorial Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.809823,-92.257843\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89mi.</span></div>\n\t\t</div>\n\n\t\t<p>Veteran&#039;s Memorial Park is a great tribute to veterans. It features three flag poles and several full size statues.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t103 N Main St.<br />Tripoli, IA 50676<br />Bremer County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Rural Free Delivery Mural",
            "lat": "40.740145",
            "lon": "-93.746154",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/decatur-artpublic-ruralfreedeliverymural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rural Free Delivery Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.740145,-93.746154\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by A. Criss Glasell in 1938, this mural was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t109 NE 2nd St.<br />Leon, IA 50144<br />Decatur County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Decatur County",
            "lat": "40.740926",
            "lon": "-93.746554",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Decatur County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.740926,-93.746554\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Decatur County Freedom Rock® is a thank you to veterans from across all eras, portrayed by a group of soldiers running together – a female soldier carrying the national banner and a Revolutionary War and World War II soldier both carrying their rifles. The drama in the scene is increased with an aircraft carrier, submarine, jet and helicopter in the background. Area Korean War veteran Master Sergeant D. Darrell Johnston is featured on the south side of the rock. Part of Johnston’s citation for earning his medals reads: &quot;...Sergeant Johnston unhesitatingly exposed himself to the deadly enemy fire, charging boldly toward the critical enemy position and firing his weapon with extreme accuracy. He then unleashed a barrage of grenades and returned to friendly elements to replenish his depleted supply of ammunition. He advanced on the enemy bunker once again and destroyed it, thus enabling his comrades to continue the attack and ultimately secure the objective.&quot; The other two sides of the rock honor those who paid the ultimate price serving the country and those who served time as POW/MIA. The Decatur County (Leon) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Main St. and NE 3rd St.<br />Courthouse Square<br />Leon, IA 50144<br />Decatur County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Volunteer Fire Department Mural",
            "lat": "40.758008",
            "lon": "-93.320004",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wayne-artpublic-volunteerfiredepartmentmural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Volunteer Fire Department Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.758008,-93.320004\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by Marion Gilmore in 1942, this mural was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t215 West State St.<br />U.S. Post Office<br />Corydon, IA 50060<br />Wayne County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 510.642.5987</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Cass County",
            "lat": "41.305589",
            "lon": "-95.078513",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Cass County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.305589,-95.078513\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cass County Freedom Rock® focuses on the area’s rich Civil War history. The rock features the Reverend Hitchcock’s House, a stop on the Underground Railroad and today a National Historic Landmark. When the Civil War broke out, sparsely populated Cass County raised an entire company of men: Company I of the 23rd Infantry. The image of Company I is made to look like photos of the men riding their horses down what is now known as the White Pole Road. Major Belle Reynolds is also featured on the rock.  She worked as a teacher in Cass County before marrying and joining her husband in the Civil War.  Reynolds earned an officer’s commission, being named a Major after the Battle of Shiloh.  She was the only woman to officially be given rank in the Union Army during the Civil War. The Cass County (Lewis) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Main St. and 5th St.<br />Lewis, IA 51544<br />Cass County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Wayne County",
            "lat": "40.757428",
            "lon": "-93.318569",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Wayne County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.757428,-93.318569\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wayne County Freedom Rock® is dedicated to wars of the past. The road facing side of the rock showcases the World War I monument that is next to the rock. Veterans of the Civil War, Mexican American War and World War I are honored with a ribbon stating “May we never forget the service in wars past.” The other side of the rock is dedicated to &quot;Mad&quot; Anthony Wayne, the namesake of Wayne County and a famous officer in the Revolutionary War. Battle after battle Wayne showed intense leadership and earned his nickname by never being willing to surrender. At the Battle of Germantown, Wayne led his forces against the British and his soldiers pushed ahead of other American units, and, according to his report, when the British retreated, they &quot;pushed on with their bayonets – and took ample vengeance.&quot; The Wayne County (Corydon) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Jefferson St. and S Franklin St.<br />Corydon, IA 50060<br />Wayne County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Buddy Monument",
            "lat": "42.635811",
            "lon": "-95.197874",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buddy Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.635811,-95.197874\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Chautauqua Park boasts a World War I statue unique to the Midwest: a &quot;Buddy&quot; Monument sculpted by an Italian-born American sculptor named Joseph P. Pollia. In 1925, Pollia created a statue called &quot;My Buddy&quot; for the Richmond Hill World War Memorial at Forest Park in Queens, New York City. At least three replicas of the statue were made and installed: one in Storm Lake; another in Tarrytown, New York; and a third in Franklin, Massachusetts. The Buddy Monument at Storm Lake was dedicated on May 29, 1927, by the Storm Lake Service Star Legion. According to the Sioux City Journal, 500 to 600 people attended the dedication, in spite of inclement weather.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Lakeshore Dr.<br />Chautauqua Park<br />Storm Lake, IA 50588<br />Buena Vista County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Farmer Feeding Industry Mural",
            "lat": "41.656087",
            "lon": "-95.319037",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-artpublic-thefarmerfeedingindustry.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Farmer Feeding Industry Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.656087,-95.319037\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by Richard Gates in 1937, this mural was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1290 7th St.<br />U.S. Post Office<br />Harlan, IA 51537<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Witter Gallery",
            "lat": "42.644751",
            "lon": "-95.197807",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Witter Gallery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.644751,-95.197807\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Founded in 1972 and dedicated to George Witter, this gallery is an exhibiting and educational center for the arts through support and promotion.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t609 Cayuga St.<br />Storm Lake, IA 50588<br />Buena Vista County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.732.3400</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thewittergallery.org/about.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Buena Vista University Art Gallery",
            "lat": "42.641354",
            "lon": "-95.210278",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buena Vista University Art Gallery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.641354,-95.210278\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Buena Vista University Art Gallery is located in the Social Science and Art Hall of Buena Vista University. Along with student senior exhibitions, the space is designed to be used for exhibitions by professional artists and shows by Iowa high school artists. BVU Theatre has also held performances in the gallery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t610 W 4th St.<br />Buena Vista University<br />Storm Lake, IA 50588<br />Buena Vista County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.bvu.edu/academics/commarts/art/bvu-art-gallery.dot\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Corning Center for the Fine Arts",
            "lat": "40.989341",
            "lon": "-94.734276",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adams-artmuseum-corningcenterforthefinearts.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Corning Center for the Fine Arts</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.989341,-94.734276\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Corning Center for the Fine Arts features rotating exhibits, classes, and art residencies. The Center&#039;s Artist in Residency Program is one of only 80 in the United States and the only such program in Iowa that incentives artists to live and practice in Corning, Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t706 Davis Ave.<br />Corning, IA 50841<br />Adams County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.322.4549</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.corningfinearts.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Corning Opera House Cultural Center",
            "lat": "40.990066",
            "lon": "-94.734225",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adams-nhr-corningoperahouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Corning Opera House Cultural Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.990066,-94.734225\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1902, the Corning Opera House was established as the primary venue for performing arts in Corning. The Corning Opera House offered a variety of theatrical productions to residents of Corning and the surrounding area for over thirty years, serving as a community gathering place and the center of the town&#039;s cultural life. Its construction was noted as a culminating achievement in Corning&#039;s social history. It has been called &quot;an ornament to the city&quot; which shows its importance as a source of civic pride. The Corning Opera House was fully restored in 2012 and now functions as a Cultural Center for the community and features performances and events year round.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t800 Davis Ave.<br />Corning, IA 50841<br />Adams County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.418.8037</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://corningoperahouse.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Adams County",
            "lat": "40.988208",
            "lon": "-94.733617",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adams-artpublic-corningfreedomrock-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Adams County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.988208,-94.733617\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Adams County Freedom Rock® in Corning honors all veterans with a 34th Infantry &quot;Red Bull&quot; Soldier, important to the history of the county and state. An aircraft carrier and AC 130 Gunship are also depicted. The east side of the rock honors those Killed in Action, from Adams County, in Vietnam, Korea, and World War II, including Ron Bunting who was killed in Vietnam in 1968 and was the only child of Kenneth and Wilma Bunting. The north side features an eagle with a ribbon in his beak speaking to this county&#039;s patriotic spirit. The American Flag is draped over the top of the rock leading down to the artist&#039;s signature. The Adams County (Corning) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6th St.<br />Corning, IA 50841<br />Adams County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Band Concert Mural",
            "lat": "40.989198",
            "lon": "-94.736201",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adams-artpublic-bandconcert.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Band Concert Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.989198,-94.736201\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by Marion Gilmore in 1939. After winning the WPA commission to produce a mural for Corning, Iowa, Gilmore painted this egg-tempera-on-gesso mural winning the federal-sponsored Forty-Eight States design competition in 1939. The mural was installed in Corning, Iowa in 1941 after Gilmore made minor adjustments.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t608 7th St.<br />Corning Post Office<br />Corning, IA 50841<br />Adams County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.322.3646</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Ringgold County",
            "lat": "40.808495",
            "lon": "-94.339751",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Ringgold County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.808495,-94.339751\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ringgold County Freedom Rock® in Diagonal portrays a train stopping in Diagonal to bring home a fallen veteran (as remembered by one of the residents). The back side features a cross-section of the Vietnam Memorial Wall with a little girl pointing to a name. The name she is pointing at is Ronald Yashack who was the only Diagonal citizen killed in Vietnam. As she is pointing to the name Ronnie&#039;s reflection reaches back as if to hold her hand. The rest of the names on the wall are all Iowans who were killed in action in Vietnam and randomly selected by the artist but is not inclusive of all of Ringgold County&#039;s soldiers killed in action in Vietnam. The Ringgold County (Diagonal) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW 3rd St.<br />Diagonal, IA 50845<br />Ringgold County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Conservation of Wild Life Mural",
            "lat": "43.110852",
            "lon": "-94.679835",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/paloalto-artpublic-conservationofwildlife.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Conservation of Wild Life Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.110852,-94.679835\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by artist Lee Allen in 1940, this mural was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2210 10th St.<br />U.S. Post Office<br />Emmetsburg, IA 50536<br />Palo Alto County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Robert Emmet Statue",
            "lat": "43.110579",
            "lon": "-94.678625",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/paloalto-monument-robertemmetstatue.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Robert Emmet Statue</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.110579,-94.678625\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This statue honors Robert Emmet, one of Ireland&#039;s most venerated heroes. Emmetsburg was named after Emmet, who in 1803 was executed by the English government in Ireland&#039;s fight for independence. Located in the Courthouse square.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1010 Broadway St.<br />Palo Alto County Courthouse<br />Emmetsburg, IA 50536<br />Palo Alto County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://irishamerica.com/2013/05/emmetsburg-iowa/robert-emmet-statue/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Old Creamery Theatre Company",
            "lat": "41.810692",
            "lon": "-91.884967",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Creamery Theatre Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.810692,-91.884967\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old Creamery Theatre is a professional, not-for-profit theatre company founded in 1971. The Main Stage is located in the historic Amana Colonies and provides comfortable seating for 302 guests. Founded in 1971 the company purchased a building in Garrison that once served as a dairy co-op. In 1988, in an effort to attract a larger audience base, they began performing in the Amana Colonies, and in the course of nine years, they closed the Garrison facility and made their home in Amana.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t39 38th Ave.<br />Amana, IA 52203<br />Iowa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.622.6034</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.oldcreamery.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Dragoon Monument",
            "lat": "43.121587",
            "lon": "-94.679849",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/paloalto-historicmarker-dragoonmonument.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dragoon Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.121587,-94.679849\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dragoons were the first mounted infantry unit in the United States. In the summer of 1835, they scouted the area that would become Iowa. The property had been purchased by the US Government in the Black Hawk Purchase of 1832. There is a Dragoon Monument at Kearny State Park, next to the golf course.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. N40<br />Kearny State Park<br />Emmetsburg, IA 50536<br />O&#039;Brien County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Iowa Theatre Artists Company",
            "lat": "41.799795",
            "lon": "-91.867192",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Theatre Artists Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.799795,-91.867192\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Theatre Artists Company (ITAC) is a non-profit theater group. ITAC presents public performances of new plays and existing classical works as well as popular fare paying close attention to the highest artistic standards. The Main Stage is located on the second story of the former Barn Restaurant in the historic Amana Colonies and offers an intimate viewing experience with seating for 117.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4709 220th Trail<br />Amana, IA 52203<br />Iowa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.622.3222</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Shelby County",
            "lat": "41.773892",
            "lon": "-95.418386",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Shelby County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.773892,-95.418386\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Shelby County Freedom Rock® in Earling features one of Earling&#039;s natives, Lt. Col. Paul Finken who was killed in action in Iraq in November 2006. It also honors a Shelby County fireman along with policeman and emergency officers. The church is a prominent landmark in Earling and it, like the rest of Iowa, is a large farming community and is symbolized by a combine. The Shelby County (Earling) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t257 Railway St.<br />Earling, IA 51530<br />Shelby County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Indian Hills Community College Theater",
            "lat": "41.045278",
            "lon": "-92.395616",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Indian Hills Community College Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.045278,-92.395616\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">93.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Indian Hills Community College theater and music departments provide students the opportunity to perform and direct numerous theatrical productions throughout the year. The groups perform at St. John Auditorium and outdoor amphitheater, both located on the Ottumwa campus.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t525 Grandview Ave.<br />St. John Auditorium<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.683.5111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.indianhills.edu/arts/theatre.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Wapello County",
            "lat": "41.013044",
            "lon": "-92.415406",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-monument-wapellocountyfreedomrock-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Wapello County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.013044,-92.415406\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wapello County Freedom Rock® in Ottumwa features a gold star flag waving beside a soldier grasping a folded flag, representing those who&#039;ve lost their lives serving our country and in honor of Ottumwa native Corporal Jon Schiller. The back side is a shout out to the Ottumwa-based 833rd Engineer Company and a Bald Eagle carrying a ribbon with a thank you to all who serve. On the smaller sides are the Ottumwa Naval Air Station, that trained naval aviators among the farm fields of the Midwest. Also depicted are a couple of the Tuskegee Airmen with one of their distinct red-tailed planes flying above them. The Tuskegee Airmen, some with ties to Wapello County, were an all black fighter group that led the way in overcoming segregation in the military. The Wapello County (Ottumwa) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 Church St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Postman in Storm Mural",
            "lat": "42.470019",
            "lon": "-91.893075",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Postman in Storm Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.470019,-91.893075\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by Robert Tabor in 1938, this mural was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 2nd Ave. NE<br />U.S. Post Office<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Echo-Walk",
            "lat": "40.655556",
            "lon": "-93.854392",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Echo-Walk</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.655556,-93.854392\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Visitors to the Decatur County Rest Stop may discover symbols and stories of this area&#039;s past, found in the tiles, piers and light fixtures. Can you find symbols that represent an old farmstead, ancient river oxbow, and the Mormon Trail. (Artist David B. Dahlquist)</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDecatur Rest Area<br />Burrell, IA 50065<br />Decatur County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Corn Parade Mural",
            "lat": "40.714966",
            "lon": "-94.239130",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/ringgold-artpublic-cornparade.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Corn Parade Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.714966,-94.239130\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;The Corn Parade&quot; Mural is a New Deal mural in the Mount Ayr Post Office. The mural was a part of the Federal Art Project, which provided artists with work during the Great Depression, by commissioning murals in government buildings. The mural was painted by Orr C. Fisher, an Iowa born artist, and humorously depicts corn and its role in the Iowa economy.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t202 W Madison St.<br />U.S. Post Office<br />Mount Ayr, IA 50854<br />Ringgold County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Princess Theater",
            "lat": "40.713679",
            "lon": "-94.237675",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Princess Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.713679,-94.237675\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Princess Theater building was built about 1887 as the W.A. Simpson Department Store. The building operated as the Princess Theater from 1910 to 1985. The Moonlighters Theatre Group performs live theatrical shows at the theater and was the driving force in securing funds for the restoration of the theater.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 W Monroe St.<br />Mount Ayr, IA 50854<br />Ringgold County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Buena Vista Community Theatre",
            "lat": "42.672928",
            "lon": "-95.304431",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buena Vista Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.672928,-95.304431\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Buena Vista Community Theatre was founded in 1991. The Alta Community School District and Buena Vista Community Theatre share the Roxy Theatre.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t218 S Main St.<br />Alta, IA 51002<br />Buena Vista County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.200.1314</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.touchofbroadway.com/bvct.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "First County Fair Mural",
            "lat": "42.343658",
            "lon": "-95.471516",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/ida-artpublic-preparationfirstcountyfairmural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First County Fair Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.343658,-95.471516\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by Andrene J. Kauffman in 1940, &quot;Preparation for the First County Fair in Ida Grove–1872&quot; was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 Main St.<br />U.S. Post Office<br />Ida Grove, IA 51445<br />Ida County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Ida County Veteran&#039;s Memorial",
            "lat": "42.351452",
            "lon": "-95.473131",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/ida-monument-idacountyveteransmemorial.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ida County Veteran&#039;s Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.351452,-95.473131\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ida County Veterans Memorial consists of a memorial wall and walkways that recognize all branches of military.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA 175<br />Cobb Memorial Park<br />Ida Grove, IA 51445<br />Ida County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Promise of America",
            "lat": "43.422417",
            "lon": "-93.515364",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winnebago-artpublic-promiseofamerica-1.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Promise of America</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.422417,-93.515364\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.7mi.</span></div>\n\t\t</div>\n\n\t\t\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tLake Mills, IA<br />Winnebago County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Appanoose County",
            "lat": "40.733882",
            "lon": "-92.873680",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Appanoose County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.733882,-92.873680\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Appanoose County Freedom Rock® in Centerville for Appanoose County features Francis Drake (Centerville native and former Governor of Iowa) as a Union Army brigadier general. Behind him is the first USS Iowa which was the first ship commissioned in honor of Iowa and saw substantial action in the Spanish–American War. The back side of the rock portrays a father hugging his daughter after returning from service. In the background is the Centerville Square. Over the top of the rock is the American Flag as if it was laid over the top twisted by the breeze. At the end of the flag is a gold star in honor of those lost and around the star are the seals of each military branch. The Appanoose County (Centerville) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN 13th St.<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Majestic Theatre",
            "lat": "40.732649",
            "lon": "-92.873399",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/appanoose-theater-majestictheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Majestic Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.732649,-92.873399\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Majestic Theater opened on October 27, 1913 with a silent film. Admission was 10 cents for adults and five cents for children. By the mid-1920s, the Majestic had a full pipe organ, an orchestra pit and a piano for live performances and movies. The theater was renovated in the 1980s, and closed in 2004.The Majestic Theatre was completely renovated in to a multi-use facility featuring facilities for community theater, weddings and banquets.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 N 13th St.<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.437.1025</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.themajestictheater.info/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Blue Frog Arts",
            "lat": "40.623596",
            "lon": "-93.932783",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Blue Frog Arts</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.623596,-93.932783\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Blue Frog Arts offers original artworks by local and regional artists, as well as classes and workshops to the public.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t119 E Main St.<br />Lamoni, IA 50140<br />Decatur County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.784.6827</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.bluefrogarts.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Breaking the Colt Mural",
            "lat": "43.060473",
            "lon": "-92.315655",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Breaking the Colt Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.060473,-92.315655\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by Tom Savage in 1939, this mural was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t108 N Chestnut Ave.<br />U.S. Post Office<br />New Hampton, IA 50659<br />Chickasaw County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Shaw Center Art Gallery",
            "lat": "40.615957",
            "lon": "-93.924888",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Shaw Center Art Gallery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.615957,-93.924888\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Shaw Center Art Gallery was started by J.R. Shaw at Graceland University. The Gallery started in a hallway and displayed items donated from J.R. Shaw&#039;s personal collection. The Gallery has since grown to around 50 paintings from various Canadian and university artists.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1 University Pl.<br />Graceland University<br />Lamoni, IA 50140<br />Decatur County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Carrie Lane Chapman Catt Historic Marker",
            "lat": "43.445233",
            "lon": "-93.354467",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carrie Lane Chapman Catt Historic Marker</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.445233,-93.354467\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">99.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Mrs. Catt began her career as a leader of the women&#039;s suffrage movement while Superintendent of Schools and newspaper editor in Mason City, after attending elementary and secondary school in Charles City, and Iowa State College in Ames. In 1886, she organized a house-to-house survey which showed that all but 10 Mason City women favored enfranchisement, a statistic she often cited in her later work. She became Secretary of the Iowa Woman Suffrage Association and organized campaigns in several other states during the 1890s, winning the vote for women in Colorado and Idaho, but losing in others, notably Iowa. \r\n \r\n In 1900 Mrs. Catt was elected President of the National Woman Suffrage Association, a post she held until 1904, and from 1915 to 1938. She also founded the International Woman Suffrage Alliance, lectured throughout the world, and after ratification of the 19th Amendment, founded the League of Women Voters. Mrs. Catt held offices in the women&#039;s rights movement for 51 years and received numerous foreign and domestic awards, including Woman of the Year in 1940.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4705 Wheelerwood Rd.<br />Top of Iowa Welcome Center<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Historic Northern Iowa Historic Marker",
            "lat": "43.445233",
            "lon": "-93.354467",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Historic Northern Iowa Historic Marker</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.445233,-93.354467\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">99.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Northern Iowa landforms result from the action of 3 separate glacial ice sheets. Clear Lake, south of here, is one of the many Iowa lakes formed by glacial action. Pilot Knob, a glacially formed hill west of here, is one of highest points in northern Iowa and was used as a landmark by early travelers. \r\n \r\nMuch of the Western two-thirds of Iowa was prairie when the first settlers arrived. Pioneers in this area travelled through grasses 5 to 7 feet tall. Many of them referred to this experience as &quot;a voyage through an ocean of grass.&quot; A remnant of this prairie may be seen at the Hayden Preserve near Lime Springs, about 50 miles east of here. \r\n \r\nOne noteworthy Iowan, born in Cresco in 1914, is Norman Borlaug, recipient of the 1970 Nobel Peace Prize and many other international awards for his work in increasing world wheat production. Another northern Iowan of note is Hamlin Garland (1860-1940), acclaimed for his novels of late 19th century farm life. Garland wrote over 30 novels, including a Pulitzer Prize winner, A Daughter of the Middle Border.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4705 Wheelerwood Rd.<br />Top of Iowa Welcome Center<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Williams Center for the Arts",
            "lat": "42.672203",
            "lon": "-91.901953",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-artperforming-williamscenterforthearts.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Williams Center for the Arts</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.672203,-91.901953\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">99.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Williams Center for the Arts opened in the Fall of 2003. The construction of the center was part of a project which included a Wellness Center, a physical therapy suite, childhood center and several high school classrooms. The Williams Center for the Arts includes a state-of-the-art auditorium, a multi-functional lobby, sound/light booth, a spacious work area, several spacious dressing rooms, and multi-level storage. The Center has played host to the Governor of the State of Iowa, and several community forums.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t317 8th Ave. SE<br />Oelwein, IA 50662<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.283.6616</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.williamscenterforthearts.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Charter Oak Mural",
            "lat": "42.069199",
            "lon": "-95.591426",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/crawford-artpublic-charteroakmural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Charter Oak Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.069199,-95.591426\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Charter Oak, IA 51439<br />Crawford County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Chief Wapello Memorial Park",
            "lat": "40.991688",
            "lon": "-92.292947",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-heritagearea-chiefwapellomemorialpark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chief Wapello Memorial Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.991688,-92.292947\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chief Wapello Memorial Park is on the site of the Indian Agency that became the home of the Sauk and Meskwaki (Fox) tribes. They were relocated by the United States after the Black Hawk War of 1832. General Joseph M. Street was appointed the Indian Agent, a US designated official that interacted with Native Americans on the governments behalf, and settled with his family on the agency. He earned the respect of the Meskwaki chief Wapello and the two became very good friends. When Street died in 1840 he was buried on the agency and the Meskwaki tribe gave property to his wife so she and her family could make a living. Two years later Wapello died and was buried next to General Street.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t8218 Highway 34<br />Agency, IA 52530<br />Wapello County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.937.5720</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Worth County Courthouse Cannon",
            "lat": "43.444433",
            "lon": "-93.218300",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Worth County Courthouse Cannon</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.444433,-93.218300\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This cannon was cast during the Civil War years by the Northwood Foundry which was once located on the north bank of the Shell Rock River. It is an 8-inch Columbiad, Model of 1861, commonly called a &quot;Rodman&quot; after its inventor, Thomas Rodman. The gun was designed for use in seacoast fortifications.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 Central Ave.<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "To Wing",
            "lat": "41.892215",
            "lon": "-91.696796",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">To Wing</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.892215,-91.696796\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>To Wing was designed and built by artist Tom Stancliffe. Three sculptures, each 35-60 feet high, celebrate the courage and tenacity of the Wright Brothers in achieving the dream of flight.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2121 Arthur Collins Pkwy. SW<br />Eastern Iowa Airport<br />Cedar Rapids, IA 52404<br />Linn County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/node/68544\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Old Main Street Circa 1920 Mural",
            "lat": "43.378616",
            "lon": "-92.920037",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Main Street Circa 1920 Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.378616,-92.920037\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural depicts Saint Ansgar&#039;s Main Street in the early 1920s. It was commissioned by the St. Ansgar Heritage Association in 1996, and was painted by artist Carl Homstad, of Decorah, Iowa, who has painted more than 40 murals in the Midwest, almost all in Iowa. The mural measures 20 feet by 24 feet and covers the west wall of the Bridal Theatre.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t139 W 4th St.<br />Saint Ansgar, IA 50472<br />Mitchell County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Grant Wood&#039;s Journey of Life",
            "lat": "41.954110",
            "lon": "-91.688219",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-artpublic-grantwoodsjourneyoflife.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grant Wood&#039;s Journey of Life</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.954110,-91.688219\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Grant Wood&#039;s Journey of Life is an installation of a series of Wood&#039;s images hanging in the lobby of the Linn County Community Services Building in Cedar Rapids. The images included in this installation refer to the services provided by the departments housed in the building.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1240 26th Ave. Ct. SW<br />Linn County Community Services Building<br />Cedar Rapids, IA 52404<br />Linn County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.linncounty.org/473/Community-Services-Building-Public-Art\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Mapping A Sense of Place",
            "lat": "41.954196",
            "lon": "-91.688204",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-artpublic-mappingasenseofplace.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mapping A Sense of Place</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.954196,-91.688204\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Sonata Kazimieraitiene worked with community members to create this 18 foot tall by 12 foot wide map of Linn county, which includes clay tiles, historic photographs and stone from the nearby Stone City artist colony, made famous by Grant Wood.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1240 26th Ave. Ct. SW<br />Linn County Community Services Building<br />Cedar Rapids, IA 52404<br />Linn County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.linncounty.org/473/Community-Services-Building-Public-Art\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Markers of Time",
            "lat": "41.954142",
            "lon": "-91.687695",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-artpublic-markersoftime.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Markers of Time</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.954142,-91.687695\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;Markers of Time,&quot; by artist Susan Falkman, is a series of four sculptures located in the courtyard of the Linn County Community Services Building in Cedar Rapids. The sculptures represent the passage of the four seasons, as well as the passages we move through in our lives.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1240 26th Ave. Ct. SW<br />Linn County Community Services Building<br />Cedar Rapids, IA 52404<br />Linn County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.linncounty.org/473/Community-Services-Building-Public-Art\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Grant Wood Stained Glass Window",
            "lat": "41.976397",
            "lon": "-91.670706",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-artpublic-grantwoodstainedglasswindow.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grant Wood Stained Glass Window</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.976397,-91.670706\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 24 foot tall stained-glass window, made of 8,000 glass pieces, was designed by internationally-renowned Iowa artist Grant Wood in 1920 and includes depictions of six life-size soldiers, representing military conflicts that took place during the Wood&#039;s early life.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t50 2nd Ave. Bridge<br />Veterans Memorial Building<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.286.5038</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.kcrg.com/news/local/Grant-Wood-Stained-Glass-Window-Draws-Hundreds-214087041.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Summer Noon Mural",
            "lat": "41.974295",
            "lon": "-91.672148",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Summer Noon Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.974295,-91.672148\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Allen Erskine Philbrick created these murals in 1910 for the Peoples Savings Bank (now Wells Fargo).</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 3rd Ave. SW<br />Wells Fargo Bank<br />Cedar Rapids, IA 52404<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Emergence",
            "lat": "41.969237",
            "lon": "-91.670419",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-artpublic-emergence.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Emergence</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.969237,-91.670419\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;Emergence,&quot; by artist Michele Gutlove, is a suspended sculpture consisting of hundreds of hand-made colored glass butterflies, flowers and leaves hanging in the atrium of the Linn County Juvenile Justice Center in Cedar Rapids.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t211 8th Ave. SW<br />Linn County Juvenile Justice Center<br />Cedar Rapids, IA 52404<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.892.5101</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.linncounty.org/486/Juvenile-Justice-Center-Public-Art\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Mays Island Historic District",
            "lat": "41.975514",
            "lon": "-91.670009",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-maysislandhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mays Island Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.975514,-91.670009\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mays Island Historic District, on a 1,250-foot long island on the Cedar River, has been the governmental center of Cedar Rapids and Linn County ever since 1920, when the county seat was moved from its original location at Marion. The Linn County Courthouse and (former) jail, completed in 1925, established Mays Island as the &quot;government island.&quot; The Veterans Memorial Building was completed in 1927 in a fashion that would &quot;perpetuate ... the spirit of those men who went and did not come back,&quot; according to the Cedar Rapids Gazette of May 18, 1925. That spirit is conveyed through a memorial stained-glass window by Grant Wood, which features a female figure looking down upon six life-size soldiers, each dressed to represent the six wars the country had fought so far: Revolutionary War, War of 1812, Mexican War, Civil War, Spanish American War and World War I. The window is made of about 10,000 pieces of glass and was restored after the Flood of 2008. The Mays Island Historic District was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t50 3rd Ave. Bridge<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Cedar Rapids Opera Theatre",
            "lat": "41.976611",
            "lon": "-91.666868",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cedar Rapids Opera Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.976611,-91.666868\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Founded in 1998 by conductor Daniel Kleinknecht, Cedar Rapids Opera Theatre presents two to three operas each season as well as other opera-related events and programs. International artists as well as American artists are featured in the productions. Cedar Rapids Opera Theatre has presented standard repertoire, 21st century repertoire, and premieres. An important part of the company, the Young Artist Program, offers college and university-trained singers an opportunity to sing smaller roles in main stage performances and to participate in the opera chorus. Opera outreach performances are also offered by the Young Artists. Last year Cedar Rapids Opera, through main stage and outreach productions, performed for over 7,000 audience members and community school students. Performances are held at the Paramount Theater.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t123 3rd Ave. SE<br />Paramount Theater<br />Cedar Rapids, IA 52403<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.331.0449</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cr-opera.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Orchestra Iowa",
            "lat": "41.976653",
            "lon": "-91.667221",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Orchestra Iowa</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.976653,-91.667221\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Founded in 1921, Orchestra Iowa is widely recognized as the state’s premier symphony orchestra. The Orchestra’s mission is to foster enjoyment of, and support for fine symphonic music through quality performances, education and community involvement. Under the direction of Timothy Hankewich, now celebrating his eighth season as Music Director, its 68 professional musicians perform more than 150 public performances throughout the year, many of which can be heard on Iowa Public Radio and seen on Iowa Public Television. Orchestra Iowa showcases its artistic excellence each season through an accomplished array of classical, ballet, opera, popular and chamber performances, in addition to extensive community education and involvement.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t119 3rd Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.366.8206</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.orchestraiowa.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Theatre Cedar Rapids",
            "lat": "41.979358",
            "lon": "-91.667045",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-theater-theatrecedarrapids.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Theatre Cedar Rapids</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.979358,-91.667045\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>For 80 seasons, Theatre Cedar Rapids has been a part of the cultural landscape of Cedar Rapids. As the business and cultural renaissance of downtown Cedar Rapids accelerates, Theatre Cedar Rapids role becomes more influential not only in Cedar Rapids but the Corridor and Eastern Iowa. Theatre Cedar Rapids is devoted to bringing quality, exciting cultural experiences and programs to the area. This evolves the performing arts into a catalyst that helps build diverse communities that enrich the lives of all Eastern Iowans. With a future-forward attitude Theatre Cedar Rapids continues to present the known, beloved and the evergreen, but also delivers new and challenging experiences to meet the tastes of an expanding younger community, continuing to earn its reputation as a cultural leader. The theater was built as the Iowa Theatre in 1928 as a vaudeville house. The building was originally occupied by a dance hall that was converted into the theater auditorium. The Iowa Theatre showed vaudeville shows until 1930, when it was made into exclusively a movie theater.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 3rd St. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.366.8591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.theatrecr.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Golden Field",
            "lat": "41.968289",
            "lon": "-91.668626",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-artpublic-goldenfield.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Golden Field</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.968289,-91.668626\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;Golden Field,&quot; by artist Konstantin Dimopoulos, is a kinetic sculpture created to provide a warm, vibrant welcome to the Jean Oxley Linn County Public Service Center in Cedar Rapids. The work is inspired by the Great Seal of the State of Iowa and references the state&#039;s early wheat fields, its rich history of agriculture, and, more broadly, its indigenous prairies.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t935 2nd St. SW<br />Jean Oxley Linn County Public Service Center<br />Cedar Rapids, IA 52404<br />Linn County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.linncounty.org/495/Public-Service-Center-Art\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Hope Perseverance Strength",
            "lat": "41.968358",
            "lon": "-91.668466",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-artpublic-hopeperseverancestrength.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hope Perseverance Strength</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.968358,-91.668466\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;Hope Perseverance Strength,&quot; by artist Robert Barnum, hangs in the lobby of the Jean Oxley Linn County Public Service Center in Cedar Rapids. It is a series of three panels representing the history and future development of the community, with the common thread of the Cedar River running through all three panels, including the center panel&#039;s representation of the 2008 flood. The work honors the human will to face and overcome challenge and the ability to prosper regardless of obstacles and odds.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t935 2nd St. SW<br />Jean Oxley Linn County Public Service Center<br />Cedar Rapids, IA 52404<br />Linn County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.linncounty.org/495/Public-Service-Center-Art\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Entering the Eras",
            "lat": "41.978010",
            "lon": "-91.666388",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Entering the Eras</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.978010,-91.666388\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Created by artists Bounnak Thammavong and Mike Sneller and unveiled in 2012, this permanent mural celebrates the history of downtown Cedar Rapids from its founding to the 1920s. The project was sponsored by Mural and More, which envisions the development of a Cedar Rapids Mural Trail.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t217 3rd St. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.775.5417</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://crmuralsandmore.org/about/our-murals/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Cedar Rapids Museum of Art",
            "lat": "41.978861",
            "lon": "-91.664341",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-artmuseum-cedarrapidsmuseumofart.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cedar Rapids Museum of Art</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.978861,-91.664341\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Visit the extraordinary world of the Cedar Rapids Museum of Art, filled with a selection from 2,000 years of art. The museum&#039;s treasure includes the world&#039;s largest collection of works by artist Grant Wood, who lived and worked in Cedar Rapids most of his life. There&#039;s something for everyone at the Cedar Rapids Museum of Art, including regularly changing exhibitions.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t410 3rd Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.366.7503</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://crma.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Regeneration",
            "lat": "41.977764",
            "lon": "-91.662863",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-artpublic-regeneration.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Regeneration</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.977764,-91.662863\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Renowned sculptor Albert Paley was commissioned by the Cedar Rapids Public Library Public Art Task Force to design a piece of public art for placement at the new Cedar Rapids Public Library as part of the rebuilding process after the flood of 2008. Regeneration was the result of several visits to the community, discussions with Library staff, board members, and community members, and meetings with architects. Paley designed a piece that is hopeful and brightly colored, driving people toward the library entrance by the tilt and curve of the piece.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t450 Fifth Ave. SE<br />Cedar Rapids Public Library<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.261.7323</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.crlibrary.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Grant Wood Studio and Visitor Center",
            "lat": "41.982337",
            "lon": "-91.661020",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-artmuseum-grantwoodstudio.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grant Wood Studio and Visitor Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.982337,-91.661020\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grant Wood Studio and Visitor Center is a studio, maintained by the Cedar Rapids Museum of Art, that was used by Grant Wood as both his personal studio and home from 1924-1935. The studio is 925 sq. ft. of cramped loft space, that Grant Wood did most of his work in. Today, the studio has been preserved as a museum, featuring many of the amenities that Wood used, including a door sign that had a pointer to tell his status as “In,” “Out of Town,” “Taking a Bath,” or “Having a Party.”</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t810 2nd Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.366.7503</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://crma.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Rosemary Clausen Center for Performing Arts",
            "lat": "42.487352",
            "lon": "-95.536932",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/ida-artperforming-rosemaryclausencenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rosemary Clausen Center for Performing Arts</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.487352,-95.536932\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rosemary Clausen Center for Performing arts opened in 2010 and presents quality entertainment and educational opportunities for the community. The group performs numerous shows each year at its center which is located within the Galva-Holstein High School complex.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t519 E Maple St.<br />Galva-Holstein Riverview High School<br />Holstein, IA 51025<br />Ida County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.368.4849</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://rosemaryclausencenter.com/index.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Coe College Art Galleries",
            "lat": "41.985831",
            "lon": "-91.657663",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Coe College Art Galleries</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.985831,-91.657663\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102mi.</span></div>\n\t\t</div>\n\n\t\t<p>Coe College houses two extensive art galleries in the Dows Fine Arts Center. The galleries include museum style lighting, as well as humidity control to accommodate traveling exhibits. It has a collection of more than 500 pieces by 300 artists that span several centuries and five continents. The galleries also have secure spaces for student collections to be housed safely.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1220 1st Ave. NE<br />Dows Fine Arts Center<br />Cedar Rapids, IA 52402<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Legion Arts (C.S.P.S. Hall)",
            "lat": "41.970720",
            "lon": "-91.659062",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-historicdistrict-newbo-cpcshallnewbohemia.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Legion Arts (C.S.P.S. Hall)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.970720,-91.659062\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102mi.</span></div>\n\t\t</div>\n\n\t\t<p>Legion Arts is an award-winning, Cedar Rapids nonprofit dedicated to the creation, presentation, understanding and impact of contemporary art. Based at historic C.S.P.S. Hall, a restored landmark building on the edge of downtown Cedar Rapids, Legion Arts presents cutting edge art, music theatre, film and other events at a variety of venues; supports young artists, experimental art forms and new idea. The landmark hall that houses the arts center was built in 1891 and was associated with the Czech-Slovak Protective Society and served as a clubhouse and features Richardsonian Romanesque architecture. The building was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1105 3rd St. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "The Ceramics Center",
            "lat": "41.971787",
            "lon": "-91.658479",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-artstudio-theceramicscenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Ceramics Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.971787,-91.658479\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ceramics Center in Cedar Rapids offers an art gallery, as well as classes and workshops to the public.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t329 10th Ave.<br />Cherry Building<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.365.9644</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.theceramicscenter.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The View from Our Window: Grant Wood in Iowa",
            "lat": "41.867964",
            "lon": "-91.668077",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The View from Our Window: Grant Wood in Iowa</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.867964,-91.668077\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This rest area, with art designed by David Dahlquist, pays homage to the life and work of celebrated artist Grant Wood, who was deeply influenced by the Iowa landscape. The building&#039;s illuminated gothic windows reference the artist&#039;s most famous work, &quot;American Gothic,&quot; while the front entrance and surrounding benches take inspiration from rolling hills and bales of hay.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tInterstate Hwy. 380 Northbound<br />Mile Post 13 Rest Area<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.rdgusa.com/projects/the-view-from-our-window-1#/services/art-studio\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "McAuley Hall Art Galleries",
            "lat": "42.002243",
            "lon": "-91.652246",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McAuley Hall Art Galleries</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.002243,-91.652246\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The McAuley Galleries are two art galleries located in the McAuley Art Department building. The galleries have month long exhibitions of nationally and regionally known artists who apply years in advance to exhibit in their spaces. Since the galleries are intended as a teaching tool artists of national reputation who work in a variety of media are invited to present their work. Very often, these artists come to meet with students and give a lecture with the opening reception of their exhibit. In recent months they have had exhibitions of painting, drawing, digital Video interactive works, installation, fiber arts, printmaking, sculpture and video by artists from New York City, Chicago, Minneapolis, Mexico, and London.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1330 Elmhurst Dr. NE<br />Mount Mercy University<br />Cedar Rapids, IA 52402<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "It Has Iowa Written All Over It",
            "lat": "41.693536",
            "lon": "-91.682294",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">It Has Iowa Written All Over It</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.693536,-91.682294\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">103.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in Johnson County, home of the University of Iowa and the Iowa Writer&#039;s Workshop, &#039;It Has Iowa Written All Over It&#039; symbolizes the importance of writing in Iowa and its significant contribution to literature throughout the world. The public art at the rest area is designed by David Dahlquist.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tInterstate Hwy. 80 Eastbound Rest Area<br />Mile Post 237 Rest Area<br />Tiffin, IA 52340<br />Johnson County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.rdgusa.com/projects/it-has-iowa-written-all-over-it-1#/services/art-studio\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Emmet County",
            "lat": "43.397518",
            "lon": "-94.480779",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Emmet County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.397518,-94.480779\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">103.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Emmet County Freedom Rock® in Armstrong, Iowa features a Normandy gravestone with an Eisenhower quote signifying the many who’ve given their all in service to our county. On the front side of the rock are two such Emmet County veterans. The first is Medal of Honor recipient John Thorson, his citation reads: “He was an automatic rifleman on 28 October 1944, in the attack on Dagami Leyte, Philippine Islands. A heavily fortified enemy position consisting of pillboxes and supporting trenches held up the advance of his company. His platoon was ordered to out-flank and neutralize the strongpoint. Voluntarily moving well out in front of his group, Pvt. Thorson came upon an enemy fire trench defended by several hostile riflemen and, disregarding the intense fire directed at him, attacked single-handed. He was seriously wounded and fell about 6 yards from the trench. Just as the remaining 20 members of the platoon reached him, 1 of the enemy threw a grenade into their midst. Shouting a warning and making a final effort, Pvt. Thorson rolled onto the grenade and smothered the explosion with his body. He was instantly killed, but his magnificent courage and supreme self-sacrifice prevented the injury and possible death of his comrades, and remain with them as a lasting inspiration.” To the bottom left of the Normandy stone is a soldier either returning from or leaving for war... it is up to the observer.\r\n\r\nTo the bottom right is Army Staff Sgt. Steven P. Blass. At age 27, Blass died in Kandahar, Afghanistan March 11, 2013 while serving during Operation Enduring Freedom in a UH-60 Black Hawk helicopter crash. The backside of this Freedom Rock is a tribute to the spirit of Emmet County. It displays the farming heritage, tribute to service personnel and a couple factories and windmills that are an important foundation to the county.\r\n\r\nTo finish it off you&#039;ll find a nod to Iowa with the wild rose and goldfinch and of course the American flag over the top. The Emmet County (Armstrong) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2016.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3rd Ave.<br />Armstrong, IA 50514<br />Emmet County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Davis County",
            "lat": "40.798629",
            "lon": "-92.482800",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Davis County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.798629,-92.482800\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Davis County Freedom Rock® in Drakesville, Iowa is nestled among some of southeast Iowa&#039;s Amish. Ted Sprouse was a Korean War POW from Drakesville, Iowa. Ted was an outstanding baseball player and before his unit was sent to Korea was selected to play on the Indianhead artillery team DIVARITY. He was so good that he was invited to recruit-training camp in San Francisco by the then still New York Giants and received a bunch of tips from major leaguers. While serving, Ted befriended a Native-American named Don Cloud. A fellow sergeant, Cloud and Sprouse were in the 2nd Infantry Division (Indianhead) 38th Field Artillery. They ran the 105-mm howitzers. Ted was taken prisoner after a brutal battle with the Chinese Communist Forces and spent years in a North Korean prison camp. \r\n\r\nJames B. Weaver who resided in Bloomfield, Iowa was a Union Army officer in the Civil War and a United States Representative. He took part in the Battle of Shiloh, Second Battle of Corinth and Battle of Resaca. After the war ended he was promoted to Brevet Brigadier General. As a politician he was a member of many parties: Republican, Democrat, Greenback and Populist. He even made a run for president with the Greenback Party. Weaver had an American Liberty ship named for him. The Liberty ships were there in the days following the Allied invasion of Normandy unloading cargo. \r\n\r\nThe Davis County Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2016.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Drakesville, IA 52552<br />Davis County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Marion Heritage Center",
            "lat": "42.032183",
            "lon": "-91.599594",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marion Heritage Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.032183,-91.599594\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Marion Heritage Center building was originally built in 1850 as a Methodist Church. In 1875 the church was purchased by local Baptist congregation and used by them until 1957 when the building was sold to the Marion branch of the Cedar Rapids YMCA. In 1965 Varnes and Hunter purchased the building for an Auto Parts store. In 1999 the structure was purchased by concerned citizens with a vision of creating a community facility and since 2000 it has served as a community center for educational programs, historical displays, art exhibits and cultural events for audiences of all ages. The displays feature a WPA mural that was successfully moved from the former Marion Post Office and conserved. The mural, &quot;Communications by Mail&quot; was completed by artist Dan Rhodes in 1939.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t590 10th St.<br />Marion, IA 52302<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.447.6376</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://marionmuseums.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Communication By Mail Mural",
            "lat": "42.032197",
            "lon": "-91.599506",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Communication By Mail Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.032197,-91.599506\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by Dan Rhodes, this mural was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t590 10th St.<br />Marion, IA 52302<br />Linn County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://livingnewdeal.berkeley.edu/projects/post-office-marion-ia/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-historic-sites.png",
            "title": "American Gothic House",
            "lat": "40.920966",
            "lon": "-92.214039",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-statehistoricsite-americangothichouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">American Gothic House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.920966,-92.214039\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The American Gothic House State Historic Site, also known as the Dibble House, was first owned by Charles and Catherine Dibble in 1887. It was the backdrop for one of the most famous American paintings, &quot;American Gothic,&quot; created by Iowa artist Grant Wood. This painting was created in 1930 and depicts a farmer and his daughter in front of a small farmhouse. The models for the painting were Wood&#039;s sister and Wood&#039;s dentist. The bullet-shaped window in the background inspired the painting&#039;s title, since it looks like windows on Gothic-style churches in Germany and caught Wood&#039;s eye on a visit to a nearby art exhibit. While he drove by, he asked his driver to stop, and sketched the house on an envelope. After looking it over, he decided it was perfect for a painting that would encompass small-town Iowa.</p>\t\t<p><em>A location in the collections: State Historic Sites, 99 County Tour - Iowa History Month</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 American Gothic St.<br />Eldon, IA 52554<br />Wapello County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.652.3352</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://iowaculture.gov/history/sites/american-gothic-house\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Taylor County",
            "lat": "40.614577",
            "lon": "-94.479350",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Taylor County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.614577,-94.479350\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Taylor County Freedom Rock® in Blockton features Zachary Taylor. Taylor served in the Army for four decades, commanding troops in the War of 1812, the Black Hawk War and the second of the Seminole Wars. He became know as a war hero through his service in the Mexican War, which broke out in 1846 after the U.S. annexation of Texas. He was elected president in 1848 as the choice of both parties. He is the namesake of Taylor County. The front side of the rock are the flags that mark the cemetery in Blockton. On the back side is a piece for Prisoners of War and those Missing in Action. A hand is grasping barbed wire to illuminate the pain and struggling they&#039;ve statue represents Civil War veterans and the many Civil War monuments across the county. The Taylor County (Blockton) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t509 Division St.<br />Blockton, IA 50836<br />Taylor County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Study Circles",
            "lat": "41.707700",
            "lon": "-91.606595",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Study Circles</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.707700,-91.606595\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Norie Sato&#039;s Study Circles, combines contradicting themes into a site specific artwork that can be interpreted many different ways. Composed of two ribbons on 2 layers of glass that alludes to helices, connections, micro/macro while illuminating the work of the Hygienic Lab and merging the inside of the lab with the outside. Circular details are metaphoric &#039;petri&#039; dishes that refer to various elements of the research at the lab, including water and air quality, environmental issues, mold, bacteria, viruses, pond scum, asbestos, for example, from the microscopic view to views visible easily to the human eye. Perceiving, exploring, juxtaposing and scrutiny are integral to the artwork, just as these processes are integral to research, experimentation and discovery in science.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2490 Crosspark Rd.<br />State Hygenic Laboratory<br />Coralville, IA 52241<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Wilson Performing Arts Center",
            "lat": "41.025256",
            "lon": "-95.229549",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-artsperforming-wilsonperformingartscenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wilson Performing Arts Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.025256,-95.229549\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Wilson Performing Arts Center is part of The Performing Arts and Education Association of Southwest Iowa. It is a premier performance venue for music, dance, and theatre.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 Commerce Dr<br />Red Oak, IA 51566<br />Montgomery County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.623.3183</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.wilsonartscenter.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Brown Opera Block Stage Paintings",
            "lat": "43.361430",
            "lon": "-92.554415",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brown Opera Block Stage Paintings</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.361430,-92.554415\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Brown Opera Block Stage Paintings are a set of five back drop paintings from the old Brown Opera stage now displayed at the Riceville Public Library. The paintings were restored by the National Endowment for the Arts, and are one of the finest collections in the Midwest.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t307 Woodland Ave.<br />Riceville Public Library<br />Riceville, IA 50466<br />Mitchell County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.985.2273</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "George H. Hawkins Memorial - In Memory of Rainbow Division World War I",
            "lat": "41.009288",
            "lon": "-95.228350",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/5fe0eb9815bec21a963d7.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George H. Hawkins Memorial - In Memory of Rainbow Division World War I</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.009288,-95.228350\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108mi.</span></div>\n\t\t</div>\n\n\t\t<p>Private George Hawkins of Red Oak was marching toward the Rhine River with his comrades of the Rainbow (42nd Infantry) Division when he got sick. According to the Atlantic News Telegraph of Jan. 11, 1919, Hawkins&#039; uncle, Lieutenant Owen C. Hawkins, wrote the family from Europe to explain that the army had been &quot;marching through all kinds of weather and undergoing considerable hardship. ... After seven straight days of marching through the rain, twenty men fell out on account of sickness and exhaustion.&quot; Hawkins was one of them. He died of pneumonia at Prium, Germany, on Christmas Day, 1918. A funeral was held for him in Red Oak the following October.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCoolbaugh St. and 4th St.<br />Fountain Square Park<br />Red Oak, IA 51566<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Montgomery County World War Heroes",
            "lat": "41.009420",
            "lon": "-95.228711",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Montgomery County World War Heroes</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.009420,-95.228711\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108mi.</span></div>\n\t\t</div>\n\n\t\t<p>A boulder in Fountain Square Park lists all the World War I soldiers from Montgomery County, including those who died in service and those who died after the war. The memorial tablets were installed by the local Elks Lodge in 1927. Of note is Captain John C. Christopher who was born in Red Oak in 1891 and enlisted in the Iowa National Guard in 1910. His company was called into federal service and sailed for France on Nov. 14, 1917. According to a 1927 obituary in the Annals of Iowa, &quot;he saw hard service at the front and received three decorations and two citations for bravery.&quot; He returned home to Iowa in 1919 and died in 1926 from tuberculosis, which he had contracted during the war.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCoolbaugh St. and 4th St.<br />Fountain Square Park<br />Red Oak, IA 51566<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Gathering: Of Time, Of Land, Of Many Hands",
            "lat": "43.134511",
            "lon": "-95.143914",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clay-artpublic-thegathering-1.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Gathering: Of Time, Of Land, Of Many Hands</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.134511,-95.143914\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Designed by artists Nina Smoot-Cain and John Pitman Weber, this sculptural mosaic artwork, celebrating the community and rural life, was created in 2000 as part of the National Millennium Project.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tGrand Ave. and Highway 18<br />Leech Park<br />Spencer, IA 51301<br />Clay County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Spencer Community Theatre",
            "lat": "43.143341",
            "lon": "-95.143106",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spencer Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.143341,-95.143106\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Spencer Community Theatre serves as an instrument for community enrichment and education by offering the public the most fulfilling live theatre experience possible.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t518 1st Ave E.<br />Spencer, IA 51301<br />Clay County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.262.7336</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.sctplayhouse.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Arts on Grand",
            "lat": "43.141771",
            "lon": "-95.144456",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clay-artmuseum-artsongrand.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Arts on Grand</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.141771,-95.144456\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Arts on Grand is a nonprofit multidisciplinary art center. It has a gallery for traveling exhibits and a gift shop featuring original art by area artists. There is also a clay studio and multipurpose classroom/studio.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t408 N Grand Ave<br />Spencer, IA 51301<br />Clay County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.262.4307</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://artsongrand.org/index.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Autumn in Iowa Mural",
            "lat": "40.751977",
            "lon": "-92.416644",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Autumn in Iowa Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.751977,-92.416644\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by John Sharp in 1940, the mural was part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t202 W Jefferson St.<br />U.S. Post Office<br />Bloomfield, IA 52537<br />Davis County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Coralville Center for the Performing Arts",
            "lat": "41.676513",
            "lon": "-91.580853",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-artperforming-coralvillecenterforperformingarts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Coralville Center for the Performing Arts</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.676513,-91.580853\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Coralville Center for the Performing Arts, with the Jim L. Fausett Theater, is a 472-seat auditorium located in the heart of Coralville at the corner of 5th Street and 12th Avenue. It is home of City Circle Acting Company of Coralville and Young Footliters Youth Theatre.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1301 5th St.<br />Coralville, IA 52241<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.248.9370</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.coralvillearts.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "science-centers.png",
            "title": "Sanford Museum and Planetarium",
            "lat": "42.750222",
            "lon": "-95.550386",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cherokee-historymuseum-sanfordmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/science-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sanford Museum and Planetarium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.750222,-95.550386\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sanford Museum and Planetarium has exhibits and activities on a variety of subjects including: Archaeology, Art, Astronomy, Geology, History, Natural History, and Paleontology. The museum was made possible through a trust fund established by the late Mr. and Mrs. W.A. Sanford of Cherokee. The facility opened in 1951, and has been viewed by more one million people.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t117 E Willow St.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.225.3922</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://sanfordmuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Prairie Pioneer Mural",
            "lat": "42.750124",
            "lon": "-95.556057",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prairie Pioneer Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.750124,-95.556057\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by Davenport artist Helen Hinrichson in 1937, for the Masonic Temple in Cherokee. The mural serves as a portrait of John F. Potter, an early pioneer, and now hangs in the Cherokee County Courthouse in the Board of Supervisors room.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t520 W Main St.<br />Cherokee County Courthouse<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Cherokee Community Theatre",
            "lat": "42.754509",
            "lon": "-95.555540",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cherokee Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.754509,-95.555540\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cherokee Community Theatre entertains, enriches and inspires the Cherokee community, through inclusive theater, arts programs and volunteerism. The thriving theater company produces dramas, comedies and musicals on a year-round basis.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t530 W Bluff St.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.225.2990</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Iowa River Landing Sculpture Walk",
            "lat": "41.680012",
            "lon": "-91.557170",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-artpublic-iowariverlandingsculpturewalk.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa River Landing Sculpture Walk</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.680012,-91.557170\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110mi.</span></div>\n\t\t</div>\n\n\t\t<p>Eleven permanent sculptures, all based on a literary theme, create the Iowa River Landing Sculpture Walk. The works were installed in 2013 and celebrate the literary heritage of Iowa City and the University of Iowa. Each sculpture is by an Iowa artist and is based on a work in the Iowa Writer&#039;s Library, located in the Coralville Marriott Hotel and Conference Center.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tQuarry Rd.<br />Edgewater Park<br />Coralville, IA 52241<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.248.1713</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.coralville.org/index.aspx?nid=668\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Parade of Reds",
            "lat": "41.662552",
            "lon": "-91.551170",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Parade of Reds</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.662552,-91.551170\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The painting is comprised of 50 16&quot; squares of shades of red color displaying Artist Julian Stanczak&#039;s characteristic obsessive lines creating a striking visual pattern. Stanczak uses repeating forms to create compositions that are manifestations of his visual experiences. Stanczak&#039;s work is an art of experience, and is based upon structure of color.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t801 Newton Rd.<br />Dental Science Building<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Nile Kinnick Statue",
            "lat": "41.657462",
            "lon": "-91.551103",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nile Kinnick Statue</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.657462,-91.551103\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lawrence Nowlan created this bronze statue in 2006 to commemorate student-athlete Nile Kinnick, a native of Adel. Kinnick was an honor student at the University of Iowa, elected student body president, and played football, basketball, and baseball for Iowa. Kinnick won the Heisman Trophy in 1939. Because of World War II, he left law school after one year and joined the Naval Air Reserve. He was in training to be a fighter pilot and died at age 24, during a training flight off the USS Lexington, off the coast of Venezuela.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t825 Evashevski Dr.<br />Kinnick Stadium<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "&quot;American Gothic&quot; Barn",
            "lat": "41.917837",
            "lon": "-91.489422",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">&quot;American Gothic&quot; Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.917837,-91.489422\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Mount Vernon native Mark Benesh was commissioned in 2008 to paint a larger than life version of Grant Wood&#039;s famous &quot;American Gothic&quot; on this barn east of Mount Vernon.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1278 US Hwy. 30<br />Mount Vernon, IA 52314<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Country Road Players Theatre",
            "lat": "43.110427",
            "lon": "-92.035207",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Country Road Players Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.110427,-92.035207\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Country Road Players is a community theatre group out of Northeast Iowa that believes in bringing together generations of community members of all ages and qualifications to create quality, local theatre. The group often performs at Turkey Valley Community Schools.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3219 IA Hwy. 24<br />Turkey Valley Music Auditorium<br />Jackson Junction, IA 52171<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Iowa Portraits",
            "lat": "41.664120",
            "lon": "-91.542571",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Portraits</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.664120,-91.542571\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111mi.</span></div>\n\t\t</div>\n\n\t\t<p>In his art for the College of Public Health, Iowa Portraits, Peter Feldstein traveled throughout the state photographing the diversity of residents whose lives are affected by Public Health – in other words, everyone. From more than 300 images, he chose twelve that reflected an iconic representation of the face of Public Health in Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t105 River St.<br />College of Public Health Building<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.242.6195</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/work/iowa-portraits\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "University of Iowa Museum of Art",
            "lat": "41.664787",
            "lon": "-91.541127",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">University of Iowa Museum of Art</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.664787,-91.541127\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Established in 1969, UIMA is one of the leading university art collections in the country. Approximately 14,500 objects constitute diverse collections that include paintings, sculpture, prints, drawings, photographs, ceramics, textiles, jade, and silver. After the flood of June 2008, the museum building was deemed unsuitable for the return of the artwork. However, the UIMA collection was saved, and through the use of temporary facilities and creative outreach, the museum continues to offer the invaluable experience of art to the University, the community, and the state of Iowa.\r\n\r\nThe museum’s dedicated spaces on campus include the UIMA@IMU, a 4,000-square-foot visual classroom in the Iowa Memorial Union that houses more than 500 works of art from the collections. Temporary and traveling exhibitions are hosted in the Black Box Theater in the third floor at the IMU.\r\n\r\nA new museum facility is being planned as of 2016. The new building will house the museum’s world-class collections and will provide classrooms and art labs as a mode of integrating the museum with the study of the visual arts and the academic mission of the University of Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t150 N. Riverside Drive 100 OMA<br />Iowa City, IA 52242<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.335.1727</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://uima.uiowa.edu/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Hancher Auditorium",
            "lat": "41.670563",
            "lon": "-91.537245",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hancher Auditorium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.670563,-91.537245\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Hancher is a multidisciplinary performing arts presenter committed to connecting artists and audiences with transformational artistic experiences. For more than 40 years, Hancher has been the cultural hub of the University of Iowa campus—presenting world-class dance, music, and theater. Along the way, Hancher has extended its reach far beyond campus, engaging thousands of Iowans each year, on campus, throughout the community, and across the state. Hancher is one of the leading university presenters of the performing arts in the nation and has earned an international reputation for excellence. The new Hancher Auditorium, which will replace the facility destroyed by flooding in 2008, will open in the fall of 2016.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tPark Rd.<br />University of Iowa<br />Iowa City, IA 52242<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.335.1160</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.hancher.uiowa.edu\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "2-3-1-1",
            "lat": "41.663835",
            "lon": "-91.537910",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">2-3-1-1</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.663835,-91.537910\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Sol LeWitt is known internationally for complex, three-dimensional structures. He created this sculpture in 1994 out of aluminum. LeWitt refers to his work as structure, rather than sculpture, and is most interested in the initial, generative idea of his work.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t205 N Madison St.<br />Iowa Advanced Technology Laboratories<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Black Box Theater",
            "lat": "41.663120",
            "lon": "-91.538290",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Black Box Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.663120,-91.538290\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Black Box Theater, located on the third floor of the Iowa Memorial Union, has been renovated for periodic use as an art exhibition space.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t125 N Madison St.<br />Iowa Memorial Union<br />Iowa City, IA 52242<br />Johnson County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://uima.uiowa.edu/black-box-theater/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Johnson County",
            "lat": "41.808670",
            "lon": "-91.500459",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Johnson County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.808670,-91.500459\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Johnson County Freedom Rock® in Solon features the namesake of Johnson County, Colonel, Congressman, Senator and Vice President Richard Johnson. When Congress declared the War of 1812, Johnson went to Kentucky and recruited 500 volunteers. He is most well-known for the Battle of Thames and killing Native American Chief Tecumseh. Johnson had been wounded four times and was shot in the shoulder by Tecumseh. As Tecumseh advanced to tomahawk Johnson, Johnson shot back and killed Tecumseh with a single pistol shot. Solon natives Lester and Paul Pavel are represented by two B-24s. Both Pavel brothers were killed during World War II. The USS Gambier Bay, sunk during the Battle of Leyte Gulft, and the mortar both represent veterans residing in Johnson County. The rock also shows the Tomb of the Unknown Soldier at Arlington National Cemetery in Virginia. Since 1921, Unknown Soldiers have been laid to rest in the tomb. It is guarded at all times. The Johnson County (Solon) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. F16 and N Chabal St.<br />Solon, IA 52333<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Ridge and Furrow",
            "lat": "41.663069",
            "lon": "-91.536081",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ridge and Furrow</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.663069,-91.536081\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Ridge and Furrow was designed by Peter Randall-Page for the University of Iowa campus in 2011. Randall-Page’s work has been informed and inspired by the study of organic form and its subjective impact on human emotions. Randall-Page introduced an axis of symmetry through the length of the stone, and the ridge crosses this axis twice in order to be continuous. The result is a carved mirrored image. Yet, because the rock itself is asymmetrical, the pattern becomes distorted. The artist suggests that the sculpture resembles the hemispheres of the brain; cleft, yet connected in its labyrinthine convolutions.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tT. Anne Cleary Walkway<br />University of Iowa<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "River of Life",
            "lat": "41.657266",
            "lon": "-91.538169",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">River of Life</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.657266,-91.538169\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Gary Drostle&#039;s River of Life, a horizontal mosaic set in the floor, depicts a river connecting our most ancient cultures symbolizing a path of life. The mouth of the river represents a gateway and the winding curves of the river symbolize the path to enlightenment. The river is both the bringer of life and the purification of health. The patterns along the river’s edge reference both Native American art and American quilts. This river represents the meandering pattern of both the Iowa River and an individual’s journey through life.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t309 S Madison St.<br />Campus Recreation and Wellness Center<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Voyager",
            "lat": "41.658416",
            "lon": "-91.537033",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Voyager</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.658416,-91.537033\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Voyage was the first sculpture purchased with funds provided by the Art in State Buildings Program, initiated in 1978. With public works such as Voyage, Louise Nevelson creates a visual dialogue using existing scenery and groups of vertical elements, evocative of trees or plant like forms. Nevelson preferred to see her large-scale outdoor sculpture, which she undertook in the last fifteen years of her life, as environmental architecture. Voyage fits this description as it commands attention within the closed-off courtyard of the Lindquist Center. The work invites dialogue with the viewer, offering a variety of shapes, forming spatial relationships with both the spectator and the architectural environment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t240 S Madison St.<br />Lindquist Center Courtyard<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Iowa City Community Theatre",
            "lat": "41.621901",
            "lon": "-91.546383",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa City Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.621901,-91.546383\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa City Community Theatre was opened in 1956. It is a non-profit organization dedicated to promoting the dramatic arts in Iowa City. The theatre strives to provide an open avenue for individual creative expression through participation in all aspects of high quality amateur theatrical productions. It operates at all age levels and has educational programs about theatre performance, production, and creation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4261 Oak Crest Hill Rd. SE<br />Johnson County Fairgrounds, Exhibit Hall A<br />Iowa City, IA 52244<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.338.0443</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.icctheatre.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Bridge for Iowa",
            "lat": "41.661587",
            "lon": "-91.533097",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-artpublic-bridgeforiowa.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bridge for Iowa</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.661587,-91.533097\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Siah Armajani created this walkway in 2000 out of steel and glass. Armajani has an international reputation as a sculptor working in monumental, architectural forms.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t129 E Jefferson St.<br />Biology Building<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Literary Walk",
            "lat": "41.661294",
            "lon": "-91.532326",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-artpublic-artwalk-8b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Literary Walk</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.661294,-91.532326\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Literary Walk celebrates, through public art, literary works by 49 writers who have ties to Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIowa Ave.<br />Iowa City, IA 52242<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.356.5237</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.icgov.org/?id=1585\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Public Space One",
            "lat": "41.663175",
            "lon": "-91.532724",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Public Space One</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.663175,-91.532724\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Public Space One&#039;s mission is to provide access to innovative, non-commercial art and arts opportunities to the Iowa City community. Exhibitions, performances, happenings, and workshops are all free or low cost and participation is open to all.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t120 N Dubuque St.<br />Iowa City, IA 52245<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.331.8893</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://publicspaceone.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Sleep Mural",
            "lat": "41.656402",
            "lon": "-91.534290",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-artpublic-sleep.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sleep Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.656402,-91.534290\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This metal relief mural is installed on the Northwest exterior wall of the main post office in downtown Iowa City. Sleep was intended as a commentary on the Jonestown Massacre, but is reminiscent of Longo&#039;s early &quot;Men in Cities&quot; depictions of people in contorted postures.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 S Clinton St.<br />Main Post Office<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Riverside Theatre",
            "lat": "41.663946",
            "lon": "-91.530288",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Riverside Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.663946,-91.530288\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mission of Riverside Theatre is to provide an artistic home for theatre professionals from Iowa and beyond, and to entertain audiences with intimate, engaging productions from the classics to world premieres.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t213 N Gilbert St.<br />Iowa City, IA 52245<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.338.7672�</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://riversidetheatre.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Englert Civic Theatre",
            "lat": "41.659800",
            "lon": "-91.532324",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-artperforming-englertcivictheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Englert Civic Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.659800,-91.532324\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Englert Theatre was built in 1912, as a theatre for vaudeville shows and early motion pictures. The theatre was almost destroyed in 1926 by a massive fire, but was saved and rebuilt to reflect the elegant movie theatres being built across the country in the 1920s and 1930s. The theatre remained open until 1999 when it was sold to a bar owner who had plans to turn it into a nightclub. The theatre was saved, however, by a group of citizens who didn&#039;t want to lose this piece of local history in Iowa City. After a massive renovation process, the Englert Civic Theatre was reopened in 2004, and gave its first live performance in over 60 years. The theatre now holds a wide variety of live performances. The Englert Theatre was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t221 E Washington St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.688.2653</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.englerttemp.info/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Stuit Hall Collection",
            "lat": "41.662213",
            "lon": "-91.530531",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-artpublic-suithallcollection.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stuit Hall Collection</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.662213,-91.530531\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Stuit Collection is comprised of 14 paintings reflecting the history and future of Stuit Hall by John Dilg. The paintings in this series form an iconography based on Stuit Hall&#039;s history blended with Dilg&#039;s personal history of the space. From 1973 to 1999 the School of Art and Art History graduate program in painting and drawing occupied this building. Previously, it was home to the School of Music and was referred to as &quot;Old Music&quot; by the University of Iowa community. The paintings depict the stories of the building and represent its metamorphosis in purpose through the years. Certain paintings are more direct recordings of the building&#039;s heritage.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t335 E Jefferson St.<br />Stuit Hall<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Fairfield Arts and Convention Center",
            "lat": "41.008859",
            "lon": "-91.964248",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jefferson-artmuseum-fairfieldartandconventioncenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fairfield Arts and Convention Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.008859,-91.964248\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fairfield Arts and Convention Center is a gathering place designed to showcase a world of arts and culture. This beautiful facility promises a rich and diverse season of entertainment, featuring music, comedy, theater and dance performances. The convention center opened in 2007, and houses the Stephen Sondheim Center for the Performing Arts, the first building in the United States to be named for celebrated composer/lyricist Stephen Sondheim.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 N Main St.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.472.2000</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://fairfieldacc.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Iowa Contemporary Art (ICON)",
            "lat": "41.007430",
            "lon": "-91.963916",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jefferson-artmuseum-nhr-icon.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Contemporary Art (ICON)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.007430,-91.963916\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Iowa Contemporary Art is a non-profit organization founded in 2003 to give the gift of the fine art experience to the citizens of Southeast Iowa. ICON exhibitions have set standards of excellence for the art community. The ICON gallery is in the heart of the Fairfield Cultural District and is the center of the growing Fairfield art scene.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t58 N Main St.<br />Fairfield, IA 52256<br />Jefferson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.469.6252</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.icon-art.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Washington Community Theater",
            "lat": "41.295331",
            "lon": "-91.710259",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/washington-artperforming-washingtoncommunitytheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Washington Community Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.295331,-91.710259\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Washington Community Theater is a performing arts group in southeast Iowa that presents four diverse productions annually—ranging from comedies and classics to musicals and dramas. A number of independent acting groups and local schools also utilize the McCleery Washington Community Center, offering first-rate entertainment across all genres. Visit its website to learn how to get involved or purchase tickets to an upcoming show.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2227 250th St.<br />Community Center<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.653.5175</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.wctheater.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Central Park Centennial Fountain",
            "lat": "41.298916",
            "lon": "-91.692370",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Central Park Centennial Fountain</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.298916,-91.692370\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Situated within Central Park, located in Historic Downtown Washington, Centennial Fountain was erected and dedicated in honor of Washington’s 1939 Centennial Celebration. The fountain stands as the only one of its type in the continental United States featuring a multi-colored light show and distinctive water patterns. Centennial Fountain is the focus of Washington’s Central Park and is the site for many of the community’s special events.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 E Washington St.<br />Central Park<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.653.6584</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.washingtoniowa.net\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Mills Seed Co. Building",
            "lat": "41.301113",
            "lon": "-91.692141",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/washington-historicsite-millsseedco.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mills Seed Co. Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.301113,-91.692141\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mills Seed Co. building was constructed in 1907 to serve as the western distribution center for Mills Seed Co., headquartered in Rose Hill, New York. In 1934, the building was purchased by Curran Co. which produced valentines, tally cards for Bridge, greeting cards and many other printed items. The Washington Pearl Button factory occupied the building in 1952. After falling into disrepair it was listed on the ten most endangered buildings in Iowa in 2009. The following year it was moved about ten blocks to its current location in the Washington Historic District where you can visit, listen to live music and shop for antiques.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t212 N Iowa Ave.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Estherville Meteorite Sculpture",
            "lat": "43.401833",
            "lon": "-94.832962",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/emmet-artpublic-esthervillemeteoritesculpture.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Estherville Meteorite Sculpture</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.401833,-94.832962\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1980 the Estherville Area Arts Council held Estherville Sculpture Competition with the theme of the Estherville Meteorite. The winner of the competition was Tom Gibbs, a Dubuque sculptor. The sculpture was titled “Estherville Meteorite” and the Estherville Area Arts Council purchased the original model.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA Hwy. 4 and IA Hwy. 9<br />Estherville, IA 51334<br />Emmet County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Loess Hills: Strata",
            "lat": "41.401248",
            "lon": "-95.658659",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-artpublic-loesshillsstrata.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Loess Hills: Strata</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.401248,-95.658659\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This unique rest area experience begins with an interpretive sculpture by David B. Dahlquist. The sculpture is modeled after the Loess Hills, and introduces visitors to the region&#039;s rich soil.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tInterstate Hwy. 80 Eastbound<br />Mile Post 19 Rest Area<br />Underwood, IA 51576<br />Pottawattamie County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.rdgusa.com/projects/the-loess-hills-strata-pottawattamie-county-rest-area#/markets/government\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World War I Monument",
            "lat": "43.402226",
            "lon": "-94.836020",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World War I Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.402226,-94.836020\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The World War I Monument on the Estherville Library Square commemorates soldiers from the Emmet County area who fought in World War I. According to the Estherville Enterprise of January 5, 1939, the granite monument listed the names of 612 soldiers and featured a life-size doughboy. After its mid-winter installation, the monument was officially dedicated on Memorial Day 1939. The Service Star Legion, previously known as the War Mothers, led the effort to raise $4,000 to purchase the 9-ton monument.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Central Ave.<br />Estherville Public Library<br />Estherville, IA 51334<br />Emmet County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Washington Area Performing Arts &amp; Event Center",
            "lat": "41.288452",
            "lon": "-91.695672",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Washington Area Performing Arts &amp; Event Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.288452,-91.695672\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Washington Area Performing Arts and Events Center is a state-of-the-art venue for plays, musicals, concerts, recitals, comedians, dancers, speakers, festivals, business meetings, conventions, and many other events.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1111 South Ave. B<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319-653-2143</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.washingtonauditorium.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Moorhead Cultural Center of the Loess Hills",
            "lat": "41.922330",
            "lon": "-95.851031",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monona-historymuseum-moorheadculturalcenteroftheloesshills.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Moorhead Cultural Center of the Loess Hills</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.922330,-95.851031\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Moorhead Cultural Center of the Loess Hills features exhibits highlighting local arts and interests. It is housed in the former Cover School, a one-room school that operated from 1929 to 1955.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t120 Oak St.<br />Moorhead, IA 51558<br />Monona County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.886.5384</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Fred C. Brummett Bridge",
            "lat": "40.739284",
            "lon": "-95.012871",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fred C. Brummett Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.739284,-95.012871\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Fred C. Brummett was the first Page County soldier to die in France during World War I. He was killed in action in March 1918 and was decorated with the Croix de Guerre for his bravery. A new bridge over the Nodaway River at Clarinda was nearly complete at the time of his death, so it was named in his honor. According to a bulletin from the Iowa State Highway Commission, some 3,000 people attended the 1918 dedication of the Brummett Bridge, where Gov. William L. Harding offered a few remarks, and the Major George W. Landers&#039; Clarinda Military Band and the Liberty Loan Glee Club performed a few tunes. The original 250-foot-long steel pony truss bridge was replaced by a concrete bridge in 1949, but a memorial plaque remains.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. J35<br />Clarinda, IA 51632<br />Page County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Clarinda Carnegie Art Museum",
            "lat": "40.740581",
            "lon": "-95.038288",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-artmuseum-clarindacarnegieartmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clarinda Carnegie Art Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.740581,-95.038288\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 2014 Karen and Robert Duncan opened the Clarinda Carnegie Art Museum in the historic Clarinda Carnegie Library building. The Clarinda Carnegie Art Museum provides Clarinda and Southwest Iowa arts enrichment through educational programming, including high-quality exhibitions. In January 1908, the town of Clarinda received $15,000 in grant funding from the Carnegie Library Foundation for the construction of a new library building. Clarinda resident G. William Richardson donated the land and W.W. Welch was chosen as the architect for the project. The new library was formally dedicated on April 15, 1909 and remained in this building for 50 years. The Carnegie building was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 N 16th St.<br />Clarinda, IA 51632<br />Page County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Mills County",
            "lat": "41.016765",
            "lon": "-95.403864",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Mills County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.016765,-95.403864\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mills County Freedom Rock® is in Emerson, a town with a population just over 400 that has lost two native sons in combat in Afghanistan. Both are memorialized on the local rock. In November 2004, Iowa National Guard Specialist James Kearney III became the first Iowan to die in the War in Afghanistan when his convoy was hit with rocket-propelled grenades. Then on June 27, 2012, Army Sergeant James “Jamie” Skalberg Jr. was killed in action when an improvised explosive device struck his vehicle. Different eras and branches of the military are honored on the back of the rock, which includes a Union soldier, a World War II soldier, an Iraq/Afghanistan soldier, a ship and a jet. The Mills County (Emerson) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMorton Ave. and King St.<br />Emerson, IA 51533<br />Mills County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Clarinda Community Theatre",
            "lat": "40.739158",
            "lon": "-95.049702",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-artperforming-clarindacommunitytheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clarinda Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.739158,-95.049702\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">115mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clarinda Community Theatre encourages and promotes an interest in participating, observing and supporting amateur theater in the local community. The group performs select shows during the year at Clarinda High School.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 N Cardinal Dr.<br />Clarinda High School Auditorium<br />Clarinda, IA 51632<br />Page County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.542.2143</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.clarindatheatre.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Page County",
            "lat": "40.721264",
            "lon": "-95.037648",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-monument-clarindafreedomrock-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Page County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.721264,-95.037648\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">115.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Page County Freedom Rock® in Clarinda features Glenn Miller, a Clarinda native who was a best-selling big band musician. At the peak of his musical career, Miller joined the war effort and went missing over the English Channel in December 1944. It also shows the &quot;Page, Banner County of Iowa County&quot; flag, awarded to the county for having more men serve in the Civil War per capita than any other county in Iowa. The Page County (Clarinda) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1600 S 16th St.<br />Nodaway Valley Historical Museum<br />Clarinda, IA 51632<br />Page County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Goeken Park Overlook",
            "lat": "43.041623",
            "lon": "-91.837253",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Goeken Park Overlook</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.041623,-91.837253\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">115.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The railing at Goeken Park Overlook was created by Dennis McElree. It is an artistic steel barrier with images of cultural and natural themes. The park overlooks the community of Eldorado and the surrounding Turkey River Valley. This installation is part of the Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. The Goeken Park Overlook is located on the River Bluffs Scenic Byway.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t29191 Lincoln Rd.<br />IA Hwy. 150<br />West Union, IA 52175<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Three Elements",
            "lat": "42.483643",
            "lon": "-91.461104",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Three Elements</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.483643,-91.461104\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116mi.</span></div>\n\t\t</div>\n\n\t\t<p>Three Elements, by Cara Briggs Farmer, is a collection of three steel sculptures representing sun, water, and agriculture - all critical to Manchester’s development and success. This installation is part of the Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. Three Elements is located on the Delaware Crossing Scenic Byway.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t314 W Main St.<br />Manchester, IA 52057<br />Delaware County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Iowa Farm Life Mural",
            "lat": "42.483285",
            "lon": "-91.456979",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/delaware-artpublic-iowafarmlifemural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Farm Life Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.483285,-91.456979\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by William E. Henning in 1938, this mural was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t166 E Delaware St.<br />U.S. Post Office<br />Manchester, IA 52057<br />Delaware County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://wpamurals.org/mancheIA.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Clay County",
            "lat": "43.162333",
            "lon": "-95.328481",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Clay County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.162333,-95.328481\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clay County Freedom Rock® honors all who have served and the families who sacrifice as their loved ones are serving. The south side of the rock depicts Clay County&#039;s own Merlyn Dethlefsen, Air Force Medal of Honor recipient for actions in the Vietnam War. Major Dethlefsen was flying an F-105 in Vietnam and engaged in a fire suppression mission to take out enemy encampments in advance of a bomber mission. When Dethlefsen&#039;s aircraft was severely damaged, he should have returned to base, but he knew the bombers would be sitting ducks if the mission wasn&#039;t successful. Ignoring intense enemy firepower, Dethlefsen flew repeated close range strikes through a hail of anti-aircraft fire and MIG counterattacks, eventually rendering the enemy&#039;s defense ineffective and saving the mission. The north side memorializes Howard Roberts, an Everly native. Roberts was a Navy man aboard the USS Asheville, a small gun boat, in the Pacific Ocean shortly after Pearl Harbor. For quite a while, Roberts’ family back home thought he was missing in action – but the fate of the Asheville was not good. The boat had engine trouble and fell behind the rest of the fleet. The Asheville was discovered by a Japanese scout plane and sunk by two Japanese destroyers. The Japanese asked if there was an officer among the swimmers and took one aboard and left the rest to die. The officer eventually died in a prison camp, but not before telling the story of the fate of the Asheville. The Asheville was one of the few American surface ships lost with no known survivors at the end of the war. The Clay County (Everly) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Ocheyedan St.<br />Everly, IA 51338<br />Clay County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Manchester Whitewater Park",
            "lat": "42.482386",
            "lon": "-91.452390",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Manchester Whitewater Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.482386,-91.452390\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Manchester Whitewater Park, by Dan Hatala, is a large-scale mural depicting recreationists enjoying the Maquoketa River. The mural is located on a bridge abutment. This installation is part of the Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. Manchester Whitewater Park is located on the Delaware Crossing Scenic Byway.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Marion St. &amp; S Franklin St.<br />Maquoketa River Bridge<br />Manchester, IA 52057<br />Delaware County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Wilder Memorial Museum",
            "lat": "42.684047",
            "lon": "-91.536028",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-historymuseum-wildermemorialmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wilder Memorial Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.684047,-91.536028\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wilder Memorial Museum has an extensive collection. Exhibits include military items dating to the Revolutionary War, Victorian art glass and furniture, including a collection of forty hanging lamps, and correspondence from well known individuals such as Lyndon Johnson, Will Rogers Jr., and Helen Keller. There is also a collection of Meissen and Dresden porcelain and a large exhibit of Impressionist paintings by local artist Myrwyn Eaton.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t123 W Mission St.<br />IA Hwy. 3<br />Strawberry Point, IA 52076<br />Clayton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.933.4615</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://wildermuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Bily Brothers Mural",
            "lat": "43.198587",
            "lon": "-91.950968",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-artpublic-bilybrothersmural.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bily Brothers Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.198587,-91.950968\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural, painted by artist Carl Homstad of Decorah, Iowa, depicts local clock carvers Frank and Joseph Bily. The Bily Brothers were born and raised on a farm between Ridgeway and Spillville and began woodcarving as a hobby in 1913 to pass the long hours during the winter. The entire collection of clocks is on display at the Bily Clocks Museum in Spillville.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t438 S Main St.<br />Spillville, IA 52168<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Dvorak by the Turkey River Mural",
            "lat": "43.198544",
            "lon": "-91.951025",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-artpublic-dvorakbytheturkeyriver.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dvorak by the Turkey River Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.198544,-91.951025\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t438 S Main St.<br />Spillville, IA 52168<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Antonin Dvorak Memorial",
            "lat": "43.199763",
            "lon": "-91.947422",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-monument-antonindvorakmemorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Antonin Dvorak Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.199763,-91.947422\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This memorial, erected in 1925 in Riverside Park, is a tribute to Antonin Dvorak, a Czech composer. Dvorak stayed briefly in Spillville in the late 1800s, during which time, he composed the String Quartet in F and the String Quintet in E Flat and a sonatina for violin and piano.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRiverside Park<br />Spillville, IA 52132<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Sailors and Soldiers Memorial Bandstand",
            "lat": "43.205173",
            "lon": "-91.951127",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-memorial-sailorsandsoldiersmemorialbandstand.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sailors and Soldiers Memorial Bandstand</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.205173,-91.951127\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>A group called the Civic Improvement Association formed in Spillville in 1919. Members aimed to develop a public square in the community as a memorial to those who advanced the causes of liberty and equality by fighting in World War I. The Soldiers and Sailors Memorial Bandstand was built on a primitive roundabout and dedicated on July 4, 1921. Since it was constructed, additional brass plaques have been added to commemorate local residents who have served in subsequent wars. In 2016, the Spillville American Legion and American Legion Auxiliary undertook a project to renovate the bandstand and make it more accessible.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t126 N Main St.<br />Spillville, IA 52132<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Spillville, Circa 1882",
            "lat": "43.205434",
            "lon": "-91.951373",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-artpublic-spillvillecirca1882.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spillville, Circa 1882</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.205434,-91.951373\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa, who has painted over 40 murals in the Midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 Church St.<br />Spillville, IA 52168<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Iowa Fair Mural",
            "lat": "41.556207",
            "lon": "-95.889163",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-artpublic-iowafair.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Fair Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.556207,-95.889163\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>During President Franklin D. Roosevelt’s New Deal, from 1933-1942, several programs within the Works Project Administration existed to provide work for Americans. Some of these programs were focused on increasing employment among artists by commissioning fine art for public buildings. Post Offices were often selected for murals, as they were generally visited by everyone. Artists were chosen through competitions and paid a lump sum for their work. Francis Robert White painted Iowa Fair for the Missouri Valley Post Office in 1938.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t116 North 5th St.<br />Missouri Valley, IA 51555<br />Harrison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Johnny Clock Museum",
            "lat": "40.995121",
            "lon": "-91.764785",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Johnny Clock Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.995121,-91.764785\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Johnny Clock museum is dedicated to the one-of-a-kind collection of clocks carved by John R. McLain over the last 37 years. The Johnny Clock Museum features over 55 hand carved clocks and is located 11 miles from Fairfield. Born with dyslexia, clock artist John R. McLain, is unable to draw his vision on paper, but was able to carve them in wood. To this day there are no blueprints for the clocks. Several of the Museum&#039;s visitors have sent pieces of wood that have been incorporated into many of the clocks.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t711 W Main St.<br />Lockridge, IA 52635<br />Jefferson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.696.3711</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Depot Mural",
            "lat": "43.183291",
            "lon": "-91.864250",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-artpublic-depotmural.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Depot Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.183291,-91.864250\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 N Maryville St.<br />Calmar, IA 52132<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Gazebo Mural",
            "lat": "43.182409",
            "lon": "-91.864516",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-artpublic-gazebomural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gazebo Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.182409,-91.864516\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 Main St.<br />Calmar, IA 52132<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Geared Up",
            "lat": "42.107790",
            "lon": "-91.292463",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Geared Up</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.107790,-91.292463\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Geared Up, by Cara Briggs Farmer, is a steel sculpture of a Grant Wood-style window featuring images of the river and landscape inset with motorcycle parts from the National Motorcycle Museum. This installation is part of the Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. Geared Up is located on the Grant Wood Scenic Byway.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Main St. &amp; S Elm St.<br />Co. Rd. E28<br />Anamosa, IA 52205\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Eagle&#039;s Nest",
            "lat": "42.971849",
            "lon": "-91.652091",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Eagle&#039;s Nest</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.971849,-91.652091\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Eagle&#039;s Nest, by Dennis McElree, represents the approximate size of an eagle&#039;s nest if an average-sized adult human were an average-sized mature bald eagle. This project was the inspiration for the statewide Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. Eagle&#039;s Nest is located on the River Bluffs Scenic Byway.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t23493 Canoe Rd.<br />Turkey River Recreational Corridor Trail<br />Elgin, IA 52141<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Okoboji Summer Theatre",
            "lat": "43.393941",
            "lon": "-95.128964",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-artperforming-okobojisummertheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Okoboji Summer Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.393941,-95.128964\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Okoboji Summer Theater is a community organization that provides live theatrical performances to the area. The theater originated in 1953, and is still performing today. They have incorporated the &#039;Boji Bantam Children&#039;s Theater into their organization to bring theater to people of all ages.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2001 Highway 71 N<br />Spirit Lake, IA 51360<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.332.7773</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.stephens.edu/okobojisummertheatre/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Pearson Lakes Art Center",
            "lat": "43.395357",
            "lon": "-95.128408",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-artperforming-pearsonlakesartcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pearson Lakes Art Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.395357,-95.128408\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pearson Lakes Art Center brings world class art, performances, educational programming, and more to the Iowa Great Lakes Region. Whether you&#039;re a weekend visitor to the lakes area or a long time resident, discover how you can experience all that your art center has to offer. There truly is something for everyone at the PLAC! The Pearson Lakes Art Center houses six galleries, a performing arts theatre, an interactive gallery, classrooms, pottery room, library, events hall, and gift shop. And, visiting the PLAC is FREE every day! We welcome you! Enjoy a live performance. Explore world class art. Take a class and create!</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2201 Hwy. 71<br />Okoboji, IA 51355<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.332.7013�</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://lakesart.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Norman Borlaug Statue",
            "lat": "43.371345",
            "lon": "-92.117413",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Norman Borlaug Statue</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.371345,-92.117413\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dr. Norman Borlaug was born on a farm outside the small town of Cresco, Iowa. He would go on to see starving people during the Great Depression and become fascinated by diseases wiping out entire fields of crops. He would spend his life tirelessly researching, innovating, teaching, and crusading for progress in agriculture to feed the world. For his life’s work, Dr. Borlaug is one of only three Americans ever to receive the trifecta of humanitarian awards. He joined Dr. Martin Luther King, Jr. and Elie Wiesel in winning the Nobel Peace Prize, the Congressional Gold Medal and the Presidential Medal of Freedom. He is the only American to hold that trifecta of honors and also the National Medal of Science. This commemorative sculpture was created by Karen Laub-Novak.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBeadle Park<br />Cresco, IA 52136<br />Howard County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Cresco Opera House and Community Theatre",
            "lat": "43.373481",
            "lon": "-92.117120",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cresco Opera House and Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.373481,-92.117120\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cresco Opera House opened in early 1915 and was uniquely designed to accommodate both live shows and motion pictures, incorporating a stage with footlights as well as a projection booth. At the time of its construction, Vaudeville shows were still quite popular, and silent movies were on the rise, so Cresco needed a versatile performance venue. The building continues to serve the community&#039;s entertainment needs as a movie theater and as a performance venue for productions by the Cresco Community Theatre group. The theater was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 2nd Ave. W<br />Cresco, IA 52136<br />Howard County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.547.4292</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.crescotheatreoperahouse.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Grant Wood Memorial Mural",
            "lat": "42.108432",
            "lon": "-91.285433",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-artpublic-grantwoodmemorialmural.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grant Wood Memorial Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.108432,-91.285433\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Anamosa, IA 52205<br />Jones County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.8075</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Iowa Farming Mural",
            "lat": "43.373942",
            "lon": "-92.117713",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Farming Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.373942,-92.117713\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by Richard Haines in 1937, this mural was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t128 2nd Ave. W<br />U.S. Post Office<br />Cresco, IA 52136<br />Howard County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Starlighters II Theatre",
            "lat": "42.108507",
            "lon": "-91.283655",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-artperforming-starlightersii.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Starlighters II Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.108507,-91.283655\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Starlighters II Theatre was opened in 1974. In 1978, the Anamosa Community Theatre joined with Starlighters, making them the premier theatre organization in the area. The theatre group serves a six county audience and offers four productions a year.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t136 E Main St.<br />Anamosa, IA 52205<br />Jones County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.462.4793</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.starlighters.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Jump In",
            "lat": "42.429507",
            "lon": "-91.330652",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jump In</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.429507,-91.330652\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Jump In, by late local artist Mike Seibert, is a steel archway that depicts adults and children participating in water recreation - family-friendly fishing, water skiing and lakeside activities. For 26 years, Seibert was an art teacher at Maquoketa Valley Schools. He passed away in Feburary 2018, one year prior to the dedication of this intallation. Jump In is part of the Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. Jump In is located on the Delaware Crossing Scenic Byway.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tFranklin St. &amp; 3rd St.<br />Delhi City Park<br />Delhi, IA 52223<br />Delaware County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Abraham Lincoln Statue and Park",
            "lat": "43.003245",
            "lon": "-91.652621",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-monument-abrahamlincolnstatueandpark-2b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Abraham Lincoln Statue and Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.003245,-91.652621\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Erected in 1902, this handsome bronze statue of Abraham Lincoln was sculpted by George E. Bissell and serves as a tribute to the soldiers and sailors of the Civil War. Also, located in Abraham Lincoln Park is the Clermont Veterans Memorial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t749 Mill St.<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Civil War Statues at Montauk",
            "lat": "43.008060",
            "lon": "-91.649099",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-statehistoricsite-montaukstatues.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Civil War Statues at Montauk</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.008060,-91.649099\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">122.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Tour the grounds of Montauk and you will find four life-sized statues of Civil War heroes: Generals Ulysses S Grant, William T. Sherman, Grenville Dodge and Admiral David Farragut. Larrabee fronted the money for these statues to be used at the Iowa Pavilion at the St. Louis World&#039;s Fair. The State of Iowa never reimbursed him, so he took them home to Montauk. George Edwin Bissell (1839-1929) sculpted Dodge, Farragut and Sherman. John Massey Rhind sculpted Grant.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t26223 Harding Rd.<br />Montauk State Historic Site<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Pioneer Room Mural",
            "lat": "41.275012",
            "lon": "-95.799347",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-artpublic-pioneerroommural-3b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pioneer Room Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.275012,-95.799347\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">122.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Grant Wood and Edgar Britton created this mural for the Hotel Chieftain in 1927. It now hangs at Iowa Western Community College.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2700 College Rd.<br />Looft Hall, Iowa Western Community College<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Main Street Circa 1915 Mural",
            "lat": "43.145878",
            "lon": "-91.765060",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Main Street Circa 1915 Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.145878,-91.765060\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">122.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. &quot;Main Street, Circa 1915&quot; mural was painted in 1993 and is 60 x 20 feet. It is located at the intersection of Main and Lydia Streets.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 N Lydia St.<br />Ossian, IA 52161<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Arts Center at Iowa Western",
            "lat": "41.273528",
            "lon": "-95.802961",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-artmuseum-artscenteriowawestern-2b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Arts Center at Iowa Western</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.273528,-95.802961\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">123mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Arts Center at Iowa Western Community College features art exhibits, musical performances, as well as theatre performances to the public.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2700 College Rd.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.388.7140</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://artscenter.iwcc.edu/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Van Buren County Family Farm Art Tribute",
            "lat": "40.750974",
            "lon": "-91.958245",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Van Buren County Family Farm Art Tribute</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.750974,-91.958245\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Van Buren County Family Farm Art Tribute is a large barn-shaped sculpture created to celebrate the rich agricultural heritage of Van Buren County and to thank area farmers for their longstanding efforts. The Van Buren County Artist Collaboration and University of Iowa students worked together on the project. This installation is part of the Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. The Van Buren County Family Farm Art Tribute is located on the Historic Hills Scenic Byway.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA Hwy. 1<br />Van Buren County Fairgrounds<br />Keosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Southwest Iowa Theatre Group",
            "lat": "40.772785",
            "lon": "-95.370445",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-artperforming-southwestiowatheatergroup.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Southwest Iowa Theatre Group</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.772785,-95.370445\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Southwest Iowa Theatre Group was established in the fall of 1957 and has been in continuous operation since. It is the oldest, non-profit community theater group, in continuous operation in the state. In its early years, three productions were staged per theater season which included fall, winter and spring productions. In 1997 a summer production was added to the theater season. A typical theater season now includes a drama,  comedy and two musical productions. In 1967, the City of Shenandoah gave the Southwest Iowa Theatre Group permission to attach an addition to the Rose Garden. This addition included a simple stage and a small auditorium.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t604 Sportsman Park Rd.<br />Shenandoah, IA 51601<br />Page County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Chanticleer Theatre",
            "lat": "41.254192",
            "lon": "-95.825555",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-theater-chanticleertheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chanticleer Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.254192,-95.825555\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chanticleer Community Theatre started in 1952. It prides itself on its history of having presented all types of shows including the classics, regional premiers, cutting-edge new releases, and family-centered performances. It encourages community involvement by hiring only local directors and casting local actors for the productions.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t830 Franklin Ave<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Lewis and Clark Monument and Scenic Overlook",
            "lat": "41.303407",
            "lon": "-95.858276",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-monument-lewisclarkmonumentmemorial.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lewis and Clark Monument and Scenic Overlook</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.303407,-95.858276\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lewis and Clark Monument was dedicated in 1936 to commemorate their journey across the United States, and their stop in Council Bluffs. The monument is part of the Lewis and Clark Trail, and shows the spot of their historic meeting with the Otoe and Missouri Native American tribes.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t19962 Monument Rd.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.328.4650</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://cbparksandrec.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Civil War Monument: Delaware County",
            "lat": "42.345043",
            "lon": "-91.243411",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Civil War Monument: Delaware County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.345043,-91.243411\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Civil War Monument was dedicated November 17, 1865 on the former campus of the old Bowen Collegiate Institute (later called Lenox College). The college, which operated from 1859-1944, had many students who enlisted and served in the 21st Iowa Infantry during the Civil War. The monument is inscribed with the names of the students including Dr. Mary Edwards Walker who attended the college in 1860 and is the only female to earn the Medal of Honor.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 College St. NE<br />Delaware County Historical Museum<br />Hopkinton, IA 52237<br />Delaware County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Modale School and Masonic Hall",
            "lat": "41.619026",
            "lon": "-96.012243",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-artperforming-modaleschoolandmasonichall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Modale School and Masonic Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.619026,-96.012243\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Modale School and Masonic Hall (also known as the Grand Lodge) was built in 1880 and played an important role in the development of Modale&#039;s public school system. In 1911, it was decided that a new school was needed, so this building was acquired by the Masons and remodeled. The second floor was used as the Masonic Lodge Hall, and the first floor included a stage for public performances. The Town and Country Arts group uses the hall for its stage productions. It was added to the National Register of Historic Places in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t107 S Main St.<br />Modale, IA 51556<br />Harrison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Ruth Anne Dodge Memorial",
            "lat": "41.267756",
            "lon": "-95.848396",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-monument-ruthanndodgememorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ruth Anne Dodge Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.267756,-95.848396\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ruth Anne Dodge Memorial is a solid bronze statue honoring the wife of Union Pacific Railroad engineer and Civil War veteran General Grenville M. Dodge. It was sculpted by Daniel Chester French, the creator of the Lincoln Memorial in Washington, D.C., and depicts a winged angel standing on the prow of a boat. It is said to be a representation of a dream Ruth Anne Dodge had for three nights before her death in 1916. The monument was completed in 1918 and added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tLafayette Ave. and N 2nd St.<br />Fairview Cemetery<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Lincoln Monument",
            "lat": "41.267965",
            "lon": "-95.852815",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-monument-lincolnmonumentandoverlook.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lincoln Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.267965,-95.852815\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lincoln Monument was erected to commemorate the visit of Abraham Lincoln to Council Bluffs on August 19, 1859. At this location, Lincoln viewed the extensive panorama of the valley of the Missouri River and in compliance with the law of Congress on November 17, 1863, he selected Council Bluffs as the eastern terminus of the Union Pacific Railroad. The monument was erected in October 1911.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t312 Lafayette Ave.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Bayliss Park and Veterans Plaza",
            "lat": "41.259201",
            "lon": "-95.851690",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-monument-baylissparkandveteransplaza.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bayliss Park and Veterans Plaza</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.259201,-95.851690\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Bayliss Park and Veterans Plaza is a central park area that is used for multiple purposes. The plaza features a large, unique fountain area, a permanent raised stage with a canopy that is used as a performance area, and the newly renovated Veterans Plaza, which honors veterans from the Civil War to today.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st Ave. and Pearl St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.328.4650</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Wellspring and Oculus",
            "lat": "41.259233",
            "lon": "-95.851893",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-artpublic-wellspring-oculus.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wellspring and Oculus</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.259233,-95.851893\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;Wellspring&quot; stands as the centerpiece of renovated Bayliss Park and replaces the original fountain, installed in the 1880’s. Artist Brower Hatcher&#039;s intent was to maintain the fountain&#039;s old form, while constructing an image of the future. The dome covering the pavilion, which the artist also designed and titled &quot;Oculus&quot;, uses colored rods and mirrored discs to unique effect.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st Ave and Pearl St<br />Bayliss Park<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.212.9088</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowawestfoundation.org/initiatives/iowa-west-public-art/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Haymarket Rabbits",
            "lat": "41.255898",
            "lon": "-95.851170",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-artpublic-haymarketrabbits.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Haymarket Rabbits</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.255898,-95.851170\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Look closer at these sculptures, which use bright and muted colors within a simple and recognizable form. Artist Deborah Masuoka uses the rabbit image to explore human emotions; according to the artist, “Once explored, the sculptures embrace deeper issues such as vulnerability, security, intimidation, and protection.”</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Main St. and Pearl St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.212.9088</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowawestfoundation.org/initiatives/iowa-west-public-art/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Swedish Dala Horse",
            "lat": "41.104377",
            "lon": "-91.544843",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-uniqueiowa-dalahorse-4.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Swedish Dala Horse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.104377,-91.544843\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Swedesburg was founded in the 1860s by Swedish immigrants. The Dala horse is located at the Swedish-American Museum in Swedesburg. The Dala Horse is a popular Swedish handicraft and souvenir.  The name comes from its home province, Dalarna, in central Sweden.  Since Viking Times, the horse has been considered a holy animal.  In many cultures throughout history, wooden horses have been carved as children&#039;s toys.  In central Sweden, wood scraps from the local furniture-making trade, paint-pigment from nearby copper mines, and long winter evenings bred the development of the Dala Horse.  Traditions vary in giving credit to woodsmen and to soldiers for originating the craft. </p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t107 James Ave.<br />Swedesburg, IA 52652<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Soil Erosion and Control Mural",
            "lat": "42.026420",
            "lon": "-96.098307",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monona-artpublic-soilerosioncontrolmural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Soil Erosion and Control Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.026420,-96.098307\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by Lee Allen in 1938, this mural was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1017 Iowa Ave.<br />U.S. Post Office<br />Onawa, IA 51040<br />Monona County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Gateway",
            "lat": "41.261877",
            "lon": "-95.860887",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-artpublic-gateway-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gateway</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.261877,-95.860887\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Ed Carpenter worked with a large design team to create this landmark bridge. When viewed from the east or west, the design frames dramatic views, suggesting a sunrise or the interweaving of different parts of the community.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUS 6 and N 8th St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.212.9088</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowawestfoundation.org/initiatives/iowa-west-public-art/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Iowa Landscape Murals",
            "lat": "42.238613",
            "lon": "-91.190149",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Landscape Murals</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.238613,-91.190149\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This series of three murals were painted by William C. Palmer in 1941 and were inspired by the Iowa landscape.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t119 N Cedar St.<br />Post Office<br />Monticello, IA 52310<br />Jones County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.465.4334</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Eulenspiegel Puppet Theatre Co.",
            "lat": "41.570777",
            "lon": "-91.263674",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Eulenspiegel Puppet Theatre Co.</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.570777,-91.263674\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Eulenspiegel (OIL-N-SPEEGEL) Puppet Theatre was founded in 1974. It has grown from presenting a two-person show to presenting complex performances with several puppeteers and musicians. Since1995, Eulenspiegel has done outreach work in and hosted guest puppet theatres from all over the world. Each year, local residents help to build giant puppets for the county fair parade.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t319 Calhoun St. N<br />West Liberty, IA 52776<br />Muscatine County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.627.2487</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.puppetspuppets.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Strand Theatre",
            "lat": "41.570124",
            "lon": "-91.262735",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/muscatine-theater-strandtheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Strand Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.570124,-91.262735\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1910 and called the West Liberty Opera House, the first floor of the building was used for theatrical and vaudeville performances and the second floor was used as a meeting place for the Knights of Pythias and the Pythian Sisters. The first performance held at the opera house was a show called &quot;Nancy,&quot; and tickets were sold for $1.50. In 1921, ownership changed hands and the theater came to be known as the New Strand. In 2008, the theater was fully restored by interest from the community.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t111 3rd St. E<br />West Liberty, IA 52776<br />Muscatine County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.627.2014</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.newstrand.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "War Memorial",
            "lat": "42.237737",
            "lon": "-91.187595",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">War Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.237737,-91.187595\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The War Memorial at Monticello is near the public library. It is made up of plaques with battle scenes from World War I, World War II, the Korean War and the Vietnam War. It was dedicated November 11, 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Grand St.<br />Monticello, IA 52310<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Davies Amphitheater",
            "lat": "41.045306",
            "lon": "-95.733981",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mills-artperforming-daviesamphitheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Davies Amphitheater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.045306,-95.733981\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Davies Amphitheater, located at Glenwood Lake Park, offers family entertainment throughout the summer months. The amphitheater was gifted to the Glenwood community by the late Mr. Charlie Davies and won the Iowa Architectural Award in 1981 for design.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t24640 Jasmine Ln.<br />Glenwood Lake Park<br />Glenwood, IA 51534<br />Mills County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.527.3250</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.glenwoodnet.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Elkader Opera House",
            "lat": "42.855475",
            "lon": "-91.405667",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-elkaderoperahouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Elkader Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.855475,-91.405667\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Elkader Opera House was completed in November 1903, replacing the old Turner Opera House which was destroyed by fire. Four days after the Turner House fire, the community raised $10,000 for the construction of the Elkader Opera House. On November 27, 1903 the new building opened with a performance of &quot;The Governor&#039;s Son.&quot; Special trains ran from McGregor and other towns along the Milwaukee rail line to bring the audience to the show. Memorabilia from that celebrated event decorate the walls of the opera house. Productions on the Chicago-Minneapolis circuit were a regular part of its early offerings. Over the years the Opera House has served as a club and community room, dance hall, roller rink, library, fire station, economic development office Main Street Elkader office, city hall and as the Abdel-Kader Sister City Museum. The Elkader Opera House has maintained a central role in the social and civic life of Elkader. It was added to the National Register of Historic Places in 1976. In late 2004 the Opera House underwent an intensive restoration process restoring the historic building to it’s original grandeur.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t207 N Main St.<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.elkaderoperahouse.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Three Bells",
            "lat": "42.851234",
            "lon": "-91.402035",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Three Bells</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.851234,-91.402035\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Three Bells, by Cara Briggs Farmer, is an interactive steel and sound sculpture to reflect the rolling hills of the surrounding countryside and the shape and sound of bells. This installation is part of the Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. Three Bells is located on the River Bluffs Scenic Byway.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t211 S Main St.<br />Founders&#039; Park<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Interstate",
            "lat": "41.234866",
            "lon": "-95.879610",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-artpublic-interstate-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Interstate</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.234866,-95.879610\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist William King&#039;s large-scale aluminum sculptures, Interstate, Circus and Sunrise, are intended to be playful and convey motion. Look for familiar gestures, including a figure driving a car and a couple striding across the prairie.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1 Arena Way<br />Mid-America Center<br />Council Bluffs, IA 51501<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.212.9088</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowawestfoundation.org/initiatives/iowa-west-public-art/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Odyssey",
            "lat": "41.232250",
            "lon": "-95.879380",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-artpublic-odyssey-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Odyssey</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.232250,-95.879380\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Albert Paley created these sculptures, titled &quot;Odyssey&quot;. Four mixed-metal sculptures, each weighing as much as 70,000 lbs. and towering as high as 60 feet above the landscape, serve as a gateway to Council Bluffs and Iowa. The sculptures&#039; jagged shapes and ribbons speak to the region’s long history of transformation and to the industrialization of agriculture.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS 24th St. and Interstate 80<br />Council Bluffs, IA 51501<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.212.9088</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowawestfoundation.org/initiatives/iowa-west-public-art/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Rhythm",
            "lat": "41.237057",
            "lon": "-95.891005",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-artpublic-rhythm-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rhythm</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.237057,-95.891005\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Jun Kaneko wanted to design a space that would inspire curiosity based on the events and concerts hosted at the Mid-America Center. Notice the tile walls, three larger-than-life bronze heads sitting on pedestals, and brightly colored ceramic sculptures called &#039;dangos&#039;.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1 Arena Way<br />Mid-America Center<br />Council Bluffs, IA 51501<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.212.9088</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowawestfoundation.org/initiatives/iowa-west-public-art/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Sunrise",
            "lat": "41.236668",
            "lon": "-95.889942",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-artpublic-sunrise-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sunrise</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.236668,-95.889942\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist William King&#039;s large-scale aluminum sculptures, Interstate, Circus and Sunrise, are intended to be playful and convey motion. Look for familiar gestures, including a figure driving a car and a couple striding across the prairie.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1 Arena Way<br />Mid-America Center<br />Council Bluffs, IA 51501<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.212.9088</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowawestfoundation.org/initiatives/iowa-west-public-art/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Circus",
            "lat": "41.238456",
            "lon": "-95.892606",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-artpublic-circus-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Circus</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.238456,-95.892606\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist William King&#039;s large-scale aluminum sculptures, Interstate, Circus and Sunrise, are intended to be playful and convey motion. Look for familiar gestures, including a figure driving a car and a couple striding across the prairie.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1 Arena Way, Mid-America Center<br />Mid-America Center<br />Council Bluffs, IA 51501<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.212.9088</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowawestfoundation.org/initiatives/iowa-west-public-art/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Molecule Man",
            "lat": "41.236333",
            "lon": "-95.892363",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-artpublic-moleculeman-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Molecule Man</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.236333,-95.892363\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Three interconnected human figures speak to artist Jonathan Borofsky&#039;s interest in human relationships. The sculptures, which are nearly 50 feet high and made of the same type of aluminum used in airplanes, took approx. 12,000 hours to design, create and install. The artist created two other Molecule Man sculptures, in Berlin, Germany and Los Angeles, California.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1 Arena Way<br />Mid-America Center<br />Council Bluffs, IA 51501<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.212.9088</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowawestfoundation.org/initiatives/iowa-west-public-art/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Circus Parade Mural",
            "lat": "43.086146",
            "lon": "-91.568136",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Circus Parade Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.086146,-91.568136\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa, who has painted over 40 murals in the Midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t169 N Lawler St.<br />Postville, IA 52162<br />Allamakee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.8075</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Lover&#039;s Leap Mural",
            "lat": "41.279933",
            "lon": "-91.361958",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lover&#039;s Leap Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.279933,-91.361958\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by Sante Graziani in 1942. It portrays a gathering held to raise funds for the city&#039;s swinging bridge.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t204 2nd St.<br />U.S. Post Office<br />Columbus Junction, IA 52738<br />Louisa County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://livingnewdeal.berkeley.edu/projects/post-office-mural-columbus-junction-ia/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Hometown to the World",
            "lat": "43.086770",
            "lon": "-91.568106",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hometown to the World</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.086770,-91.568106\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Hometown to the World, by Steve and Peggy Kittleson, is a mosaic globe surrounded by three teleidoscopes to create kaleidoscopic images for each viewer representing the diversity of Postville. This installation is part of the Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. Hometown to the World is located on the Driftless Area Scenic Byway.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 E Greene St.<br />IA Hwy. 51<br />Postville, IA 52162<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Rays Interactive Light Environment",
            "lat": "41.262689",
            "lon": "-95.918044",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-artpublic-raysinteractivelightenvironment-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rays Interactive Light Environment</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.262689,-95.918044\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Dan Corson uses a 5-acre lawn as a canvas for projecting shifting colors and patterns. After watching the choreographed light sequences, try interacting directly with the artwork; the lighting can be controlled by your motions and can even track you to other spots on the lawn. The lawn is activated every half hour after sunset, and the colors change with the seasons.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1 River Rd. N<br />Tom Hanafan River&#039;s Edge Park<br />Council Bluffs, IA 51501<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.212.9088</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowawestfoundation.org/initiatives/iowa-west-public-art/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Luther College Fine Arts Gallery",
            "lat": "43.310627",
            "lon": "-91.802431",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Luther College Fine Arts Gallery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.310627,-91.802431\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fine Arts Collection Luther College contains more than 1,600 works of art and historic objects that date back to 500 B.C. The collection includes works produce in the Midwest, including artwork by Orville Running and international artists, including artwork by German expressionist Gerhard Marcks. Works by local, regional, and national artists are generally on display in the Kristin Wigley-Fleming Fine Arts Gallery in the Center for the Arts, the Center for Faith and Life, and Preus Library. A group show by senior art majors is installed in the Wigley-Fleming Gallery each May.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t700 College Dr.<br />Center for the Arts<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.387.1536</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.luther.edu/galleries/current/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Big Mo",
            "lat": "41.261803",
            "lon": "-95.920586",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-artpublic-BigMo-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Big Mo</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.261803,-95.920586\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;Big Mo&quot; is a 75’ 8” steel sculpture created by celebrated American artist Mark di Suvero. Painted in di Suvero’s signature color, “spacetime orange,” Big Mo stands on three legs which lead the eye upward toward two kinetic pieces, each rotating in opposite directions like radar antennae on a ship. The sculpture’s dynamic simplicity and high visibility offer a brilliant welcome that pulls from all directions.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1 N River Dr.<br />Tom Hanafan River&#039;s Edge Park<br />Council Bluffs, IA 51501<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.212.9088</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowawestfoundation.org/initiatives/iowa-west-public-art/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "ArtHaus",
            "lat": "43.304367",
            "lon": "-91.791686",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-artstudio-arthaus.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">ArtHaus</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.304367,-91.791686\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129mi.</span></div>\n\t\t</div>\n\n\t\t<p>ArtHaus is downtown Decorah’s home for the arts, bringing visual, performing, and literary art with creative programs for all ages. Founded in 2008 to provide a bright and beautiful venue for quality art education and experiences, ArtHaus offers professional arts instruction as well as free and low-cost events throughout the year such as art fairs, gallery openings, poetry slams, and live music.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t508 W Water St.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.5440</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.arthausdecorah.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Iowa Countryside Mural",
            "lat": "43.304023",
            "lon": "-91.790479",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Iowa Countryside Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.304023,-91.790479\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t415 W Water St.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Water Street Circa 1888",
            "lat": "43.304391",
            "lon": "-91.790556",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-artpublic-waterstreet-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Water Street Circa 1888</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.304391,-91.790556\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa, who has painted over 40 murals in the Midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t418 W Water St.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Window Murals",
            "lat": "43.304052",
            "lon": "-91.787614",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Window Murals</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.304052,-91.787614\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa, who has painted over 40 murals in the Midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t207 W Water St.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Nordic Fest Parade Mural",
            "lat": "43.304406",
            "lon": "-91.784899",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nordic Fest Parade Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.304406,-91.784899\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t126 E Water St.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Garden Mural",
            "lat": "43.304635",
            "lon": "-91.785764",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Garden Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.304635,-91.785764\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t104 E Water St.<br />Hotel Winneshiek<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Trout Run Trail Art",
            "lat": "43.289154",
            "lon": "-91.760032",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Trout Run Trail Art</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.289154,-91.760032\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Trout Run Trail, an 11-mile recreational loop, features three works of art. Artist Dean Schwarz is a Decorah created a ceramic tile mosaic that is located at the Decorah Fish Hatchery. Doug Freeman, a Minneapolis based artist the interactive sculpture that overlooks the Upper Iowa River and Artist Bounnak Thammavong of Iowa City created the metal archway over the trail just south of Iowa Highway 9.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIowa Hwy. 9<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.troutruntrail.com/publicart.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Dickinson County",
            "lat": "43.446758",
            "lon": "-95.322586",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Dickinson County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.446758,-95.322586\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dickinson County Freedom Rock® in Lake Park is unique among the county Freedom Rocks. The Freedom Rock sits in the center of five smaller rocks that represent each military branch. Each military branch rock is set in the middle of a circle signifying that branch&#039;s activity and retired service members. All the rings intersect with the center ring around the Freedom Rock showing the unity of all those who served or are serving. The top circle, as you enter the memorial from the south, is in honor of the families who have also sacrificed in their support of their service member. The five veterans featured on the Dickinson County Freedom Rock are Rachel Wunder, a surgical nurse from Lake Park who served in World War II; Milton Simpson of Terril, who was killed in action in Germany in 1944; Ed Gath, a soldier from tiny Montgomery, Iowa, who was killed in action in North Korea in 1951; Wilber “Bill” Ahart, a Spirit Lake, Iowa, resident who survived the Bataan Death March in World War II; and Spirit Laker Lawrence Lambert, who survived for 27 months as a prisoner of war in Germany during World War II. The Dickinson County (Lake Park) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t309 S Market St.<br />Veterans Park<br />Lake Park, IA 51347<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Arabella Mansfield Sculpture",
            "lat": "40.974116",
            "lon": "-91.554104",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-monument-arabellamansfield-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Arabella Mansfield Sculpture</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.974116,-91.554104\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1869, Iowa was the first state in the nation to allow women to join the bar. This led to Iowan, Arabella Mansfield of Mount Pleasant, becoming the first female attorney in the nation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Broadway St.<br />Iowa Wesleyan University<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "James Harlan Statue",
            "lat": "40.973424",
            "lon": "-91.552245",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-artpublic-jamesharlanstatue.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James Harlan Statue</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.973424,-91.552245\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This statue of James Harlan is well traveled.  Created by Iowa native Nellie V. Walker (1874-1973) in 1908, the sculpture was installed in the U.S. Capitol in 1910.  The statue was commissioned by the State of Iowa in 1907 for a cost of $5,000.  In 2012, the Iowa Legislature passed a joint resolution to replace the James Harlan statue in the capitol with one of Norman Borlaug and return the James Harlan statue to a place in Mount Pleasant.  James Harlan came “home” to a dedication on August 28, 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 N Main St.<br />Iowa Wesleyan College<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Southeast Iowa Symphony Orchestra",
            "lat": "40.972802",
            "lon": "-91.552540",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-artperforming-southeastiowasymphonyorchestra.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Southeast Iowa Symphony Orchestra</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.972802,-91.552540\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The mission of the Southeast Iowa Symphony Orchestra is to promote quality orchestral experiences for the regional community and musicians by providing live performances, educational opportunities and rural outreach programs for all ages.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 N Main St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.385.6352</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.seiso.us/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Cattle Mural",
            "lat": "41.770703",
            "lon": "-91.129811",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cedar-artpublic-cattle.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cattle Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.770703,-91.129811\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted in 1940 by John V. Bloom, this mural was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t512 Lynn St.<br />U.S. Post Office<br />Tipton, IA 52772<br />Cedar County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 510.642.5993</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://livingnewdeal.berkeley.edu/projects/post-office-mural-tipton-ia/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Mount Pleasant in the 1840s Paintings",
            "lat": "40.967910",
            "lon": "-91.554096",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-artpublic-mountpleasantintheforties.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mount Pleasant in the 1840s Paintings</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.967910,-91.554096\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural cycle, consisting of three works by Dorothea Tomlinson, was completed in 1939 as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 N Jefferson St.<br />U.S. Post Office<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Grant Wood Art Gallery",
            "lat": "41.767383",
            "lon": "-91.127673",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cedar-artmuseum-grantwoodartgallery.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grant Wood Art Gallery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.767383,-91.127673\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grant Wood Art Gallery is at the Tipton Public Library. The building was finished in 1903 and the collection was donated in 1977. The collection includes 21 lithographs and 2 oil paintings, all done by Grant Wood. The gallery also includes work from Polly Kemp and Marvin Cone. There is also a cane used by Andrew Carnegie in the gallery. The library provides self guided-tour brochures for visitors of the gallery upon request.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 Cedar St.<br />Tipton Public Library<br />Tipton, IA 52772<br />Cedar County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.886.6266</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.tipton.lib.ia.us/grant-wood\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Theatre Museum of Repertoire Americana",
            "lat": "40.953618",
            "lon": "-91.546680",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Theatre Museum of Repertoire Americana</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.953618,-91.546680\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">131.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Theatre Museum of Repertoire Americana is a museum dedicated to traveling theatre groups of the 1910s-1920s. The museum has a unique collection of memorabilia from various venues of American popular entertainment. This includes scenery, costumes, photographs, posters, handbills, musical instruments, scripts, playbills, music, letters, and programs.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t405 E Threshers Rd.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.385.9432</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://thetheatremuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Harvest Sculpture",
            "lat": "41.642107",
            "lon": "-91.054282",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Harvest Sculpture</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.642107,-91.054282\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">135.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Tom Stancliffe&#039;s &#039;Harvest&#039; features ten columns, arranged like row crops, that express the natural and cultural diversity of Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCedar County I-80 West Bound Rest Area<br />Wilton, IA 52778<br />Cedar County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.publicartarchive.org/node/68797\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Underground Railroad Quilt Code: Hidden in Plain View",
            "lat": "41.639263",
            "lon": "-91.054371",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Underground Railroad Quilt Code: Hidden in Plain View</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.639263,-91.054371\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">135.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Cedar County was home to many safe houses and stops on the Underground Railroad. This rest area facility incorporates symbols commonly disguised in quilts and used to guide runaway slaves to safe passage (Artist David B. Dahlquist).</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCedar County I-80 East Bound Reststop<br />Wilton, IA 52778<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World War I Honor Roll",
            "lat": "40.747128",
            "lon": "-95.647052",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/fremont-monument-worldwaronehonorroll.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World War I Honor Roll</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.747128,-95.647052\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">136.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fremont County World War I Memorial on the grounds of the Fremont County Courthouse commemorates all those from the county who served in World War I. A separate monument, for all wars, memorializes soldiers who made the ultimate sacrifice and lost their lives fighting for America.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIllinois St.<br />Fremont County Courthouse<br />Sidney, IA 51652<br />Fremont County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Thurman Veterans Memorial",
            "lat": "40.820047",
            "lon": "-95.752928",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/fremont-monument-thurmanveteransmemorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thurman Veterans Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.820047,-95.752928\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">137.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Thurman Veterans Memorial, which lists all the locals who have served in the armed services, stands in the City Park. It was dedicated by VFW Post 7064. A tornado destroyed three-quarters of the town in 2012, but the Veterans Memorial was unscathed.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tFletcher St.<br />Thurman, IA 51654<br />Fremont County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Le Mars Arts Center",
            "lat": "42.790383",
            "lon": "-96.166213",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-artstudio-lemarsartcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Le Mars Arts Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.790383,-96.166213\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Le Mars Arts Center is housed in the former Le Mars Public Library. The building is a typical example of small-town library architecture of early 1900s. It was built in 1903 and was funded by Andrew Carnegie. The building was added to the National Register of Historic Places in 1979. The Le Mars Arts Center offers educational programs, exhibits, and more to the public.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 Central Ave. SE<br />Le Mars, IA 51031<br />Plymouth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.546.7476</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.lemarsarts.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Alley Art",
            "lat": "42.793942",
            "lon": "-96.165880",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-artpublic-lemarsalleyart.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alley Art</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.793942,-96.165880\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 2013, Le Mars Main Street began an Alley Art program. The program was designed to turn dingy alleyways into downtown destinations. Most of the murals are painted in alleys behind Central Avenue NW.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDowntown Alleys<br />Le Mars, IA 51031<br />Plymouth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Le Mars Community Theatre",
            "lat": "42.794447",
            "lon": "-96.164729",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-artperforming-lemarscommunitytheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Le Mars Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.794447,-96.164729\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Le Mars Community Theatre was organized in 1968 and continues to produce multiple shows each season. The theatre&#039;s home is the former Post Office, which was built in 1914, and provides many natural assets for use as a theater - the cat walk used by postal inspectors is perfect for a light and sound booth-two existing restrooms on the main floor and one in the basement where dressing and make-up rooms are located, a large foyer, and storage areas for costumes, props and scenery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t105 1st St. NE<br />Le Mars, IA 51031<br />Plymouth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.546.5788</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.lemarscommtheatre.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Crossroads",
            "lat": "43.269134",
            "lon": "-91.475975",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Crossroads</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.269134,-91.475975\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Crossroads, by Cara Briggs Farmer, is a steel and painted plexiglass sculpture depicting Waukon’s offset intersection and Native American culture through color and shapes. This installation is part of the Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. Crossroads is located on the Driftless Area Scenic Byway.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St. &amp; Spring Ave.<br />IA Hwy. 76 &amp; IA Hwy. 9<br />Waukon, IA 52172<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Jones &amp; Hitchcock Founders Bell",
            "lat": "41.178580",
            "lon": "-91.185600",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/louisa-monument-joneshitchcockbell-wapello.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jones &amp; Hitchcock Founders Bell</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.178580,-91.185600\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bell was made by the Jones &amp; Hitchcock Bellfoundry in Troy, New York in 1856. The bellfoundry was started in 1852 by James Harvey Hitchcock and Eber Jones in the industrial city of Troy, near the Hudson River. The partners were in business from 1852-1857 when the foundry became Jones &amp; Co.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t149 S Main St.<br />Wapello, IA 52653<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Louisa County Veterans Memorial",
            "lat": "41.178940",
            "lon": "-91.185800",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/louisa-monument-louisacountyveteransmemorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Louisa County Veterans Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.178940,-91.185800\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Louisa County Veterans Memorial is dedicated to the men and women of Louisa County who volunteered, or when called upon to serve, left their homes, families and occupations to defend and preserve the freedoms and way of life on which this nation was founded. They served with bravery, sacrifice and honor in conditions of danger, discomfort and sometimes controversy. To ensure for future generations the legacy their forefathers left them. The monument was erected in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t149 S Main St.<br />Wapello, IA 52653<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Louisa County World War I Honor Roll",
            "lat": "41.179040",
            "lon": "-91.185900",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/louisa-monument-louisacountyworldwaronehonorroll.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Louisa County World War I Honor Roll</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.179040,-91.185900\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Louisa County World War I Honor Roll is located on the courthouse lawn and lists the names of all those from Louisa County who served in World War I.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t149 S Main St.<br />Wapello, IA 52653<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Parret Cannon",
            "lat": "41.178700",
            "lon": "-91.185700",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/louisa-monument-civilwarcannon-wapello-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Parret Cannon</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.178700,-91.185700\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Parret Cannon, located on the lawn of the Louisa County Courthouse, is a 20-pound Parret used during the Civil War. The inscription reads, &quot;1861-1865, 20 lb. Parret made by G.E. Parret, Notre Dame Ind. 1861&quot;.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t149 S Main St.<br />Wapello, IA 52653<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Muscatine Art Center",
            "lat": "41.432519",
            "lon": "-91.051243",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Muscatine Art Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.432519,-91.051243\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Muscatine Art Center is funded in part by the National Endowment for the Arts and the Iowa Arts Council, a division of the Iowa Department of Cultural Affairs. It is one of only 775 museums nationwide accredited by the American Association of Museums. This honor signifies that the Art Center has undergone a rigorous and lengthy process involving intensive self-examination, peer review, and a thorough examination by the Accreditation Commission. Accreditation by the AAM means the Muscatine Art Center is recognized for demonstrating excellence and operating in accordance with the best practices and highest standards in the field.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1314 Mulberry Ave.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.263.8282</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.muscatineartcenter.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Delta Queen Mural",
            "lat": "42.781555",
            "lon": "-91.095662",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-artpublic-deltaqueenmural.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Delta Queen Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.781555,-91.095662\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHerder St.<br />Guttenburg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Deepest Pattern",
            "lat": "42.780820",
            "lon": "-91.094975",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Deepest Pattern</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.780820,-91.094975\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Deepest Pattern, by Victoria Reed, is a large steel sculpture depicting a walleye with the map of Guttenberg hidden in its patterning. This installation is part of the Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. The Deepest Pattern is located on the River Bluffs Scenic Byway and the Great River Road.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS River Park Dr.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Eternal Spring",
            "lat": "43.007036",
            "lon": "-96.057862",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-artpublic-eternalspring-5b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Eternal Spring</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.007036,-96.057862\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Eternal Spring, painted by Mark Alsum and Zack Maxon, was completed in October 2011. Vibrant red, yellow and purple tulips are painted across the 100&#039; long building, which gives Orange City a touch of spring all year long.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2nd St. NE<br />Orange City, IA 51041<br />Sioux County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World War I and II Memorial",
            "lat": "42.601168",
            "lon": "-90.996813",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/dubuque-monument-holycross-worldwar1-2memorial.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World War I and II Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.601168,-90.996813\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This World War Memorial, on the grounds of the Holy Cross Catholic Church, memorializes eight men of the Holy Cross community (two from World War I and six from World War II) who died for their country. The monument states: &quot;We were young, we have died, remember us.&quot; Both men who died in World War I died of disease. Joseph C. Blake was 26 years old when he died of pneumonia in France on October 15, 1918. John Carter died of Spanish influenza and pneumonia at Camp Greenleaf, Georgia, the very next day.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tChurch St.<br />Holy Cross Catholic Church<br />Holy Cross, IA 52053<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Corps of Discovery",
            "lat": "42.375032",
            "lon": "-96.354929",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-artpublic-corpsofdiscovery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Corps of Discovery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.375032,-96.354929\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This rest area, with art designed by David Dahlquist, is a monument to Lewis and Clark&#039;s Corps of Discovery expedition. The names of every man, woman, child and dog who ventured on the expedition are carved around the building. Visitors can trace the steps of the Corps of Discovery on a Missouri River map embedded in the floor.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tInterstate Hwy. 29 Southbound<br />Mile Post 140 Rest Area<br />Sergeant Bluff, IA 51054<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.943.4244</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.rdgusa.com/projects/corps-of-discovery-1#/services/art-studio\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Dubuque County",
            "lat": "42.440649",
            "lon": "-90.929728",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Dubuque County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.440649,-90.929728\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">141.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dubuque County Freedom Rock® in Epworth features the Governor’s Greys. In 1859, Dubuque citizens formed the “Governor’s Greys.” This new military company was the first in America to pledge their service to the nation at the start of the Civil War. The city hall facing side of the rock shows many Dubuque County veterans, including the Roman Catholic Chaplain, Lieutenant Aloysius Schmitt, who was posthumously awarded the Navy and Marine Corps Medal for “distinguished heroism and sublime devotion to his fellow man” after perishing on the USS Oklahoma at Pearl Harbor. US Army Combat Engineer Rich Billmeyer who was wounded by an IED in Afghanistan, Army nurse Major Genevieve Smith who was killed in a plane crash over Korea in 1950 and Bob Kluesner, a machine gunner in the Vietnam War. Kluesner survived being shot in the back of the head and the chest, went through many surgeries and returned home to Dubuque County. The Dubuque County (Epworth) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t191 Jacoby Dr. E<br />Epworth, IA 52045<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Sergeant Floyd Monument",
            "lat": "42.462627",
            "lon": "-96.377897",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-historymuseum-sergeanttfloydmonument.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sergeant Floyd Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.462627,-96.377897\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sergeant Floyd Monument commemorates Sergeant Charles Floyd, Jr., the only member of Lewis and Clark&#039;s Corps of Discovery Expedition to die on the journey. He died on August 20, 1804, during the Expedition’s journey west. He died of a ruptured appendix just three months after the explorers set out. The Corps of Discovery held a funeral for Floyd and buried him on a bluff overlooking the Missouri River.  They named the location Floyd’s Bluff. Floyd’s Bluff now has an asphalt driveway up its eastern slope from Route 75 to Floyd Monument at its crest. Today, part of a 23-acre park, a 100-foot obelisk of heavy Kettle River sandstone marks the final resting place of Sergeant Charles Floyd, Jr. The monument was made a National Historic Landmark in 1960 and added to the National Register of Historic Places in 1966.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Lewis Blvd.<br />Sioux City, IA 51106<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.279.0198</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://siouxcitymuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Osceola County Courthouse",
            "lat": "43.402090",
            "lon": "-95.749352",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/osceola-nhr-osceolacountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Osceola County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.402090,-95.749352\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Osceola County Courthouse is the second courthouse built in the county. The first courthouse was built in Sibley in 1872, after Sibley was named the county seat because it was the first town in the county. The current Osceola County Courthouse was built in 1902 and was renovated in the 1920s and 1960s. The original cupola and clock are gone, but the brick and stone courthouse remains. There are three murals inside the courthous painted by Odem J. Opens in 1912. The building was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3rd Ave.<br />Sibley, IA 51249<br />Osceola County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "McGregor-Marquette Center for the Arts",
            "lat": "43.024812",
            "lon": "-91.175366",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-artmuseum-marquettecenterforthearts.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McGregor-Marquette Center for the Arts</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.024812,-91.175366\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in a historic 1863 building designed by McGregor architect E. C. W. Jacobs, the McGregor-Marquette Center is a non-profit arts center with a retail sales and special exhibits gallery. Local artists, living within a 100 mile radius, are showcased at the center. Sales help to supplement children&#039;s arts programming and live music entertainment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t158 Main St<br />McGregor, IA 52157<br />Clayton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.329.2010</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://mmcenterforthearts.weebly.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Sioux City Art Center",
            "lat": "42.492794",
            "lon": "-96.403926",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-artmuseum-siouxcityartcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sioux City Art Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.492794,-96.403926\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux City Art Center presents exhibitions of local, national and international artists. The Education Department is dedicated to providing people of all ages with educational opportunities that encourage creative expression, develop artistic skills, and foster appreciation for the visual arts through a variety of classes, tours, and programs.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t225 Nebraska St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.279.6272</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.siouxcityartcenter.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Touched by the Sun",
            "lat": "42.492399",
            "lon": "-96.403687",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Touched by the Sun</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.492399,-96.403687\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This sculpture, titled Touched By the Sun, is 14’ tall, 14’ wide and 12’ deep, was designed by artist Michael Dunbar, one of the Midwest’s most respected sculptors. He was inspired by the scientific technology of past and future. Touched By the Sun is made of bronze. It was installed on the Sioux City Art Center’s lawn on September 11, 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t225 Nebraska St.<br />Sioux City Art Center<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.siouxcityartcenter.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Sioux City Symphony Orchestra",
            "lat": "42.495857",
            "lon": "-96.404548",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sioux City Symphony Orchestra</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.495857,-96.404548\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>For over 98 years, the Sioux City Symphony Orchestra has been a dominant force in the cultural life of Sioux City and the surrounding tri-state area. It has evolved from a 30-piece college ensemble to a 90-member professional orchestra with an artistic ability unrivaled by metropolitan orchestras of comparable size.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t520 Pierce St.<br />Suite 375<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.277.2111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.siouxcitysymphony.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "New Orpheum Theatre",
            "lat": "42.496004",
            "lon": "-96.404702",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-theater-orpheumtheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">New Orpheum Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496004,-96.404702\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux City Orpheum was designed by the nationally known Chicago firm of Rapp and Rapp. Built at a cost of $1.75 million in 1927, it was one of the largest theatres in the state. By then, Americans had begun to stay home and listen to the radio, rather than attending wholesome vaudeville shows at theaters. Local promoter and developer Arthur Sanford forged ahead with his plan to build a fantastic theatre, even though vaudeville shows were declining in popularity. Sanford wanted a new theater in Sioux City because vaudeville shows could perform as they traveled between shows in the bigger cities of Chicago and Minneapolis. Even so, only 15 months after opening the New Orpheum began showing talking pictures in addition to vaudeville shows. By 1937, the New Orpheum was no longer hosting live performances. In 1968 and 1982 the theatre underwent major renovations and it was converted into a two-screen theater – with the original auditorium divided in half and many of the theatre’s original architectural features were covered up or lost.  The Orpheum Theatre Preservation Project was established in 1989 and the group raised $15 million to restore the theatre to its original grandeur.  A grand re-opening was held on September 15, 2001. Since then, the theatre has hosted nationally known performers, Broadway shows and the Sioux City Symphony. The New Orpheum Theatre was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t520 Pierce St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.258.9164</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://orpheumlive.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Woodbury County Courthouse",
            "lat": "42.497112",
            "lon": "-96.405989",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-woodburycountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Woodbury County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.497112,-96.405989\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145mi.</span></div>\n\t\t</div>\n\n\t\t<p>Though Sioux City was made the county seat in 1858, the first permanent Woodbury County courthouse was not finished until 1878. In 1914, the county determined that the courthouse was too small for the city and they decided to build a new one. The new courthouse was constructed from July 10, 1916 to March 1, 1918 at a cost of $850,000. It is made of Roman brick and granite with a 157-foot-tall tower on top of the building and features a frieze sculptural work by Alfonso Iannelli over its doors and six interior murals painted by John Warner Norton. The Woodbury County Courthouse is known as the only major civic building designed by the architects of the prairie school. Architecture critic Sydney LeBlanc named the building one of the 200 key American buildings of the 20th century, calling it “a model of progressive architecture at a time when most prominent American designers sought inspiration in the past.” The building was listed on the National Register of Historic Places in 1973, and in 1996, the National Park Service designated it a National Historic Landmark.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t620 Douglas St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Grandview Park Music Pavilion",
            "lat": "42.516721",
            "lon": "-96.409669",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-grandviewparkmusicpavilion.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grandview Park Music Pavilion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.516721,-96.409669\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>An independent park commission formed in Sioux City in 1906 because Sioux City had no park. In August 1908, the commission presented Grandview Park to the city. In 1930, the Monahan Post Band began a campaign to build a band shell in Grandview Park. But, with the Great Depression only a small amount of funds were raised for the band shell. Neighbors were aghast at the proposed band shell as it was not grand enough for the beautiful park setting. Fortunately, in 1933, President Roosevelt created the Civil Works Administration and the proposed band shell became one of their projects. Local architect Henry Kamphoefner designed the band shell. \r\n\r\nOn February 17, 1938, the Sioux City Journal described it: &quot;The Sioux City music pavilion in Grandview Park, brain child of a young, unemployed and unknown architect of the city, who drew the plans in the basement studio at his home here, is to be included in an exhibit of the American Institute of Architecture, which will be shown throughout the United States and in Europe. This latest honor will place it among ~100 representative and distinguished (structures) erected in the United States since 1918.&quot;\r\n\r\nBuilding the Grandview Park Music Pavilion required 52 tons of reinforcing steel, 4,200 bags of Portland cement and 300 bags of white cement.\r\n\r\nKamphoefner rose from an unknown architect to dean of the North Carolina School of Design.  The Grandview Park Music Pavilion was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t24th St. and Grandview Boulevard<br />Grandview Park<br />Sioux City, IA 51104<br />Woodbury County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.siouxcityhistory.org/historic-sites/110-grandview-park-a-the-band-shell\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "The Littleton Brothers Monument",
            "lat": "41.141705",
            "lon": "-91.063049",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Littleton Brothers Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.141705,-91.063049\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">146.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The six Littleton brothers, George, John, Kendall, Noah, Thomas and William, all of Toolesboro, Iowa, enlisted and gave their lives in service of the Union Army during the American Civil War. Kendall was killed December 7, 1862, less than four months after enlisting, at the Battle of Prairie Grove, Arkansas, and John died 11 days later, December 18, of injuries from the same battle. Noah survived that battle but drowned March 1, 1863, when a ferryboat sank crossing the White River at Forsyth. Missouri.\r\nGeorge likely died in early 1863, having been discharged October 31, 1862, because of disease. He’d been captured in the battle of Harpers Ferry, Virginia. William died December 8, 1863, in a St. Louis hospital of chronic diarrhea. He’d fought at Shiloh, Jackson, Mississippi, and Vicksburg. Thomas, the first to enlist, was the last to die on June 16, 1864, at the Confederate’s notorious Andersonville Prison in Georgia where he is buried. He’d fought at Corinth and Champions Hill, Mississippi, and Vicksburg before his capture November 25, 1863 during the battle of Missionary Ridge, Tennessee. The monument to the six brothers was dedicated June 14, 2016.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tToolesboro Ave.<br />Wapello, IA 52653<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Development of Caves Mural",
            "lat": "42.117570",
            "lon": "-90.779452",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Development of Caves Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.117570,-90.779452\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">147mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa. He has painted over 40 murals in the midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10756 98th St.<br />Maquoketa Caves State Park Visitors Center<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.8075</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.carlart.com/Murals.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Sioux City Community Theatre",
            "lat": "42.504424",
            "lon": "-96.472308",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sioux City Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.504424,-96.472308\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">148.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Sioux City Community Theatre enhances quality of life by providing opportunities for accessible and lifelong education, volunteerism and entertainment in the performing arts for people of all ages.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1401 Riverside Blvd.<br />Sioux City, IA 51109<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.233.2719</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.scctheatre.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "George Bicentennial Museum and Roll of Honor",
            "lat": "43.343880",
            "lon": "-96.000289",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Bicentennial Museum and Roll of Honor</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.343880,-96.000289\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">150.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The George Bicentennial Museum is a collection of local artifacts from the 19th and 20th century. The museum has an extensive collection of military medals and uniforms, antique clothing, wildlife and musical instruments. The Roll of Honor dedicated by the George Branch of the American Red Cross lists the names of all the locals who served in World War I and memorializes those who gave their last full measure of devotion.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t204 E Michigan Ave.<br />George, IA 51237<br />Lyon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Lyon County",
            "lat": "43.345990",
            "lon": "-96.001725",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Lyon County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.345990,-96.001725\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">150.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lyon County Freedom Rock in George features a night-time scene from World War I, specifically a lone soldier waiting to board a train at the old George Depot. The soldier represents Jack Sauter, a soldier from George who was killed during the war. The smoke from the train&#039;s engine swirls with an image of Sauter in battle, a scene he may have imagined while waiting at the depot. Fireworks burst in the background, as they do every year in George on the Fourth of July. The other side of the rock portrays soldiers from all five military branches marching in an Independence Day parade. The Lyon County Freedom Rock was completed in 2013 by artist Ray &quot;Bubba&quot; Sorensen II of Greenfield.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 E Dakota Ave.<br />George, IA 51237<br />Lyon County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Gables",
            "lat": "42.068088",
            "lon": "-90.665222",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gables</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.068088,-90.665222\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Gables, by Daniel Caven, is a wooden structure built to represent Maquoketa’s residents under the same “roof of community.” The piece will provides a seating area for the Maquoketa Downtown Greenspace. This installation is part of the Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. Gables is located on the Grant Wood Scenic Byway.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t137 S Main St.<br />Maquoketa Downtown Greenspace<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Maquoketa Art Experience",
            "lat": "42.068462",
            "lon": "-90.665699",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-artmuseum-maquoketaartexperience.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Maquoketa Art Experience</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.068462,-90.665699\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Maquoketa Art Experience was created to develop and cultivate an expanding interest in art within Jackson County residents and visitors by supporting lifelong learning, sustaining cultural heritage, and art appreciation. There are rotating exhibits and numerous opportunities for creativity and entertainment at Maquoketa Art Experience.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t124 S Main St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.652.9925</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.maquoketa-art.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Old City Hall Art Gallery",
            "lat": "42.067948",
            "lon": "-90.664077",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-artmuseum-oldcityhallartmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old City Hall Art Gallery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.067948,-90.664077\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old City Hall Gallery in Maquoketa, Iowa, features the works of Rose Frantzen and her husband, Charles Morris. Frantzen and her parents, Wayne and Ellen Frantzen, purchased Maquoketa&#039;s former city hall in 1991, converting the three-story building into a gallery and studio space.\r\n\r\nThe Old City Hall was built in 1901 and housed city offices, fire and police stations, city council chamber, and community and meeting rooms. It featured a turret corner, with curved glass windows above the main entrance that was later squared off in the early 1950s. With the local firemen in charge of ceremonies, the city hall was dedicated in January 1902, with a big banquet and 312 people in attendance.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t121 S Olive St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563-321-1074</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.oldcityhallgallery.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Ohnward Fine Arts Center",
            "lat": "42.068348",
            "lon": "-90.649471",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ohnward Fine Arts Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.068348,-90.649471\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">153.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ohnward Fine Arts Center belongs to the people of Maquoketa. This 29,800 square foot performing arts center was built with private donations, a Vision Iowa grant program, and volunteer labor led by Gary Drew. More than 900 families, individuals, and businesses donated financial assistance, volunteered their labor, and loaned or donated equipment and materials to complete the project. The Ohnward Fine Arts Center of Maquoketa officially opened in December of 2004. With the help of over 95,000 volunteer hours and $900,000 in donations, the community of Maquoketa built this state-of-the-art Ohnward Fine Arts Center without the use of a single tax dollar.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1215 E Platt St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.652.9815</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://ohnwardfineartscenter.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Dubuque Symphony Orchestra",
            "lat": "42.509100",
            "lon": "-90.708825",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-performingart-dubuquesymphonyorchestra.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dubuque Symphony Orchestra</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.509100,-90.708825\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">153.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The mission of the Dubuque Symphony Orchestra is to engage the tri-state community and enrich its quality of life through live musical performances and educational programs.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2728 Asbury Rd.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.557.1677</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.dubuquesymphony.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "University of Dubuque Heritage Center",
            "lat": "42.496709",
            "lon": "-90.694718",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-historymuseum-universityofdubuqueheritagecenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">University of Dubuque Heritage Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496709,-90.694718\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The University of Dubuque Heritage Center provides a multitude of venues to serve students, faculty, staff, and the public. Art by Osmosis is the overarching theme of the building, inviting people of all walks to happen upon Art in its myriad forms, intentionally and accidentally, as they visit the center for their work, study, recreation, and entertainment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2200 Bennett St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.585.7469</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.dbq.edu/heritagecenter\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Fort Madison Art Center",
            "lat": "40.631116",
            "lon": "-91.312863",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fort Madison Art Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.631116,-91.312863\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>As one of the leading arts and cultural centers in the Lee County community, the Fort Madison Art Center works to provide exhibits and art classes for all age groups.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t825 Ave. G<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.372.3996</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://fmaaa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Dubuque Museum of Art",
            "lat": "42.499780",
            "lon": "-90.668234",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-artmuseum-dubuquemuseumofart.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dubuque Museum of Art</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.499780,-90.668234\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Established in 1874, the Dubuque Museum of Art is one of Iowa&#039;s oldest cultural institutions. The Dubuque Museum of Art seeks to excite, engage, and educate constituents through the presentation of collections, exhibitions, and programming; to form mutually beneficial partnerships to enhance the role of the arts within our community; and to adhere to professional museum standards in all operations.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t701 Locust St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.557.1851</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://dbqart.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Early Settlers of Dubuque and Early Mississippi Steamboat Murals",
            "lat": "42.498408",
            "lon": "-90.667772",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-artpublic-earlysettlersofdubuquemural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Early Settlers of Dubuque and Early Mississippi Steamboat Murals</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.498408,-90.667772\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>These two murals were painted by Bertrand Adams and William Bunn in 1937.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t350 W 6th St.<br />Post Office<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://livingnewdeal.berkeley.edu/projects/post-office-murals-dubuque-ia/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Honey",
            "lat": "42.509675",
            "lon": "-90.669575",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Honey</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.509675,-90.669575\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Honey, by Abigail Hedley, is depicts the growth, expansion and diversity, as well as the overall agelessness and strength of Dubuque. This installation is part of the Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. Honey is located on the Great River Road.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCentral Ave. &amp; W 18th St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Smokestack",
            "lat": "42.500674",
            "lon": "-90.664323",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nha-smokestack.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Smokestack</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.500674,-90.664323\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Before Dubuque was established, the area surrounding the property of the Smokestack building was home to a diversity of Native American cultures. Today, Smokestack is an historic, arts, culture and nightlife venue founded in 2015 in the heart of downtown Dubuque. Visitors can enjoy the casual restaurant with two public rooftops, a public garden and art gallery. The building&#039;s 60-foot-tall smokestack and interiors reflect nearly 200 years of a changing Iowa through its past and present uses. Built in 1856, by Swiss-German immigrant Joseph Gerhig as the Jefferson House Hotel (then 4 stories tall), it was a resting place for many German immigrants traveling west. In 1921, the building housed the Sanitary Milk Company, which produced milk, ice cream and cottage cheese free of milk-borne diseases. The Sanitary Milk Company added the smokestack to the building in 1930 for power and ventilation. From 1943 to 1980, Farley &amp; Loetscher, the world&#039;s largest mill working company, leased the building for light industrial use. The building is used by Feye Brothers Auto Body and C&amp;T Motorcycles from the 1970s to 2000s. The Smokestack is a Silos and Smokestacks National Heritage Area.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t62 E 7th St<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.smokestackdbq.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Voices From The Warehouse District",
            "lat": "42.503586",
            "lon": "-90.664236",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-artperforming-voicesfromwarehousedistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Voices From The Warehouse District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.503586,-90.664236\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Voices is a month-long art exhibit and cultural event located in the re-purposed 15,000 square foot gallery space within Dubuque’s Historic Millwork District.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t275 E 10th St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.690.0320</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.voicesgallery.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Players&#039; Workshop: Burlington&#039;s Live Theater",
            "lat": "40.800495",
            "lon": "-91.115971",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Players&#039; Workshop: Burlington&#039;s Live Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.800495,-91.115971\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Players&#039; Workshop is one of the oldest performing arts organizations in Iowa. In 1922, a group of women formed the Burlington Drama League and five years later set up shop in the rear carriage house of the late Col. H.B. Scott. The organization was known as &quot;The Little Theatre on Grove Street&quot; and about 1932, men were allowed to join the theater and the name became the Players&#039; Workshop. In addition to live performances the group produced radio plays and ventured into film making. In 1936, the group put on its first full length production, &quot;Tommy&quot; and since then has produced an average of four shows each season.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1431 Grove St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.753.6623</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.playersworkshoptheater.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Capitol Theater",
            "lat": "40.809575",
            "lon": "-91.103001",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-nhr-capitoltheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Capitol Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.809575,-91.103001\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Capitol Theater is one of the best examples of Art Deco and Art Moderne design in Burlington. It is a textbook example of the application of these styles to movie theater design and is the only one locally or regionally that retains a high degree of structural integrity. It was designed by Roland &quot;Tip&quot; Harrison and was one of eight theaters designed for the Central States Theater Corporation between 1936 and 1939. It opened on July 1, 1937, with a showing of The Prince and The Pauper starring Errol Flynn. The Capitol Theater was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t211 N 3rd St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.237.1099</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.burlingtoncapitoltheater.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Art Center of Burlington",
            "lat": "40.809864",
            "lon": "-91.103035",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-artcenter-artcenterburlington.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Art Center of Burlington</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.809864,-91.103035\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in historic Downtown Burlington, the Art Center showcases the works of local and regional artists and craftspeople with monthly exhibits in the Gallery and one-of-a-kind items in the Artists Market. Children, teen, and adult art classes and workshops are offered along with special events like the annual Snake Alley Art Fair throughout the year.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 Jefferson St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.754.8069</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.artcenterofburlington.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Steamboats &#039;a Coming Mural",
            "lat": "40.808348",
            "lon": "-91.102318",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-artpublic-steamboatscoming.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Steamboats &#039;a Coming Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.808348,-91.102318\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural was painted by artist Carl Homstad, of Decorah, Iowa, who has painted over 40 murals in the Midwest, almost all in Iowa. Homstad&#039;s murals are typically commissions in connection with a city revitalization scheme or connected to a celebration such as a centennial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Main St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Art on the River",
            "lat": "42.496629",
            "lon": "-90.655779",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-artpublic-artonriverfish.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Art on the River</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496629,-90.655779\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Art on the River is a public temporary art exhibit, sponsored by the City of Dubuque, featuring outdoor sculptures by artists from across the U.S. The exhibit is free and can be viewed sunrise to sunset year-round.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t350 Bell St.<br />Port of Dubuque Riverwalk<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.589.4393</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofdubuque.org/index.aspx?NID=311\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Port of Burlington Welcome Center",
            "lat": "40.810612",
            "lon": "-91.099342",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-historymuseum-portofburlington.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Port of Burlington Welcome Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.810612,-91.099342\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Port of Burlington was dedicated in October 1928 as Burlington&#039;s Municipal River Terminal. At this terminal, barges were loaded with coal by conveyor belts. The building was set to be razed, but an adaptive re-use plan was devised. The condemned building was repurposed to be the Welcome Center and opened in 1988 as a hub for tourists and sightseers. This building features a scenic plaza with a beautiful view of the Mississippi River, and a large stage for events</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 N Front St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.752.8731</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://visitburlingtoniowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Veterans Memorial Plaza",
            "lat": "42.514002",
            "lon": "-90.650618",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Veterans Memorial Plaza</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.514002,-90.650618\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Veterans Memorial Plaza recognizes all wars the United States has been in since 1775 and lists 11 Medal of Honor veterans that are buried in Dubuque.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1801 Admiral Sheehy Dr.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.583.6318</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.vetsmemorialplaza.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Hunters Mural",
            "lat": "42.995826",
            "lon": "-96.484990",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-artpublic-huntersmural.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hunters Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.995826,-96.484990\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This mural, depicting a winter hunting trip in Iowa, was painted by John Sharp in 1942.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t900 Central Ave.<br />U.S. Post Office<br />Hawarden, IA 51023<br />Sioux County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://livingnewdeal.berkeley.edu/projects/post-office-hawarden-ia/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Countryside Community Theatre",
            "lat": "41.652994",
            "lon": "-90.584132",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Countryside Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.652994,-90.584132\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Countryside Community Theater began in 1983 and is dedicated to serving the Quad Cities by providing opportunities for creativity and entertainment through the performing arts. The theater has been running for over thirty seasons, and has featured shows such as Shrek, The Sound of Music, and Annie.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 S 1st St.<br />North Scott High School Auditorium<br />Eldridge, IA 52748<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.285.6228</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cctonstage.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Sioux County",
            "lat": "43.001189",
            "lon": "-96.487668",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-monument-hawardenfreedomrock-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Sioux County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.001189,-96.487668\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux County Freedom Rock® in Hawarden honors modern-era veterans and branches from World War II, Korea, Vietnam, Gulf and wars in the Middle East. The ashes of a World War II veteran and Vietnam veteran are mixed in some of the paint in the artwork. The other side depicts a prison wall with a Prisoner of War looking out through the prison bars. He is looking down at a ribbon that he&#039;s holding that reads &quot;Not Forgotten&quot;. The Sioux County (Hawarden) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1301 Avenue E<br />Hawarden, IA 51032<br />Sioux County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Shucking Corn Mural",
            "lat": "41.824393",
            "lon": "-90.538166",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clinton-artpublic-shuckingcornmural.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Shucking Corn Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.824393,-90.538166\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painted by DeWitt native John Bloom in 1938, in a former post office building that now houses City Hall, this mural was created as part of a Depression-era federal program that supported artists with commissions to create fine art for public buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t510 9th St.<br />De Witt, IA 52742<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 510.642.5987</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://livingnewdeal.berkeley.edu/projects/dewitt-city-hall-shucking-corn-mural-dewitt-ia/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "DeWitt Opera House Theatre (Majestic Theater)",
            "lat": "41.822976",
            "lon": "-90.538771",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">DeWitt Opera House Theatre (Majestic Theater)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.822976,-90.538771\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Majestic Theater opened in 1874 as the DeWitt Opera House. The building operated as an opera house until it was remodeled into a movie theater in 1926. The theater changed its name to the Majestic Theater in 1935 and continues to operate today. The theater closed briefly in the 1960&#039;s but was sold to the DeWitt Theater Company and in 1978 the DeWitt Area Restoration of the Theater Committee formed to renovate and reopen the theater. The Majestic Theater reopened in 1982 in its current location and building.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t712 6th Ave.<br />De Witt, IA 52742<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.659.8213</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.dewitt-operahouse.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Credit Island and Natural Historic Preserve",
            "lat": "41.501442",
            "lon": "-90.608073",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-historicsite-creditislandandnaturalhistoricpreserve.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Credit Island and Natural Historic Preserve</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.501442,-90.608073\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Credit Island Park and Natural Historic Preserve is the largest of Davenport&#039;s parks and covers 450 acres. The site was named for the trading post that served Native American tribes and fur companies at the location. The park is also the site of the last battle for control of the Upper Mississippi River during the War of 1812. The battle occurred on September 4-5, 1814 and a historic marker commemorating the Battle of Credit Island was placed on the 200th anniversary by the City of Davenport. The city also commissioned a national battlefield study with financial support from the National Park Service.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2200 West River Dr.<br />2200 Credit Island Rd.<br />Davenport, IA 52802<br />Scott County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofdavenportiowa.com/department/division.php?structureid=196\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Galvin Fine Arts Center",
            "lat": "41.540569",
            "lon": "-90.582383",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-artmuseum-galvinfineartscenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Galvin Fine Arts Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.540569,-90.582383\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Galvin Fine Arts Center is home to two art galleries which host rotating exhibits by local, regional, and national artists. The center also houses an auditorium for performing art events.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t518 W Locust St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.333.6444</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.sau.edu/Galvin.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Black Hawk Purchase",
            "lat": "41.522268",
            "lon": "-90.575931",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Black Hawk Purchase</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522268,-90.575931\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Hiram Thompson created this mural in 1927 for the Davenport Bank and Trust Company Building. The building is now occupied by Wells Fargo.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t203 W 3rd St.<br />Wells Fargo Building (formerly Davenport Bank and Trust Company)<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Palmer College of Chiropractic Heritage Court",
            "lat": "41.529042",
            "lon": "-90.574311",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-monument-palmerheritagecircle-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Palmer College of Chiropractic Heritage Court</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529042,-90.574311\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Heritage Court is home to the large bronze busts of three generations of Palmers; Daniel David Palmer, usually called D.D.; his son, Bartlett Joshua Palmer, D.C., called B.J., and B.J.’s wife, Mabel Heath Palmer, D.C.; B.J. and Mabel’s son, David D. Palmer, D.C., often called Dr. Dave.  The Heritage Wall was built from bricks taken from the Ryan Building, which was the location of D.D. Palmer’s first adjustment in downtown Davenport.  The remains of B.J. and D.D. are kept within the wall.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 Brady St.<br />Palmer College of Chiropractic Campus<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "River Music Experience",
            "lat": "41.521031",
            "lon": "-90.575347",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-artsperforming-rivermusicexperience-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">River Music Experience</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.521031,-90.575347\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The River Music Experience allows visitors to more fully experience the music of the Mississippi River through live performances in a fun and hip atmosphere. Additionally, the RME also features exhibits, which detail the historical past and transformation of the Mississippi River music over time.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t129 Main St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.326.1333</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://rivermusicexperience.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Figge Art Museum",
            "lat": "41.520608",
            "lon": "-90.576296",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-artmuseum-figgeartmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Figge Art Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.520608,-90.576296\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Figge Art Museum is the premier art exhibition and education facility between Chicago and Des Moines. With soaring glass walls reflecting the constantly changing sky, the museum’s expansive galleries and intimate rooms are home to some of the Midwest’s finest art collections. Studio-style classrooms allow young and old to participate in the creative process.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t225 W 2nd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.326.7804</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.figgeartmuseum.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Quad City Symphony Orchestra",
            "lat": "41.523255",
            "lon": "-90.573723",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-artsperforming-quadcitysymphonyorchestra-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Quad City Symphony Orchestra</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.523255,-90.573723\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The mission of the Quad City Symphony Orchestra Association is to enrich the cultural life of the Quad City region by presenting and maintaining symphonic music of the highest artistic quality and providing comprehensive music education. The orchestra presents a variety of concerts throughout each season and the organization supports a number of youth ensembles and other educational experiences.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t327 Brady St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.322.0931�</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.qcsymphony.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Adler Theatre",
            "lat": "41.522567",
            "lon": "-90.572962",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-adlertheatre.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Adler Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522567,-90.572962\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162mi.</span></div>\n\t\t</div>\n\n\t\t<p>The beauty of the original Radio-Keith-Orpheum&#039;s Art Deco style was reflected in its gold leaf ceiling, crystal light fixtures, and black ebony, walnut, and marble detail. Much of the original movie theatre style remains and continues to recall the rich history of the Adler Theatre. Today, the beautifully restored theatre presents a diverse line-up of live, theatrical productions featuring celebrity headliners, first-rate Broadway shows, comedians, and more!</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t136 E 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.326.8500</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.adlertheatre.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "The Spirit of Law and Iowa Reports",
            "lat": "41.523272",
            "lon": "-90.573116",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Spirit of Law and Iowa Reports</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.523272,-90.573116\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Xiaoze Xie created these paintings in 2005 for the United States Courthouse in Davenport. They are images of law books, appropriate for the setting, and they serve as a reminder that the law is a learned profession.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t131 E 4th St.<br />United States Courthouse<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.449.5432</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Ballet Quad Cities",
            "lat": "41.506182",
            "lon": "-90.575819",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ballet Quad Cities</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.506182,-90.575819\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Ballet Quad Cities is the longest-running resident professional ballet company in the entire state of Iowa. Our award-winning performances, interactive school and community programs are accessible to everyone. Each year we touch over 25,000 people with the amazing, athletic, and entertaining art of dance. Ballet Quad Cities performs in Cedar Rapids, Davenport, Dewitt, Muscatine, and Orange City.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t613 17th St.<br />Rock Island, IL 61201<br />Rock Island County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.balletquadcities.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Chief Keokuk&#039;s Grave",
            "lat": "40.411857",
            "lon": "-91.379640",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-monument-chiefkeokuk.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chief Keokuk&#039;s Grave</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.411857,-91.379640\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Amidst rumors that the United States Army was coming to destroy the Native American Village of Peoria, along the Illinois River, Native Americans found themselves stricken with fear. Searching for answers, a young Sauk Native American was named war chief and offered hope and direction. The young leader later became known as Chief Keokuk. \r\n\r\nKeokuk was a talented diplomat and was used to negotiate treaties and balance the interests of authorities and the Sauk and Fox (Meskwaki) tribes. During his residence in Iowa, Keokuk made multiple trips to Washington, D.C. where he worked to negotiate tribal lands and keep peace among Indian tribes and white settlers. \r\n\r\nIn 1834, the city of Keokuk, Iowa was named for the chief. While there is no evidence that Chief Keokuk was connected to the town, about this time he began to be considered a notable American Indian by white Americans due to his diplomacy skills and accomplishments.\r\n\r\nChief Keokuk’s leadership was not without controversy. There was discord among the Sauk and Meskwaki tribes as his status and accommodations with the federal government increased. Federal agents allowed Keokuk to distribute tribal annuities and evidence suggests that Keokuk used his position for personal advantage. In 1842, Keokuk negotiated the sale of the last tribal land in Iowa and agreed to remove to Kansas. While the Meskwaki denounced the sale, Keokuk led other followers to Kansas in 1845 where he died in 1848 and was buried…the first time.\r\n\r\nIn the 1880s two prominent Keokuk citizens, Judges Caleb Davis, a Native American object collector who took a great interest in the chief’s life, set out on a mission to have the remains reinterred in Keokuk, Iowa. After securing the necessary permits and permissions the bones were removed from the Kansas resting place and it was discovered that the skull and one arm had gone missing. Judge Davis brought the bones back to Keokuk and was determined to retrieve the lost remains of the chief.\r\n\r\nThe story is told that Judge Davis returned to Ottawa, Kansas, in search of the skull, locating it at a “white man’s lodge” where it was reportedly used for ceremonial purposes. After much persuasion, Davis secured the skull from the lodge. At the time it wasn’t unusual for people to keep such curiosities and Davis brought the skull back to Iowa where it remained in his collection for many years.\r\n\r\nIn 1913, a monument was erected and the remains of Chief Keokuk were finally laid to rest once again at Rand Park in Keokuk. Built into the monument is the original marble grave marker brought back from Kansas. In 1925, Judge Davis’ daughter, Anne, donated the rest of the Judge Caleb Davis Collection to the State Historical Museum.\r\n\r\nChief Keokuk’s story picks up a century and a half after his death in Des Moines. It was 1987 and the State Historical Museum collection was being moved to the new historical building. Found in storage were some long forgotten artifacts from the judge’s collection. Included were human teeth with tags attached indicating that two were removed from Chief Keokuk’s skull in 1886 by C.F. Davis and two were removed by Anne Davis before the skull was reburied in 1913. The teeth were transferred to the Office of the State Archaeologist and in 1995 an osteological report was completed that determined that it was unlikely the teeth came from Chief Keokuk because the dental examination showed the teeth were that of a much younger person. \r\n\r\nWhich begs the question…who else is buried in Chief Keokuk’s grave?</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1401 Stripe St.<br />Rand Park<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Grand Theatre",
            "lat": "40.397214",
            "lon": "-91.383333",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-theater-grandtheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.397214,-91.383333\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1924, the Grand Theatre was built on the site of the former opera house (Baker-Dodge Theater) which had burned down in 1923. Opening night for the Grand was on Jan. 27th, 1925. Designed by Architect Merle F. Baker. The theater closed in 1957 and remained vacant until 1965 when the theater was renovated and reopened. It continued to operate as a movie theater into the 1980s, but in 1988 ownership was transferred over to the City of Keokuk. Today, the theater is currently used for live performances and community events.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t26 N 6th St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Junior Theatre Inc.",
            "lat": "41.547912",
            "lon": "-90.551709",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-artsperforming-juniortheatre.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Junior Theatre Inc.</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.547912,-90.551709\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Founded in 1951, the Davenport Junior Theatre Inc. is the second oldest children&#039;s theatre in the country. It provides acting and dance classes for children ranging in ages from three to eighteen. The enriching classes and performances offer fun for the entire family.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2822 Eastern Ave.<br />Annie Wittenmyer Complex<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.326.7862</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Keokuk Art Center",
            "lat": "40.397439",
            "lon": "-91.381064",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-artcenter-keokukartcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Keokuk Art Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.397439,-91.381064\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Organized in the 1950s by a group of local artists, the Keokuk Art Center offers exhibitions, classes, and more to the public. Shares a building with the Keokuk Public Library.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210 N 5th St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.524.8354</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.keokukartcenter.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "New Ground Theatre",
            "lat": "41.530804",
            "lon": "-90.545746",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-theater-newgroundtheatre-4.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">New Ground Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530804,-90.545746\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">163.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>As part of the Village of East Davenport, the New Ground Theatre works to provide new and exciting theater experiences for the community through the promotion of local artists. The theatre offers camps and classes for the community and strives to keep performances on the cutting edge with 3D and HiDef technologies.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2113 E 11th St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.326.7529</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.newgroundtheatre.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Family Museum",
            "lat": "41.552506",
            "lon": "-90.502551",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-artmuseum-familymuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Family Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.552506,-90.502551\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Family Museum is an interactive children&#039;s museum emphasizing the arts and sciences for children age eight and younger. It includes Amazing Acres, a permanent exhibition devoted to teaching young learners about the importance of agriculture, food production, and weather&#039;s impact on growing regional crops.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2900 Learning Campus Dr.<br />Bettendorf, IA 52722<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.344.4106</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.familymuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Davenport RiverCity Sculptures",
            "lat": "41.524700",
            "lon": "-90.505586",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-artpublic-davenportricercitysculptures-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Davenport RiverCity Sculptures</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.524700,-90.505586\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The sculpture park in Bettendorf opened in 2008, and contains many public sculptures. Not all sculptures are permanent, so the park changes every year.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2021 State St.<br />Waterfront Convention Center<br />Bettendorf, IA 52722<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 309.793.1213</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.quadcityarts.com/public%20sculpture.asp\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Mississippi River",
            "lat": "41.597699",
            "lon": "-90.478986",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-artpublic-mississippiriver.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mississippi River</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.597699,-90.478986\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Discover the Mississippi River with this installation by David B. Dahlquist. Massive steel beams at the rest area mimic river bridges. Inside, one mural depicts a vehicle rail bridge and the other depicts a barge &quot;locking&quot; through Mississippi River Lock and Dam No. 15.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tInterstate Hwy. 80 Westbound<br />Mile Post 300 Rest Area<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadot.gov/maintenance/rest_areas/posters/i80davenport.pdf\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World Wars Honor Roll",
            "lat": "42.257938",
            "lon": "-90.422565",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World Wars Honor Roll</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.257938,-90.422565\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The World Wars Honor Rolls in Bellevue is along the city&#039;s picturesque riverwalk. The monument is dedicated to the memory of those who have served in the armed forces, including those who have made the supreme sacrifice. The plaques list 18 soldiers who died in World War I and 18 soldiers who died in World War II. The World Wars Honor Rolls were dedicated by Reveille Post No. 273 of the American Legion.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Riverview Dr.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Living, Flowing Water, Ever-Changing",
            "lat": "42.255023",
            "lon": "-90.421307",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Living, Flowing Water, Ever-Changing</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.255023,-90.421307\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Living, Flowing Water, Ever-Changing, by Ronald K. Hansen, is a free-standing kinetic object mobile that represents smokestacks surrounded by individual colorful fish that move freely with the wind. This installation is part of the Byways of Iowa Public Art Initiative, a program that began in 2014 to expand local art experiences and create art that epitomizes the culture and character of the communities along Iowa&#039;s byways. Living, Flowing Water, Ever-Changing is located on the Grant Wood Scenic Byway and the Great River Road.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Riverview Dr.<br />US Hwy. 52<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Scott County",
            "lat": "41.596752",
            "lon": "-90.342965",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-monument-scottcountyfreedomrock-1-dt.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Scott County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.596752,-90.342965\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Scott County Freedom Rock® in LeClaire features the shape of Scott County with a shout out to service men and women, including our police, fire, and emergency officers. The back side features two Medal of Honor recipients: Buffalo Bill Cody and John Baker. Both of these men are natives of Scott County, Buffalo Bill Cody being widely known. \r\n\r\nThe lesser known hero, Sgt. John Baker received his medal in the Vietnam War. While en route to assist another unit that was engaged with the enemy (Viet Cong), Company A came under intense enemy fire and the lead man was killed instantly. Sgt. Baker immediately moved to the head of the column, and together, with another soldier knocked out two enemy bunkers. When his comrade was mortally wounded, Sgt. Baker, spotting four Viet Cong snipers, killed all of them, evacuated the fallen soldier and returned to lead repeated assaults against the enemy positions, killing several more Viet Cong. In the second attack and additional enemy bunkers, he and another soldier drew intense enemy fire and Sgt. Baker was blown from his feet by an enemy grenade. He quickly recovered and single-handedly destroyed one bunker before the other soldier was wounded. Seizing his fallen comrade&#039;s machine gun, Sgt. Baker charged through the deadly fusillade to silence the other bunker. He evacuated his comrade, replenished his ammunition and returned to the forefront to brave the enemy fire and continue the fight. When the forward element was ordered to withdraw, he carried one wounded man to the rear. As he returned to evacuate another soldier, he was taken under fire by snipers, but raced beyond the friendly troops to attack and kill the snipers. After evacuating the wounded man, he returned to cover the deployment of the unit. His ammunition now exhausted, he dragged two more of his fallen comrades to the rear. \r\n\r\nAnother unique piece on this rock is on the side facing the river. This side includes the ashes of U.S. Army Staff Sgt. Nathan Cox. Nathan died Sept. 20, 2008, in Afghanistan after his vehicle was struck by an IED. Alongside Freedom Rock artist, Ray Sorensen, Cox&#039;s 11-year-old daughter, Sophie Cox, as well as his wife, Annie and mother, Jane painted the ashes onto the rock. Adding his ashes was made even more special because I allowed Sophie Cox, the 11-year-old daughter of Nathan, to paint his ashes onto the rock. The American Flag is draped over the top, tying the mural together.\r\n\r\nThe Scott County (LeClaire) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Front St.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "science-centers.png",
            "title": "Felix Adler Children&#039;s Discovery Center",
            "lat": "41.838592",
            "lon": "-90.192376",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/science-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Felix Adler Children&#039;s Discovery Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.838592,-90.192376\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">177.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Felix Adler Children&#039;s Discovery Center was opened in 1993. The center is dedicated to providing a safe and positive environment for families to discover the world by exploring arts, culture, and science through interactive and educational exhibits. The center was named after world famous clown and Clinton native, Felix Adler.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t332 8th Ave. S<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.243.3600</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://adlerdiscoverycenter.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Clinton County Courthouse",
            "lat": "41.850632",
            "lon": "-90.188294",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clinton County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.850632,-90.188294\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clinton County Courthouse was dedicated in August of 1897, and is an imposing and handsome structure in the Romanesque style. William Andrews painted the mural &quot;Allegorical Mural Depicting the Law and Blind Justice, Rejecting Vanity&quot; in 1901. Three female figures represent the law, justice, and vanity. It was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t612 N 2nd St.<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "River Arts Center",
            "lat": "41.840945",
            "lon": "-90.189768",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">River Arts Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.840945,-90.189768\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178mi.</span></div>\n\t\t</div>\n\n\t\t<p>The River Arts Center is Clinton&#039;s premier art gallery. The gallery offers approximately eight different art exhibits per year, as well as its permanent collection, classrooms, and gift shop. It is also home to the Clinton Art Players Theatre.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t229 5th Ave. S<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.243.3300</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://clintonartassociation.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "River&#039;s Edge",
            "lat": "41.848033",
            "lon": "-90.183629",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">River&#039;s Edge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.848033,-90.183629\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>River&#039;s Edge&#039; by Mac Hornacker, standing 12 feet high, was inspired by the movement of water and terrain along the banks of the Mississippi River.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRiver View City Park<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.277.6734</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.olsonlarsen.com/index.cfm?nodeID=65608andaudienceID=1andalbumID=3842andaction=dspalbum\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Clinton Area Showboat Theatre",
            "lat": "41.846780",
            "lon": "-90.183019",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clinton Area Showboat Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.846780,-90.183019\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clinton Area Showboat Theatre is a theatre that strives to share superior artistic theatre and theatre education with the greater Clinton area. They perform on a boat named the Rhododendron, a tug boat that was converted into a show boat in 1962. The boat was purchased by the city of Clinton in 1966 and immediately put to work. It was rechristened the &quot;City of Clinton&quot; and in 1980 was given its first theatre. The boat is currently operated by the Clinton Area Showboat Theatre (CAST), who performs on a regular basis.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t303 Riverview Dr.<br />Clinton, IA 52733<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.242.2802</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.ClintonShowboat.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        }
    ]
  }
In [6]:
arts_data = extract_info(arts)
arts_data = pd.DataFrame(arts_data)
arts_data[['city', 'county']] = arts_data['address'].apply(lambda x: pd.Series(extract_city_county(x)))
arts_data['marker'] = arts_data['image'].apply(extract_marker)
arts_data
Out[6]:
title latitude longitude image distance address phone website city county marker
0 Christian Peterson Courtyard Sculptures and Da... 42.026731 -93.642860 /images/icons/markers/national-register-of-his... 0.1mi. Union Dr., Ames, IA 50010, Story County None None Ames Story national-register-of-historic-places
1 Escalieta I 42.025650 -93.644474 /images/icons/markers/public-art.png 0.1mi. Wallace Rd., Gerdin Business Building, Iowa St... 515.242.6195 http://www.publicartarchive.org/work/escalieta-i Ames Story public-art
2 History of Dairying 42.026875 -93.642983 /images/icons/markers/public-art.png 0.1mi. Food Sciences Building Courtyard, Iowa State U... 515.294.3342 None Ames Story public-art
3 Janus Agri Altar 42.028215 -93.642973 /images/icons/markers/public-art.png 0.1mi. 100 Osborn Dr., Agronomy Hall, Iowa State Univ... 515.242.6195 http://www.publicartarchive.org/work/janus-agr... Ames Story public-art
4 Fountain of the Four Seasons 42.024340 -93.645937 /images/icons/markers/public-art.png 0.2mi. Memorial Union, Iowa State University, Ames, I... 515.294.3342 None Ames Story public-art
... ... ... ... ... ... ... ... ... ... ... ...
736 Felix Adler Children&#039;s Discovery Center 41.838592 -90.192376 /images/icons/markers/science-centers.png 177.9mi. 332 8th Ave. S, Clinton, IA 52732, Clinton County 563.243.3600 http://adlerdiscoverycenter.org Clinton Clinton science-centers
737 Clinton County Courthouse 41.850632 -90.188294 /images/icons/markers/national-register-of-his... 178mi. 612 N 2nd St., Clinton, IA 52732, Clinton County None None Clinton Clinton national-register-of-historic-places
738 River Arts Center 41.840945 -90.189768 /images/icons/markers/art-centers.png 178mi. 229 5th Ave. S, Clinton, IA 52732, Clinton County 563.243.3300 http://clintonartassociation.com Clinton Clinton art-centers
739 River&#039;s Edge 41.848033 -90.183629 /images/icons/markers/public-art.png 178.2mi. River View City Park, Clinton, IA 52732, Clint... 515.277.6734 http://www.olsonlarsen.com/index.cfm?nodeID=65... Clinton Clinton public-art
740 Clinton Area Showboat Theatre 41.846780 -90.183019 /images/icons/markers/performing-arts-centers.png 178.3mi. 303 Riverview Dr., Clinton, IA 52733, Clinton ... 319.242.2802 http://www.ClintonShowboat.org Clinton Clinton performing-arts-centers

741 rows × 11 columns

In [ ]:
 
In [ ]:
 
In [ ]:
 
In [ ]:
 

Extracting from the HISTORY bar¶

In [7]:
history = {
    "s": 1,
    "p": [
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Christian Peterson Courtyard Sculptures and Dairy Industry Building",
            "lat": "42.026731",
            "lon": "-93.642860",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Christian Peterson Courtyard Sculptures and Dairy Industry Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.026731,-93.642860\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Christian Petersen was the only sculptor in the Public Works of Art Project in Iowa City in 1934, directed by Iowa Painter Grant Wood. His sculptures here are regarded as &quot;significant artistic statements on agriculture, technology, and higher education in mid-1930s America.&quot; The Christian Peterson Courtyard Sculptures and Dairy Industry Building was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUnion Dr.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Farm House Museum",
            "lat": "42.027147",
            "lon": "-93.643955",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-historymuseum-farmhousemuseum-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Farm House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.027147,-93.643955\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Nestled in the center of Iowa State University, the Farm House Museum sits as a monument to early history and culture. As the first building on campus as well as a National Historic Landmark, the Farm House took four years to build (1860-1864), before campus was occupied by students or classrooms. It was the home of Seaman Asahel Knapp, noted agriculturist and teacher, and of James Wilson, agriculturist and Secretary of Agriculture. The prairie landscape was bleak and desolate at the time, and those first farm tenants primed the land for agricultural experimentation. Today, the Farm House operates as a museum about agricultural life. It was added to the National Register of Historic Places in 1966.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tFarmhouse Ln.<br />Iowa State University<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.294.7426</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Iowa State Memorial Union",
            "lat": "42.023887",
            "lon": "-93.645967",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa State Memorial Union</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.023887,-93.645967\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Alumni, students and faculty of Iowa State College (now Iowa State University) organized in 1922 to build a memorial building to honor the Iowa State College men and women who served in the Civil War, the Spanish-American War and World War I. According to the Emmetsburg Palo Alto Tribune, published on June 22, 1927, the building was built at a cost of $720,000 and was constructed of steel, reinforced concrete and Bedford limestone. The Memorial Union at Iowa State University, which is still in use, opened in September 1928.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2229 Lincoln Way<br />Iowa State University<br />Ames, IA 50014<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Catt Hall (Agriculture Hall)",
            "lat": "42.027796",
            "lon": "-93.645698",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-nhr-catthall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Catt Hall (Agriculture Hall)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.027796,-93.645698\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Agriculture Hall is the last surviving well-preserved 19th century building on the Iowa State University Campus. Its central placement on the original campus makes it an important visual landmark. A notable Cedar Rapids architectural firm, Josselyn and Taylor, designed the building. The Agriculture Hall was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tOsborn Dr.<br />Iowa State University<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Morrill Hall",
            "lat": "42.027116",
            "lon": "-93.648010",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-nhr-morrillhall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Morrill Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.027116,-93.648010\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building, completed in 1891, represents the end of the “educational frontier” period of the college’s first 33 years. During the following two decades the college entered a new era of growth in curriculum, enrollment, and building construction. W.S. Moore, writing in 1896, described Morrill Hall, Agriculture Hall, and Margaret Hall as “the special pride of the institution.” Morrill Hall was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMorrill Rd.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Alumni Hall",
            "lat": "42.025002",
            "lon": "-93.649197",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-nhr-alumnihall.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alumni Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.025002,-93.649197\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction for a new Iowa State University building began in 1904 after years of planning and fundraising, but was halted in 1905 when funds ran out. After sitting uncompleted for two years, Laverne Noyes agreed to fund the completion of the building on the conditions that the building be named &quot;Alumni Hall&quot; and the Alumni Association is given office space. Until 1914, the building housed the campus&#039; only swimming pool and in 1917 it was used as an infirmary for the flu epidemic. The building also had a cafe (known as &quot;College Inn&quot;) and bowling alley. Between 1927-1937, remodeling added more student rooms, games rooms, study rooms. The Alumni Association also relocated to the Memorial Union and the Alumni Hall was used as an administration building for the Naval Training School during World War II. After the Navy moved out in 1944, the building continued to house the YMCA, YWCA, and served as dormitories. In 1986, the Board of Regents granted ISU approval to acquire the building from the Alumni Hall Corporation Board of Directors and in 1987, the last residents moved out and a $2.1 million historic remodeling was undertaken. In 2008, the building was renamed the Enrollment Services Center to avoid confusion with a new Alumni Center. The building now houses the Office of Admissions and the Office of the Registrar. It was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUnion Dr.<br />Iowa State University<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Delta Upsilon Chapter House",
            "lat": "42.022043",
            "lon": "-93.644857",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-nhr-deltaupsilonhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Delta Upsilon Chapter House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.022043,-93.644857\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Delta Upsilon Chapter House is architect Alexander Linn&#039;s most accomplished work in Ames and demonstrates his skill in the French Renaissance style. It was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t117 Ash Ave.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Iowa State University Horse Barns",
            "lat": "42.030980",
            "lon": "-93.643640",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa State University Horse Barns</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.030980,-93.643640\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This horse barn is the facility that most will recognize as the Iowa State Horse Barn. It is an architectural gem constructed of clay tile. The roof is gambrel style with turned up eaves. The roof is outfitted with handsome metal ventilators with lightning rods. The roof includes numerous gabled and shed dormers that accommodate ventilation windows and haymow doors. Proudfoot, Bird and Souers of Des Moines served as the architectural firm. The two wings designed to house animals were built in 1923; however, the name of the builder is not recorded. The center wing designed by Proudfoot, Souers and Rawson of Des Moines was constructed by E. B. Castle in 1926. This addition completed the U-shape design.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUniversity Blvd. and Stange Rd.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> http://www.ans.iastate.edu/history/barns/barns6.html#dairybarns</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Iowa State University Special Collections",
            "lat": "42.028112",
            "lon": "-93.648811",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa State University Special Collections</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.028112,-93.648811\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Special Collections Department at Parks Library helps to identify, select, preserve, create access to, provide reference for, and promote the use of rare and unique research materials that support major research areas of Iowa State University. The department contains nearly 15,000 linear feet of archival materials documenting agriculture, natural history, statistics, veterinary medicine and women in science and engineering.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t403 Parks Library<br />Iowa State University<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.294.6672</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"www.lib.iastate.edu/spcl/index.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Colonial&#039;s Club House",
            "lat": "42.021070",
            "lon": "-93.644872",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Colonial&#039;s Club House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.021070,-93.644872\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Completed in 1910, the Colonials Club House played an important role in the development of the Fourth Ward in Ames, Iowa. The construction of the building on the south side of the Iowa State University campus inaugurated a major land use change in the community. The Colonials Club House was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t217 Ash Ave.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Laboratory of Mechanics (Engineering Hall)",
            "lat": "42.025602",
            "lon": "-93.650536",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Laboratory of Mechanics (Engineering Hall)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.025602,-93.650536\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Engineering Hall was built in 1882 and remains a unique example of Second Empire design on the Iowa State University campus. The building is also one of few examples of Second Empire influenced designs in all of Story County. The Engineering Hall was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUnion Dr.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowa Beta Chapter of Sigma Phi Epsilon",
            "lat": "42.020552",
            "lon": "-93.640432",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Beta Chapter of Sigma Phi Epsilon</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.020552,-93.640432\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Beta Chapter of Sigma Phi Epsilon fraternity house was built in 1931 in the Greek-affiliated student living neighborhood on the south edge of Iowa State University. The Tudor Revival style building was designed by Des Moines architect Amos B. Emery. Emery balanced the simplicity of a cottage with modern detailing to add interesting elements without adding extensive costs during the Great Depression. On May 29, 1943 a fire damaged the third floor, resulting in reconstruction taking place into the next academic year. In addition, in the fall of 1943, two-thirds of the fraternity members left for World War II. As a result of the war and a large enrollment of women at the university, women resided at the fraternity house until the end of the war. Additional renovations and additions have been completed over the years and the building is still occupied by the Sigma Phi Epsilon fraternity.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t228 Gray Ave.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Marston Water Tower",
            "lat": "42.026947",
            "lon": "-93.650835",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marston Water Tower</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.026947,-93.650835\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Marston Water Tower is believed to be one of the earliest, if not the first, steel water tower constructed west of the Mississippi River. Professor Anson Marson, the first dean of Iowa State’s College of Engineering, was the a driving force for the tower’s construction. After the college’s wells began drying up in 1892, Marston prepared plans for a waterworks system, but the legislature turned a deaf ear. Four years later, however, when the college closed due to water shortages, enough money was appropriated to begin construction of Marston’s system. The Marston Water Tower was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMarston Dr.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Gilmour B. and Edith Craig MacDonald House",
            "lat": "42.017365",
            "lon": "-93.644752",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gilmour B. and Edith Craig MacDonald House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.017365,-93.644752\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built around 1916, the Edith Craig and Gilmour B. MacDonald House is significant for its association with G. B. MacDonald, one of the leading figures in the Conservation Movement in Iowa from the time he joined the faculty at Iowa State College (now Iowa State University) in 1910 until his death in 1960. MacDonald was the leading spokesperson for forestry and soil conservation prior to World War II. The house is also an outstanding example of Craftsman architecture in Ames. The Edith Craig and Gilmour B. MacDonald House was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t517 Ash Ave.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowa House",
            "lat": "42.018793",
            "lon": "-93.652123",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-nhr-sigmasigmadeltachihouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.018793,-93.652123\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">0.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sigma Sigma-Delta Chi Fraternity House is an imposing example of a fraternity house in Ames whose design shows the eclectic influence of Craftsman, Tudor Revival, and Classical styling. The Sigma Sigma-Delta Chi Fraternity House was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t405 Hayward Ave.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Roosevelt School, Ames",
            "lat": "42.030547",
            "lon": "-93.623638",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Roosevelt School, Ames</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.030547,-93.623638\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Roosevelt School is first opened for classes in 1924 and operated until its closure in 2005. The school played a central role in the social, cultural, and educational life of northwest Ames. It was the anchor for the development of the surrounding residential neighborhood during the 1920s to 1950s, serving as an elementary school, community center, park, and playground. The school is a well preserved example of the education and community ideals informing schoolhouse architecture in 1920s Iowa. The Roosevelt School was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t921 9th St.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Iowa State University Dairy Show Pavillion",
            "lat": "42.010709",
            "lon": "-93.651678",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-nhr-isudairyshowpavilion.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa State University Dairy Show Pavillion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.010709,-93.651678\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This facility is constructed of clay tile, is oval in shape, and provides bleacher seating for students and spectators at events. The unit, like all of the pavilions, has high windows for natural light and a delightful architectural character reminiscent of large pavilions commonly built at major fair grounds. The building has been restored by a joint effort of students and faculty supported by the dairy industry. Date of construction was most likely in 1921 or 1922 in that 1923 photographs show a new building but the construction site was healed at the time.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMortenson Rd. and Hayward Ave.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> http://www.ans.iastate.edu/history/barns/barns6.html#dairybarns</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Iowa State University Dairy Barn",
            "lat": "42.010753",
            "lon": "-93.652555",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa State University Dairy Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.010753,-93.652555\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The present main dairy barn was built during the 1930s and completed in 1937. The building remains in largely original condition both inside and out although milking parlor modifications have been made as improved equipment was acquired over the years. The barn is a U-shape design with classical gambrel roof accommodating a haymow over the entire structure.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMortenson Rd. and Hayward Ave.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> http://www.ans.iastate.edu/history/barns/barns6.html#dairybarns</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ames City Hall",
            "lat": "42.026371",
            "lon": "-93.617393",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ames City Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.026371,-93.617393\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ames City Hall building was built in 1912 as Ames High School. It was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t515 Clark Ave.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ames Municipal Building",
            "lat": "42.025681",
            "lon": "-93.613406",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ames Municipal Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.025681,-93.613406\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed between 1915 and 1916, the Municipal Building embodies the city’s efforts to implement progressive government reforms during the early 20th century. These reforms included infrastructure improvements such as hard surface streets, sidewalks, sewers, improved municipal electric and heating plants, and increased professionalism, efficiency and scope in municipal services. The Municipal Building housed the facilities for the city council, mayor, municipal offices, police department (including jail and police court) and fire department. It was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t420 N Kellogg Ave.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Old Town Historic District",
            "lat": "42.029133",
            "lon": "-93.613723",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Town Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.029133,-93.613723\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old Town Historic District in Ames is located between Grand and Duff Avenue and 7th through 13th Streets. The neighborhood consists of about 150 residential structures remaining from the first two plats of Ames: the Original Town and Blair&#039;s Addition. It is the largest and best preserved concentration of late 19th and early 20th centuries residential architecture in Ames, featuring a variety of Victorian and American Movement styles. The district was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDouglas Ave.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Professor J. L., Sarah M. and Etta Budd House",
            "lat": "42.029256",
            "lon": "-93.613367",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Professor J. L., Sarah M. and Etta Budd House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.029256,-93.613367\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Budd House was built in 1885 for J.L. Budd, a botanist of national prominence, whose contributions to horticulture included the introduction to the US of nonindigenous plant material, as well as service to higher and public education. J.L. Budd was hired as Professor of Horticulture and Forestry at Iowa State University (then Iowa State College) in 1877. The Budd House was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t804 N Kellogg Ave.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Archie A. and Nancy C. Martin House",
            "lat": "42.022697",
            "lon": "-93.612992",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064aa1c674b7652f2bbb.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Archie A. and Nancy C. Martin House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.022697,-93.612992\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Archie Martin (1857-1960) was born in Wilmington, North Carolina, and Nancy Martin (1856-1947) was born in Newman, George. They married in Austell, Georgia, in 1876 and arrived in Ames around 1915. Archie Martin worked for the Chicago and North Western Railroad until his retirement at age 75.\r\n\r\nShortly after arriving in Ames with at least five of their seven children, the Martins purchased a one-story home at this address and replaced it with a larger bungalow. At that time, the area was a mostly residential neighborhood. \r\n\r\nThe larger bungalow eventually allowed the Martins to rent the upper story of their home to Black Iowa State University students who at that time were not allowed to live on campus. Between 1920 and the 1950s, the Martins provided housing to at least fourteen male ISU students.\r\n\r\nThe city of Ames designated this house a local landmark in 2007.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t218 Lincoln Way<br />Ames, IA 50010\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Ames Historical Society",
            "lat": "42.025673",
            "lon": "-93.611876",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ames Historical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.025673,-93.611876\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ames Historical Society makes the history of Ames compelling for future generations. employees several outlets for visitors. Their museum in Downtown Ames includes a variety of exhibits, including one about the Dinky train. Additionally, the Ames Historical Society maintains the Ames History Center.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t416 Douglas Ave.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.232.2148</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.ameshistory.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Hoggatt School",
            "lat": "42.040234",
            "lon": "-93.615228",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hoggatt School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.040234,-93.615228\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1862, the Hoggatt School is a one-room, log cabin school constructed by local settlers. In 1981, it was moved from its original location at 1008 3rd Street to its current location on the Meeker School grounds. The Ames Historical Society has restored the school and operates it as a museum to provide visitors and local school groups with a living history education experience.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 20th St.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bandshell Park Historic District",
            "lat": "42.026363",
            "lon": "-93.609626",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bandshell Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.026363,-93.609626\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Band shell Park Historic District is a municipal park that became an outdoor music facility in the 1930s with the addition of a band shell in 1935. The Band shell Park Historic District was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDuff Ave.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Skunk River Bridge",
            "lat": "41.986590",
            "lon": "-93.587118",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-nhr-skunkriverbridge-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Skunk River Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.986590,-93.587118\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Skunk River Bridge is a Warren Truss Bridge built in 1876. In 1876, Story County Supervisors contracted with King Iron Bridge Company to build 3 steel truss bridges, the longest of which would cross the Skunk River, just east of Cambridge, Iowa. The Cambridge bridge had an 80 foot truss, and its 3 spans had a combined length of 163 feet . This bridge was used frequently, and underwent occasional repairs. By 1916, it was no longer sufficient to handle the traffic on its road. It was subsequently replaced and moved to its present location, southeast of Ames, Iowa. The bridge was used lightly until 1990, when the road it was on was abandoned. It is still standing, but has fallen into a state of disrepair. The Skunk River Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tKen Maril Rd.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Rosenfeld Barn",
            "lat": "41.961646",
            "lon": "-93.656999",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rosenfeld Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.961646,-93.656999\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">4.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rosenfeld Barn was built around 1918, on land George Rosenfeld purchased in 1873, to house a nationally recognized purebred herd of Aberdeen-Angus cattle. In 1923 the Rosenfeld herd had the International Grand Champion Aberdeen-Angus Cow at Chicago. In 1925 the herd produced the Grand Champion Herd of steers over all breeds at Chicago. The huge (96 feet by 66 feet) barn has a poured concrete foundation that goes up inside walls higher than usual. Cattle rubbed against the concrete instead of wood, creating less damage. The pegged barn has 27 four-paned windows for light and ventilation. Buyers from throughout the United States used to attend breeding stock sales at the barn.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t27282 520th Ave.<br />Kelley, IA 50134<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "O&#039;Neill Dairy-Hassebrock Barn",
            "lat": "42.093447",
            "lon": "-93.604432",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-barn-oneilldairyhassebrockbarn-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">O&#039;Neill Dairy-Hassebrock Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.093447,-93.604432\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">5.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The O&#039;Neill Dairy, owned by brothers Clem and Henry, was an Ames institution in the 50s and 60s. The large cow herd provided about half of the milk consumed in Ames. Vince Hassebrock, who grew up a mile from the dairy, and his wife bought the farm from the O&#039;Neill estate in 1969. The Hassebrocks actively farm.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t54745 180th St.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Pleasant Grove Community Church and Cemetery",
            "lat": "42.106436",
            "lon": "-93.561432",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-nhr-pleasantgrove-communitychurchandcemetery-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pleasant Grove Community Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.106436,-93.561432\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Pleasant Grove Church and Cemetery are locally significant because they represent the work of a late 19th century community of pioneer farm families and their dedication to their faith. The Pleasant Grove Church and Cemetery were added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t56971 170th St.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Kalsem Barn",
            "lat": "41.917032",
            "lon": "-93.629217",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kalsem Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.917032,-93.629217\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">7.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kalsem Barn was built in the late 1800&#039;s by Ole J. and Anna (Nelson) Kalsem. The pegged barns were built in the late 1800s. Ole&#039;s son, Orville and wife, LaVerne (Ersland) bought the farm in the 1940s. Sons, John and Dave, bought part ownership in the farm in 1965 and are now sole owners.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t30342 535th Ave.<br />Huxley, IA 50124<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Uetz Barn (William Smalley Barn)",
            "lat": "42.093558",
            "lon": "-93.773860",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-barn-williamsmalleybarnrobertandcarlauetzbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Uetz Barn (William Smalley Barn)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.093558,-93.773860\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">8.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn, located in Jackson Township, was built by William Smalley about 1920. The farmstead has many original buildings including a chicken house that was formerly the family home. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2011 180th St.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Keigley Branch Bridge",
            "lat": "42.142871",
            "lon": "-93.600963",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-nhr-keigleybranchbridge-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Keigley Branch Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.142871,-93.600963\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">8.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Keigley Branch bridge was built in 1913 by Koss Construction Co. and still functions on 550th Ave. It is a concrete arch bridge that spans about 47 feet. The Keigley Branch Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t550th Ave.<br />Gilbert, IA 50105<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Lowman-Johnson Barn",
            "lat": "41.907739",
            "lon": "-93.687169",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lowman-Johnson Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.907739,-93.687169\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">8.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lowman-Johnson Barn, built around 1890, is situated on a picturesque, well-cared for farm near Slater. It had some restoration in the 1950s. The barn, which houses Dennis and Norma Johnson&#039;s horses, was owned by Frank and Edith Lowman for 35 years. The barn illustrates how a small barn can become a piece of art.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t50553 310th St.<br />Slater, IA 50244<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Dyer-Dowell Victorian House",
            "lat": "42.020154",
            "lon": "-93.453918",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dyer-Dowell Victorian House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.020154,-93.453918\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">9.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dyer-Dowell Victorian House was originally the Story County jail. It was built in 1869 and measured 20&#039;x40&#039;. The jailer&#039;s residence was on the first floor, with prisoner&#039;s cells on the second floor. The home was purchased by Judge George W. and Martha Kellogg Dyer and used as a private residence. They Dyers descendants gave the family home to the Nevada Community Historical Society in 1988.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t922 5th St.<br />Nevada, IA 50201<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Nevada Downtown Historic District",
            "lat": "42.021570",
            "lon": "-93.452266",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nevada Downtown Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.021570,-93.452266\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">9.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This downtown historic district reflects 50 years of commercial development in Nevada&#039;s central business district. These blocks highlight the community planning efforts of several generations of builders and developers and represent a collection of the commercial architectural styles and vernacular building forms that appeared in Nevada from the 1870s through the 1920s. The Nevada Downtown Historic District was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6th St.<br />Nevada, IA 50201<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Nevada Community Historical Society Museum",
            "lat": "42.020489",
            "lon": "-93.451458",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nevada Community Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.020489,-93.451458\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">9.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Nevada Community Historical Society Museum is the headquarters of the local history society and displays artifacts from Nevada&#039;s history. The society also operates other historical properties including, Briggs Terrace, George Child Log House, Dyer-Dowell Victorian House and the Halley School.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t624 J Ave.<br />Nevada, IA 50201<br />Story County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.nevadaiowahistory.org/home\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Edwards-Swayze House",
            "lat": "42.021953",
            "lon": "-93.448557",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Edwards-Swayze House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.021953,-93.448557\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">10mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Edwards-Swayze house, built in 1878, is a historic and architecturally significant house that features vernacular and Queen Anne style. The Queen Anne influence is strongest in the roofscape, with the great height of the main hip and gable. Other interesting features include the recessed semicircular attic windows in the gable ends, the wall dormer with its paneled frieze, and the notched shingling. The Edwards-Swayze House was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1110 9th St.<br />Nevada, IA 50201<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Slater Area Historical Association and Museum",
            "lat": "41.883606",
            "lon": "-93.681773",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Slater Area Historical Association and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.883606,-93.681773\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">10mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Slater Area Historical Association Museum at Heritage Hall features a variety of permanent exhibits. Slater&#039;s history comes alive at the museum through photos, stories, displays and memories. The exhibits feature Slater&#039;s semi-pro baseball teams, championship basketball teams and the Slater School. There is also a &quot;Hall of Fame&quot; of military men and women from Slater and an extensive collection of genealogy materials and historical videos.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t318 1st Ave. N<br />Slater, IA 50244<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515..480.9789</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Squaw Creek Bridge I",
            "lat": "42.152127",
            "lon": "-93.742273",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-bridge-squawcreekbridge-140th.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Squaw Creek Bridge I</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.152127,-93.742273\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">10.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Squaw Creek Bridge on 140th St. in Harrison Township is a pony truss built in 1900. The bridge is 84-feet long and 17.7-feet wide with the largest span measuring 80-feet long.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t140th St.<br />Harrison Township<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Briggs Terrace",
            "lat": "42.018336",
            "lon": "-93.443038",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Briggs Terrace</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.018336,-93.443038\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">10.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1879, the Briggs Terrace is an example of the Italianate architectural style. The house, barn, carriage house, and grounds have survived with little alteration. The house is also significant for its first owner, Otis Briggs, who established and personally operated a bank in the 1870s that played a major role in the town&#039;s prosperity. The home was passed down through four generations of the Briggs and Dutton families before being donated to the Nevada Community Historical Society in 1996. It has also been known as Evergreen Lane. Also on the grounds are the George Child Log House, the oldest standing building in Nevada, and the Halley School, built in 1874 and used until 1945. The log house and school were both moved to the grounds by the Nevada Community Historical Society. The Briggs Terrace was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1204 H Ave.<br />Nevada, IA 50201<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Rimathe Barn",
            "lat": "41.878649",
            "lon": "-93.671861",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-barn-rimathebarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rimathe Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.878649,-93.671861\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">10.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rimathe Barn measures 30’x50’. It was built in 1929. As of 2016, the barn was owned by Wayne Rimathe, nephew of the original owner. The barn was in tough shape after a tornado. With great effort, Rimathe has restored the barn. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t51405 IA Hwy. 210<br />Slater, IA 50244<br />Story County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Cambridge Historical Association Museum",
            "lat": "41.899014",
            "lon": "-93.529867",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-historymuseum-cambridgehistoricalassociation-3b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cambridge Historical Association Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.899014,-93.529867\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">10.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cambridge Historical Association displays exhibits relating to local history and research materials for genealogists and historians.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t504 3rd St.<br />Cambridge, IA 50046<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.220.4518</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Cambridge American Legion Mural",
            "lat": "41.898989",
            "lon": "-93.528886",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-artpublic-cambridgeamericanlegionmural-4b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cambridge American Legion Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.898989,-93.528886\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">10.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cambridge American Legion Mural was painted by John Neal and Ken Tynan in 2005 and covers the north side of the American Legion building. The mural was restored in 2013 by Shawn Palek with a grant from the Story County Community Foundation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t222 Water St.<br />Cambridge, IA 50046<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Big Creek Bridge",
            "lat": "41.892526",
            "lon": "-93.750701",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-bridge-nhr-bigcreekbridge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Big Creek Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.892526,-93.750701\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">10.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Big Creek Bridge, located in Garden Township, carries a gravel surfaced county road over Big Creek. The bridge was built in 1917 by N. E. Marsh and Son Construction Co. of Des Moines and has functioned since that time without alterations. The small-scale arch of the bridge marked an innovation in bridge design and was engineered and patented by James Marsh in 1912. The bridge is a hybrid segmental steel arch and continuous concrete design structure. It was added to the National Register of Historic Places on June 25, 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2108 320th St.<br />Madrid, IA 50156<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Freeland Barn",
            "lat": "41.876291",
            "lon": "-93.554976",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-barn-freelandbarn-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freeland Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.876291,-93.554976\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">11.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Ole Apland was one of six Norwegian men who traveled from Illinois to the &quot;land of milk and honey&quot; and settled near Huxley in the 1860s. Ole Apland built the barn in 1875, five years before his untimely death. Original carving, arguably written by Ole Apland in English and Norwegian, marks date construction was completed: &quot;This building is built by Jens Russell from Cambridge in year 1875.&quot; The barn, 80 feet long, has a basement where corn was dumped for the cattle. The structural beams are walnut. Kermit Freeland, great-grandson of the original owner, and his bride, Flora, moved onto the century farm in 1932. Kermit passed away in 1984 - but his widow, Flora, owned the farm until well into her 90s. Until her death in 2007, she was proud of the huge pegged barn and house that was built in 1865. The barn sits in historic Norwegian settlement and remains in the original family.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t57304 Hwy. 210<br />Cambridge, IA 50046<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Mackey School (Harrison Township No. 5)",
            "lat": "42.166618",
            "lon": "-93.756569",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-countryschool-mackeyschool.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mackey School (Harrison Township No. 5)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.166618,-93.756569\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">11.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mackey School (also known as Harrison Township No. 5) was built in 1856 and was the first school house in the township. The first settler in Harrison Township was Sebastian Mackey who established the small hamlet of Mackey’s Grove in the center of the township along Squaw Creek. The school was in operation until around 1949 and was then used as a voting and meeting facility until 2000. The school has been well preserved and contains original desks, books and a piano. The school can be toured by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t299 V Ave.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Grand Opera House (Story Theater) and Hotel Block",
            "lat": "42.186868",
            "lon": "-93.597062",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-nhr-grandoperahouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand Opera House (Story Theater) and Hotel Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.186868,-93.597062\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">11.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grand Auditorium and Hotel Block was built by the Story City Commercial Club in 1913 at a cost of $30,853.00. When it opened, the stage was the second largest stage west of the Mississippi River. Movies are still shown at the Story Theatre and Grand Opera House, making it the 2nd oldest continually running theatre in Iowa. The Grand Auditorium and Hotel Block was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t500 Broad St.<br />Story City, IA 50248<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First Norwegian Evangelical Lutheran Church",
            "lat": "41.866261",
            "lon": "-93.695215",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-nhr-sheldahlchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Norwegian Evangelical Lutheran Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.866261,-93.695215\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">11.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sheldahl First Norwegian Evangelical Lutheran Church was built by Norwegian immigrant Osmund Sheldahl in 1883. This remarkably well-preserved vernacular frame building illustrates the presence of an early Norwegian settlement in Story County, and represents the unique voluntary ministerial efforts of Sheldahl in that community from 1883 through 1896. The Sheldahl First Norwegian Evangelical Lutheran Church was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWillow St.<br />Sheldahl, IA 50243<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Herschel-Spillman Carousel",
            "lat": "42.188070",
            "lon": "-93.587746",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-nhr-herschelspillmancarousel.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Herschel-Spillman Carousel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.188070,-93.587746\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">11.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Herschel Spillman 2-row Portable Menagerie Carousel, known locally as the Story City Carousel, is the only complete and restored example of its kind in the country. The carousel retains its complete hand-carved “menagerie” of horses, pigs, chickens and chariots. Several of these figures, most notably the “Uncle Sam” chariot, the pig and chicken pairs, and the whirling/lovers tub, are quite rare, especially in association with their original sets of figures. The carousel was manufactured by the Herschel-Spillman Company in North Tonawanda, New York in 1913. It was designed as a portable steam &quot;Riding Gallery&quot; that could be disassembled and transported to various locations for fairs and celebrations. The early owners of the carousel are unknown, however it was eventually owned by P.T. Gifford of Iowa Falls. Gifford brought the carousel to Story City every other year on the fourth of July. In 1938, that arrangement fell through and the citizens of Story City raised the $1,200 need to purchase the carousel from Gifford. The carousel was used annually in summer months until 1976 when it was stored due to deterioration. In 1981, work began to restore the carousel and it was rededicated on June 4, 1982. The carousel permanently resides in an enclosed pavilion in the City Park and still offers entertainment and enjoyment today. It was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 City Park<br />Story City, IA 50248<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Sheldall Schoolhouse",
            "lat": "42.187631",
            "lon": "-93.589258",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-countryschool-nhr-sheldallschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sheldall Schoolhouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.187631,-93.589258\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">11.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sheldall Schoolhouse was built in 1860 by newly immigrated Norwegian farmers from lumber harvested along the Skunk River. It was built by Lars Henryson on land in southern Hamilton County owned by Lars Sheldall. This school served many functions including an early church and was a polling location during the Lincoln presidential elections of 1860 and 1864. The schoolhouse was moved to its current location in 1990 by the Story City Historical Society. The restored building shows how education was conducted from 1860 - 1885.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t937 Broad St.<br />Story City, IA 50248<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Bartlett House Museum",
            "lat": "42.187830",
            "lon": "-93.591410",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-historymuseum-nhr-henrysonhouse-bartlettmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bartlett House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.187830,-93.591410\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">11.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bartlett House Museum is a Queen Anne style home built in 1903 for the Henry Torkel and Emilie Henryson family. The museum exhibits  include information about pioneer life, railroads and Story City&#039;s involvement in the Civil War.  The adjoining Carriage House Museum was built to reflect a utility building of the early 1900s and provides exhibit, storage, office and research space. The museum is named for the family of Dr. Frances Bartlett Kinne whose generous donation enabled the Story City Historical Society to purchase the property in 1996. It was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t619 Grand Ave.<br />Story City, IA 50248<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Story City Museum",
            "lat": "42.186948",
            "lon": "-93.589312",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-historymuseum-storycitymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Story City Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.186948,-93.589312\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">11.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Story City Museum is housed in the rehabilitated waterworks plant. There is an exhibit showcasing the Story City Main Street District. Also on display are a historic jail cell, a general store and a cabinet makers shop.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t531 Hillcrest Dr.<br />Story City, IA 50248<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Howard Township No. 3 School (Roland Museum)",
            "lat": "42.167531",
            "lon": "-93.501413",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-historicschool-howardtownshipno3-rolandmuseum-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Howard Township No. 3 School (Roland Museum)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.167531,-93.501413\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Roland Historical Society moved the 1875 Howard Township No. 3 country school to serve as a museum for the community. The Roland Museum features local artifacts and objects, Roland memorabilia, tools, books, town records, school equipment, and more.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t104 W Poplar St.<br />Roland, IA 50236<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.388.4181</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "J. H. Riekenberg House",
            "lat": "42.058978",
            "lon": "-93.876241",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-nhr-jhriekenberghouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J. H. Riekenberg House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.058978,-93.876241\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The J. H. Riekenberg House is a fine example of studied asymmetrical design. The house is planned around a simple cross gable system. A tower, wrap-around porch, bay windows, and an extension of north elevation belie the simple design. Additional porches provide sources of further asymmetry. It was added to the National Register of Historic Places on October 8, 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310 N Tama St.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John H. Herman House",
            "lat": "42.048896",
            "lon": "-93.880708",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-nhr-hermanhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John H. Herman House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.048896,-93.880708\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>John H. Herman was an important officer and stockholder in the First National Bank at Boone. The Herman house was built in 1919, and is an excellent example of the design work by the architectural firm of Proudfoot and Bird. It is one of nine known commissions the firm had in Boone and was built by Gust J. Carlson, a local builder. The surrounding area was part of the three farms Herman owned and the land was turned into prestigious residential subdivisions. Herman’s son, Dr. John C. Herman, inherited the house about 1940, and lived there until about 1963. It was added to the National Register of Historic Places on June 28, 1989.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t711 S Story St.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Boone County Historical Center (Champlin Memorial Masonic Temple)",
            "lat": "42.061910",
            "lon": "-93.879718",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-historymuseum-nhr-boonecountyhistoricalmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Boone County Historical Center (Champlin Memorial Masonic Temple)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.061910,-93.879718\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Boone County Historical Center, located in the historic Champlin Memorial Masonic Temple, will take you on a journey through the history of the county. Notable exhibits tell the stories of Kate Shelley, military history from the Dragoons to Desert Storm, and natural history and naturalist Carl Fritz Henning. In addition, the center holds both historical and genealogical records for research purposes.\r\n\r\nThe Champlin Memorial Masonic Temple was built in 1907 as a memorial to Frank Champlin, a member of various Masonic orders in Boone who left a sum of money for the purpose of building a new lodge. The building is constructed of steel gray brick with a foundation of red, hard burned paving brick that was made in Boone. The temple was the meeting place of the Mount Olive Lodge No. 79 which was established on Oct. 24, 1855 as the Boonesboro Lodge No.79, its name being changed on June 8, 1858. Today, the temple houses the Boone County Historical Center. It was added to the National Register of Historic Places on Dec. 20, 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t602 Story St.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.432.1907</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://boonecountyhistory.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Alonzo J. and Flora Barkley House",
            "lat": "42.059338",
            "lon": "-93.881342",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-nhr-barkleyhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alonzo J. and Flora Barkley House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.059338,-93.881342\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Alonzo Barkley was a prominent businessman in the Boone community. He built his home for himself and his second wife, Flora Spencer Barkley in 1893. It is the best-preserved example of the Queen Anne style with Shingle style influences in Boone, and is one of the best in Boone County. The home is located in one of Boone&#039;s oldest residential neighborhoods and retains the majority of its historic character. Mr. Barkley was president of the Boone County Bank, organized the Boone County Telephone Company and served in the public sector as county recorder and deputy sheriff. The home was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t326 Boone St.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Stoll Bottling Works",
            "lat": "42.064713",
            "lon": "-93.878581",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-nhr-stollbottlingworks.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stoll Bottling Works</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.064713,-93.878581\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Stoll Bottling Works was built in 1913 and completed in 1914 by Louis Stoll, owner of the company. The company produced soft drinks, such as high grade soda waters, ciders and other temperance beverages. The building was added to the National Register of Historic Places on May 2, 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t824 Allen St.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Bowman Round Barn",
            "lat": "41.948651",
            "lon": "-93.425946",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bowman Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.948651,-93.425946\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Not much is known about the history of the only remaining round barn in Story County. Written on the inside of the barn is &quot;1911 Belcher&quot;. The clay tile barn has interesting interior construction and a working track.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t28103 640th St.<br />Nevada, IA 50201<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First National Bank",
            "lat": "42.063548",
            "lon": "-93.880771",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-nhr-firstnationalbank.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First National Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.063548,-93.880771\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The site of the First National Bank building in Boone has been the site of a number of banks since the 1860s. The first bank at 8th and Story Streets was located in the Metropolitan Hall building which was built in the late 1860s and was destroyed by fire Jan. 4, 1890. A new building was erected and the First National Bank moved to the location in 1895 and was later destroyed by fire on Dec. 19, 1914. The present eight-story building was built between 1915-1916 to house the First National Bank. It was designed by Des Moines architects Proudfoot and Bird in the Classical Revival style using brick and Bedford limestone. It was added to the National Register of Historic Places on June 28, 1989.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t814 8th St.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ericson Public Library",
            "lat": "42.063032",
            "lon": "-93.883028",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-nhr-ericsonpubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ericson Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.063032,-93.883028\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ericson Public Library was built in 1901 as a gift to Boone by Charles John Alfred Ericson. Ericson was born in Sodra Vi, Sweden and was a successful Boone businessman and six-term state senator in Iowa. The building was erected and equipped at a cost of $10,700. The building still serves as the library and includes an Iowa room with history and research materials for genealogists and historians. It was added to the National Register of Historic Places on May 23, 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t702 Greene St.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Perrigo - Holmes House",
            "lat": "42.063386",
            "lon": "-93.885357",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-nhr-perrigoholmeshouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Perrigo - Holmes House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.063386,-93.885357\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Perrigo-Holmes House was built around 1871 for Joel C. and Sabra A. Perrigo. The home is of Italiante influenced design, a popular style during the early growth of Boone. The house was later purchased by Adoniram Judson and Emma Folsom Holmes in 1884, soon after he was elected to the United States Congress and served from 1883-1889. A Civil War veteran, Holmes was later appointed Sergeant at Arms of the National House of Representatives and was an active member of the Grand Army of the Republic. Holmes worked tirelessly for his fellow veterans, one of his causes was the establishment of the Iowa Veterans Home at Marshalltown. Holmes suffered health problems later in life due to the long years spent in military service and prison camps. He died at the Clarinda State Hospital on Jan. 21, 1902 and is buried at Linwood Park Cemetery in Boone. The Perrigo-Holmes house was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t721 Carroll St.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Mamie Doud Eisenhower Birthplace",
            "lat": "42.063059",
            "lon": "-93.885327",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-notableiowan-maimeeisenhowerbirthplace.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mamie Doud Eisenhower Birthplace</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.063059,-93.885327\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Mamie (Doud) Eisenhower was born November 14, 1896 at 718 Carroll Street in Boone. Shortly after Mamie&#039;s birth the Doud family relocated to Cedar Rapids where her father made a good living working in the meat packing industry. In 1905 the family moved to Colorado where she married Dwight D. Eisenhower on July 1, 1916. Mamie Eisenhower was First Lady from January 20, 1953 - January 20, 1961. The home was moved across the street in 1975 and the Mamie Doud Eisenhower Birthplace opened on June 22, 1980. The restored Victorian home features a summer kitchen, carriage house, library and Eisenhower and Carlson family heirlooms.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t709 Carroll St.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.432.1907</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.boonecountyhistory.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Norman Erbe Gravesite",
            "lat": "42.053331",
            "lon": "-93.887243",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-govgravesite-erbe.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Norman Erbe Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.053331,-93.887243\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Norman Arthur Erbe (October 25, 1919 – June 8, 2000) served as the 35th Governor of Iowa from 1961 to 1963. His gravesite is located at his hometown of Boone at Linwood Park Cemetery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t609 Forest Ave.<br />Linwood Park Cemetery<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.432.6295</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://boonegov.com/cemetery.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Linwood Park Cemetery Arch Bridge",
            "lat": "42.053708",
            "lon": "-93.889527",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-bridge-linwoodparkcemeteryarchbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Linwood Park Cemetery Arch Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.053708,-93.889527\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The abandoned stone arch bridge in Linwood Park Cemetery was built in 1881 and carried trains on the now abandoned Chicago and Northwestern Railroad line over Honey Creek. This segment of the abandoned railroad tracks is now a pedestrian trail.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t609 Forest Ave.<br />Linwood Park Cemetery<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Twedt Barn",
            "lat": "42.125562",
            "lon": "-93.431086",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-barn-twedtbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Twedt Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.125562,-93.431086\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Twedt barn has 40 two-ply laminate rafters to support its rounded roof so the hayloft is free of posts and beams. The farm was once owned by Hoyt Sherman, one of the organizers of the Equitable Life Insurance Company of Iowa and brother of the Civil War General William Tecumseh Sherman. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t63645 160th St.<br />Nevada, IA 50201<br />Story County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "First Casey&#039;s General Store",
            "lat": "42.059527",
            "lon": "-93.891733",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-historicsite-firstcaseysgeneralstore.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Casey&#039;s General Store</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.059527,-93.891733\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">13mi.</span></div>\n\t\t</div>\n\n\t\t<p>Casey’s General Stores, an Iowa-based convenience store chain, began at this location in 1968.  Founder Don Lamberti purchased a three-bay service station from Square Deal Oil Company and converted it to a convenience store.  Lamberti named it “Casey’s” after his gas supplier and friend Kurvin C. (K.C.) Fish, who had encouraged him in the venture.  The Boone store was successful, and Lamberti built an additional store in Waukee, a town of only 1,500.  With success in small communities, Lamberti decided to focus on establishing stores in communities with a population of 5,000 or less.  As of 2015, Casey’s operates almost 2,000 stores in 14 states.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 Mamie Eisenhower Ave.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.caseys.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Boone and Scenic Valley Railroad and Museum",
            "lat": "42.066417",
            "lon": "-93.891059",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-historicsite-scenicvalleyrailroad.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Boone and Scenic Valley Railroad and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.066417,-93.891059\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">13mi.</span></div>\n\t\t</div>\n\n\t\t<p>The James H. Andrew Railroad Museum and History Center is a museum as well as a fully functioning railway system. The museum houses exhibits including a look into the history of Iowa railway depots and famous railroaders. The actual railroad opened in 1893 and still operates on its original 11.3 mile route. Visitors can purchase tickets to ride on the Boone and Scenic Valley Railroad.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t225 10th St.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.626.0319</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.scenic-valleyrr.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Handsaker Barn",
            "lat": "42.065522",
            "lon": "-93.393161",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-barn-handsakerbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Handsaker Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.065522,-93.393161\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">13.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Handsaker barn, featured on the cover of the Spring 2003 edition of the Iowa Barn Foundation Magazine, is a Spartan, unique square barn known widely as the &quot;Fernald barn.&quot; William Handsaker bought the rich land on which the barn stands, from the government in 1853 for $4 per acre. The barn was built in 1880 by J.W. Handsaker. Interestingly, the Handsaker family sold some of their land so that the village of Fernald could be built.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t65627 200th St.<br />Nevada, IA 50201<br />Story County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Squaw Creek Bridge II",
            "lat": "42.195597",
            "lon": "-93.775350",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-bridge-squawcreekbridge-110th.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Squaw Creek Bridge II</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.195597,-93.775350\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">13.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Squaw Creek Bridge was built in 1918 by Marsh Engineering Co. of Des Moines. The bridge is a Marsh Arch design engineered and patented by James Marsh. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110th St.<br />Harrison Township<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "East Indian Creek Bridge",
            "lat": "41.975119",
            "lon": "-93.387075",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">East Indian Creek Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.975119,-93.387075\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">13.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The East Indian Creek Bridge was built in 1912 by N.M. Stark of Des Moines. Stark built a number of small and medium scale concrete arch bridges by the early 1910s, but this one was the longest in the county at 75 feet. The East Indian Creek Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t260th St.<br />Nevada, IA 50201<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Boone County Courthouse",
            "lat": "42.058738",
            "lon": "-93.906048",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-nhr-boonecountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Boone County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.058738,-93.906048\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">13.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction on the Boone County Courthouse began in 1916, and it was dedicated on May 1, 1918. The courthouse was designed by Norman T. Vorse and used Vermont gray granite, Bedford limestone, brick and reinforced concrete. It was placed on the National Register of Historic Places on July 2, 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW 2nd St.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Boone County",
            "lat": "42.059319",
            "lon": "-93.906675",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Boone County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.059319,-93.906675\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">13.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Boone County Freedom Rock® features a steam train traveling across the old Boone Viaduct (Kate Shelley High Bridge) and famous Boone native and her husband, Dwight and Mamie Eisenhower. The rock tells the stories of two veterans, Sgt. Daniel Sesker of Boone County and Command Sgt. Maj. Marilyn L. Gabbard of Polk City.\r\n\r\nSgt. Daniel Sesker was born in Boone in 1983 and graduated from Ogden High School in 2001. He was deployed to Kosovo in 2003 as part of Operation Joint Guardian. In July 2005, he volunteered to join the Le Mars-based Troop C, 1st Squadron, 113th Cavalry, which performed reconnaissance and surveillance missions. Between his tours of duty, he worked as a counselor at Woodward Academy and a part-time police officer in Gowrie. Sesker, then 22, was killed April 6, 2006 when a bomb exploded near his Humvee. He was manning a gun aboard the vehicle when insurgents detonated the bomb outside Tikrit.\r\n\r\nCommand Sgt. Maj. Marilyn L. Gabbard of Polk City was the first woman promoted to the rank of command sergeant major in the Iowa Army National Guard. She is also the first woman in the history of the Iowa National Guard to be killed in combat. She was a passenger on a UH-60 Black Hawk helicopter when it crashed Jan. 20, 2007 northeast of Baghdad. Assigned to Joint Forces Headquarters at Camp Dodge, she served as the non-commissioned officer in charge of the National Guard Affairs Team in Baghdad.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1098 W 3rd St.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Madrid Historical Society Museum",
            "lat": "41.876066",
            "lon": "-93.820712",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-historymuseum-madridhistorymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Madrid Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.876066,-93.820712\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">13.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Madrid Historical Society Museum is a collection of four buildings joined together to share the history of Madrid. The museum includes a replica of a 19th century coal mine, the old Madrid Post Office, and various historical artifacts from everyday life. The museum is also home to the Clay Castle Museum which is one of the largest collections of dolls in the world.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t109 W 2nd St.<br />Madrid, IA 50156<br />Boone County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.795.3249</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://madridiamuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Carl and Ulrika Dalander Cassel House",
            "lat": "41.876036",
            "lon": "-93.825238",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-nhr-carlulrikadalandercasselhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carl and Ulrika Dalander Cassel House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.876036,-93.825238\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">14mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Carl and Ulrika Dalander Cassel House was built in 1862 by Carl Cassel, son of New Sweden pioneer leader Peter Cassel. Carl Cassel married Ulrika Dalander in 1848, one of the first Swedish marriages in Iowa. The frame house is made of native black walnut (now covered by vinyl siding). The house was added to the National Register of Historic Places on April 12, 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t415 W 2nd St.<br />Madrid, IA 50156<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Honey Creek Bridge (Non-Extant)",
            "lat": "42.015382",
            "lon": "-93.917692",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Honey Creek Bridge (Non-Extant)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.015382,-93.917692\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">14.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chicago and Northwestern Railroad Honey Creek Bridge that once stood at this location was the site where the &quot;pusher&quot;, an engine stationed at the Moingona depot to assist in pulling heavy trains up the grade on either side of the river crashed with four men on board. The crew, Engineer Ed Wood, Fireman, George Olmstead, Brakeman Adam Agar and Section Foreman Patrick Donahue were in route to Boone when they came upon the swaying Honey Creek Bridge in the middle of a major storm on July 6, 1881. The bridge gave way and the engine plunged into Honey Creek. The Shelley family lived about a half-mile away and heard the crash. Young Kate Shelley, just 15 years old felt it was her duty to assist and went directly to the site of the crash where she found Wood and Agar had climbed into the trees in the midst of the flood. The other two were lost. Realizing the midnight train was due soon, she crossed the Des Moines River bridge and to the Moingona depot where she alerted the station and returned to Honey Creek with a rescue party. Days later, Donahue&#039;s body was found in a cornfield a quarter-mile downstream and Fireman Olmsted was never found.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t231st Rd.<br />Honey Creek<br />Moingona, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William Kennison Wood Home",
            "lat": "41.920641",
            "lon": "-93.406365",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William Kennison Wood Home</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.920641,-93.406365\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">14.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The W.K. Wood Home stands as a monument to Wood himself and to the early settlers of Iowa and Story county. W.K. Wood was a successful farmer and livestock producer, an entrepreneur, and an active politician. The house was one of the first two story homes to be built in Story County and is of Late Victorian Italianate design. The home, built in the late 1800s, remains solid on its stone foundation and retains its original qualities. The W.K. Wood Home was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t29947 653rd Ave.<br />Iowa Center, IA 50161<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Des Moines River Bridge Site (Original Kate Shelley)",
            "lat": "42.014586",
            "lon": "-93.922169",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-bridge-desmoinesriverbridge-kateshelley.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines River Bridge Site (Original Kate Shelley)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.014586,-93.922169\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">14.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This site marks the location of the Des Moines River Bridge that 17-year-old Kate Shelley crawled across the night of July 6, 1881 to save a passenger train heading toward the Moingona depot. The original Des Moines River Bridge was replaced in 1894 by a new bridge on the same site which remained in place until 1930. Today, the only remaining remnants of the original bridge are the abutments. A walking path to the bridge site is provided from the Kate Shelley Railroad Museum (Moingona Depot).\r\n\r\nIn 1901 a new iron bridge, called the Boone Viaduct (later renamed the Kate Shelley High Bridge) was built to service the railroad and is located 3.9 miles northwest of the original bridge site. This bridge served the Chicago Northwestern and Union Pacific railroads until it was bypassed about 2008 when a new double track bridge was built adjacent to it.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDes Moines River<br />Start at the Kate Shelley Railroad Museum<br />Moingona, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Kate Shelley Railroad Museum (Moingona Depot)",
            "lat": "42.019697",
            "lon": "-93.932126",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-historymuseum-kateshelleymuseumpark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kate Shelley Railroad Museum (Moingona Depot)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.019697,-93.932126\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">14.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kate Shelley Railroad Museum tells the story of Kate Shelley, a 15-year-old from Moingona, who risked her life in a storm to prevent a train disaster on July 6, 1881. The museum showcases artifacts and photographs related to Kate Shelley&#039;s life, railroad equipment and memorabilia, and a scenic walking trail that leads to the site of the Des Moines River Bridge that Kate crossed that night. The museum is open by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1199 232nd St.<br />Moingona, IA 50036<br />Boone County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.432.1907</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.boonecountyhistory.org/BCHSKateShelleyRailroadMuseum.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Mill Creek Stone Arch Bridge",
            "lat": "42.020511",
            "lon": "-93.932851",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-bridge-millcreekstonearchbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mill Creek Stone Arch Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.020511,-93.932851\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">14.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mill Creek Stone Arch Bridge was built in 1881 on the now abandoned Chicago and Northwestern Railroad line. The bridge is 8-foot long with an 8-foot by 12-foot stone arch. The bridge is open to pedestrians only and can be found along the trail at the Kate Shelley Railroad Museum in Moingona.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1199 232nd St.<br />Moingona, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Story County",
            "lat": "41.888560",
            "lon": "-93.400755",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Story County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.888560,-93.400755\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">15.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The front of the Story County Freedom Rock® is dedicated to the 16th Special Ops Squadron AC-130H Spectre gunship, call sign &quot;Spirit 03.&quot; Maxwell native, Staff Sgt. Tim Harrison served on that gunship. During a battle in the first Gulf War it was the last of the three AC-130s still on station in the early morning of January 31, 1991. About to head back to base Spirit 03 received a call from the Marines that they needed an enemy missile battery destroyed. With the sun rising, making the plane more visible and an easier target for the anti-aircraft missiles, the Spirit 03 crew ignored the extreme risk and headed to destroy the enemy position. On the way they were shot down and all 14 crew members perished in the Persian Gulf. Crew members were all awarded the Silver Star and Purple Heart. These men are honored with an AC 130H Spectre gunship shooting off its flares, which look like angel wings. &quot;Spirit 03&quot; is in the background with an angelic colored sky. On the north side of the rock is a soldier&#039;s cross with a Black Hawk helicopter in the background to honor of the service of Sergeant First Class Matthew Loren Rierson. Rierson, a Nevada, Iowa native was part of the 1st Special Forces Operational Detachment - Delta, Task Force Rangers and was part of the assault force which conducted an air assault raid deep into the enemy sector (Mogadishu, Somalia, in October 1993). These actions were made famous by the book and movie Black Hawk Down. Rierson earned the Silver Star for his actions. Part of the citation read: “Following Sgt Rierson&#039;s successful apprehension of two key militia officials and twenty-two enemy soldiers, he accompanied the detainees and wounded personnel to his base in the vehicular convoy. This convoy came under intense enemy fire, during which, numerous friendly casualties were suffered. With total disregard for his own personal safety, Sergeant Rierson repeatedly dismounted his vehicle, exposing himself to enemy fire, in order to direct the drivers through enemy roadblocks and ambushes. It was due in part to his exceptional leadership that the convoys were able to reach the base safely. Sergeant Rierson then immediately accompanied the relief element headed for two downed helicopters. Once again, Sergeant Rierson demonstrated calm, effective leadership under fire that allowed the stalled convoy to fight its way to the crash site. At the crash site, Sergeant Rierson directed his team in a security position while the body of the pilot was recovered. His team provided security throughout the night as the enemy repeatedly tried to overrun the site. Sergeant First Class Rierson&#039;s heroic actions saved the lives of fellow comrades and reflect great credit on himself and the United States Army. Sgt Rierson was subsequently killed on October 6, two days after the &quot;Black Hawk Down&quot; mission, when a stray mortar shell landed near him as he chatted with other soldiers near the airport hangar.” The back of the rock shows an older Veteran saluting a line of flags before he boards his Honor Flight to Washington DC to see the national monuments. The eagle on the rock holds a gold and blue star in his talons symbolizing thanking military families for their sacrifices. The Story County (Maxwell) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tTrotter Blvd. and 2nd St.<br />Maxwell City Park<br />Maxwell, IA 50161<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Maxwell Museum Community Historical Society",
            "lat": "41.887896",
            "lon": "-93.399389",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-historymuseum-maxwellmuseum-5b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Maxwell Museum Community Historical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.887896,-93.399389\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">15.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Maxwell Museum Community Historical Society has operated for over fifty years and the museum features three buildings. These buildings include two main street buildings and a farm implement machine shed. These museums allow visitors to see the general store, church, home, schoolroom, jail and post office. Marvel at the wedding dress collection featuring a dress from 1893 and enjoy the farm machinery, Civil War and military displays, natural history collections and much, much more.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t103 Main St.<br />Maxwell, IA 50161<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.398.8655</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.welcometomaxwell.com/maxwell-museum\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Calamus Creek Bridge",
            "lat": "41.884879",
            "lon": "-93.381994",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-nhr-calamuscreekbridge-3b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Calamus Creek Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.884879,-93.381994\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">16.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Calamus Creek Bridge was a concrete Luten arch bridge that was built in 1905. It is the earliest remaining bridge of its design in the state, and is also one of the oldest Luten arch bridges in the country. The Calamus Creek Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t325th St.<br />Maxwell, IA 50161<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Wagon Wheel Bridge",
            "lat": "42.062860",
            "lon": "-93.969246",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-bridge-wagonwheelbridge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wagon Wheel Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.062860,-93.969246\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">16.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>After the county and a group of citizens had argued for a better part of the year about putting a wagon bridge over the Des Moines River, the county board of supervisors approved the construction which would take place in 1910. The bridge was designed and built by the Iowa Bridge Company that was based in Des Moines. It was added to the National Register of Historic Places on June 25, 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 200th St.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Kate Shelley High Bridge (Boone Viaduct)",
            "lat": "42.058847",
            "lon": "-93.973920",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-bridge-nhr-kateshelleyhighbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kate Shelley High Bridge (Boone Viaduct)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.058847,-93.973920\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">17.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Boone Viaduct was constructed from 1899 to 1901 by the American Bridge Co. and Union Bridge Co., with Carnegie Steel Co. as the steel manufacturer and George S. Morison as engineer. At the time, the bridge was the longest and heaviest viaduct in the United States. Today it is one of the (and possibly the only) longest extant double-track railroad viaducts in the world. The viaduct is 2,685-feet long and stands 185-feet above the Des Moines River on the Union Pacific Railroad west of Boone. The Boone Viaduct was named the &quot;Kate Shelley High Bridge&quot; in 1912 to honor Kate Shelley, who risked her life in a storm to prevent a train disaster on July 6, 1881. A new bridge, also named the &quot;Kate Shelley High Bridge&quot;, was completed in 2009 for railroad traffic to bypass the original high bridge and sits immediately north of the historic viaduct. The Boone Viaduct was added to the National Register of Historic Places on November 17, 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1038 Juneberry Rd.<br />Boone, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Hump Back Bridge",
            "lat": "42.052711",
            "lon": "-93.989117",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-bridge-humpbackbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hump Back Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.052711,-93.989117\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">17.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The J Avenue Bridge, also called the Hump Bridge, was built in 1900. The bridge is a riveted double-intersection Warren pony truss with the largest span being 69.9 feet. The bridges passes over the Union Pacific Railroad on J Avenue.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1077 J Ave.<br />Ogden, IA 50212<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Hickory Grove School Museum",
            "lat": "42.037692",
            "lon": "-93.990240",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-countryschool-hickorygrove.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hickory Grove School Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.037692,-93.990240\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">17.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hickory Grove School was built in 1889 and was originally located in Yell Township across the road from the Hickory Grove Cemetery which is now abandoned (intersection of 170th St. and L Ave). The school operated until 1956 and was then moved to the Don Williams Recreation Area in 1964 and restored in 1972. In 2007, the schoolhouse was moved to the Battin Chapel site and serves as a museum dedicated to Boone County&#039;s rural school heritage. Artifacts include original double desks, pot-bellied stove, pump organ, text books, photographs and authentic teachers&#039; and children&#039;s costumes. The museum is open by appointment only.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t894 Lincoln Hwy.<br />Ogden, IA 50212<br />Boone County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.432.1907</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.boonecountyhistory.org/BCHSHickoryGroveRuralSchoolMuseum.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Big Creek Historical Museum",
            "lat": "41.771491",
            "lon": "-93.714523",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Big Creek Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.771491,-93.714523\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">18mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Big Creek Historical Museum is housed in the historic schoolhouse and City Hall in Polk City. The museum features artifacts relating to the history of Polk City and the Big Creek area, as well as, a library of research materials.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t112 3rd St.<br />Polk City, IA 50226<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.984.6653</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://polkcityhistory.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Mulcahy Barn",
            "lat": "41.984217",
            "lon": "-93.290930",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-barn-mulcahybarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mulcahy Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.984217,-93.290930\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">18.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mulcahy Barn is an interesting hybrid of German and English immigrant barn design. The barn also features a very rare and unique basement style. The Mulcahy Barn was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t25623 710th Ave.<br />Colo, IA 50056<br />Story County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Anthony M. McColl House",
            "lat": "41.853528",
            "lon": "-93.922373",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-nhr-anthonymmcmollhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Anthony M. McColl House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.853528,-93.922373\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">18.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This was the home of Senator Anthony Milroy McColl, a significant figure in the development of Woodward. He served two terms as state senator, followed by other roles in state government. He was also a long-term lumber and grain dealer, making him a central figure in the economic life of the community. His home was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t502 Main St.<br />Woodward, IA 50276<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Oakdale Farm/Grave of Farceur",
            "lat": "42.049747",
            "lon": "-94.011301",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-barn-oakdalefarm.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oakdale Farm/Grave of Farceur</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.049747,-94.011301\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">19mi.</span></div>\n\t\t</div>\n\n\t\t<p>The barn at Oakdale Farm is notable as the gravesite of champion Belgian stallion, Farceur. Farceur was imported from Belgium in 1912 and was undefeated at the 1915 San Francisco World’s Fair and was purchased by C.G. Good at at Belgian horse sale held in Waterloo, Iowa in 1917. Good paid $47,500, the highest price ever paid for a draft stallion in the world, at that time. Farceur was used as a service stud and his name still appears on Belgian pedigrees, including all of the horses residing at Oakdale Farm in 2015.\r\n\r\nWhen Farceur died on Dec. 24, 1921, following a European custom, he was buried standing up beneath his stall along the south wall of the barn. Denny Good, great-grandson of C.G. Good, restored the barn which has been featured on the Iowa Barn Foundation Tour. The Good family stayed true to custom, and no other stallion has been housed in Farceur’s stall in nearly 100 years, however mares are able to be housed in the stall.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t787 210th St.<br />Ogden, IA 50036<br />Boone County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lincoln Township Mausoleum",
            "lat": "42.166309",
            "lon": "-93.295914",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-nhr-lincolntownshipmausoleum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lincoln Township Mausoleum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.166309,-93.295914\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">20.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built between 1911 and 1912, the Lincoln Township Mausoleum is an outstanding example of monolithic concrete construction used to build a public mausoleum—a design rarely seen in Iowa. The building successfully blends together Mission, Late Gothic Revival, and Classical Revival elements. The Lincoln Township Mausoleum was added to the National Register of Historic Places in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t130th St.<br />Zearing, IA 50278<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Ankeny Area Historical Society Museum",
            "lat": "41.729345",
            "lon": "-93.603526",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historymuseum-ankenyareahistoricalsocietymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ankeny Area Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.729345,-93.603526\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">20.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ankeny Area Historical Society Museum is a house built by John Marts in 1905. The house was home to many prominent Ankeny families including, Mr. E. W. Neveln, the Superintendent of Ankeny Schools from 1921-1943. Unique among its collection is military history of veterans and the 4,400 acre Ankeny World War II Ordnance Plant.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 SW 3rd St.<br />Ankeny, IA 50023<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.965.5795</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://ankenyhistorical.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Mehlisch Barn",
            "lat": "42.098861",
            "lon": "-93.249558",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mehlisch Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.098861,-93.249558\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">20.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Wendish carpenter, Chris Muschick, built the barn in 1905. The barn was painted white in 1916 according to date on inside wall.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t17590 730th Ave.<br />Zearing, IA 50278<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-ballrooms.png",
            "title": "Lake Robbins Ballroom",
            "lat": "41.819718",
            "lon": "-93.955500",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-historicballroom-lakerobbinsballroom.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-ballrooms.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lake Robbins Ballroom</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.819718,-93.955500\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">21.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Robbins family began building this ballroom in 1929, and completed it in 1931. On opening night, rain poured down and the mud was knee deep - but cars lined both sides of the road and the place was filled to capacity. Lake Robbins Ballroom was inducted in to the Iowa Rock and Roll Music Association&#039;s Hall of Fame in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t26726 150th St.<br />Woodward, IA 50276<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Herrold Bridge",
            "lat": "41.722016",
            "lon": "-93.750311",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Herrold Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.722016,-93.750311\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">21.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Herrold Bridge was built in 1921 and spans Beaver Creek near the abandoned town of Herrold, Iowa. It features three arched concrete deck girder spans, cantilevered from concrete abutments and piers. The bridge is no longer open to traffic and was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tNW 88th Ave<br />Herrold, IA 50109<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Swedish Immigrant Museum",
            "lat": "42.270465",
            "lon": "-93.927669",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-historymuseum-swedishimmigrantmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Swedish Immigrant Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.270465,-93.927669\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">22.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Swedish Immigrant Museum features a collection of artifacts, books, photographs relating to the Swedish immigrants that settled in Stratford and the greater &quot;Swede Bend&quot; area. The museum hosts numerous events throughout the year including the annual St. Lucia Pageant, children&#039;s workshops and family history research workshops. The museum is open on select days throughout the year and by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t907 Goldsmith St.<br />Stratford, IA 50249<br />Hamilton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.838.2440</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Stratford Commercial Historic District",
            "lat": "42.270930",
            "lon": "-93.927159",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-historicsite-stratford-shaefferblock-2b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stratford Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.270930,-93.927159\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">22.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The town of Stratford, in southwestern Hamilton County, was founded in 1881 when the Toledo &amp; Northwestern Railroad was built. It was platted and named by the railroad crew in honor of William Shakespeare&#039;s home Stratford-upon-Avon in England. In addition, all the streets in this predominately Swedish community are named for English authors. The arrival of the railroad was also the demise of the small village of Hook&#039;s Point located northeast of Stratford. Several buildings were moved to Stratford from Hook&#039;s Point and many more built at the new town site. Today, Stratford is a Main Street Iowa community with a beautifully preserved main street, Shakespeare Avenue. Along Shakespeare Avenue you&#039;ll find the Swedlund, Shaeffer, P.A. Swanson and G.F. Hook buildings, as well as two historic bank buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tShakespeare Ave.<br />Stratford, IA 50249<br />Hamilton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "State Bank of Stratford",
            "lat": "42.270474",
            "lon": "-93.927342",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-nhr-statebankstratford.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">State Bank of Stratford</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.270474,-93.927342\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">22.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The State Bank of Stratford was organized on February 15, 1892 with Augustus Anderson, Jonas Fallein and John Drug as officers. The first building was a frame structure on the east side of Shakespeare Avenue and in 1894 the bank built the first brick building in town. In 1916, after a fire destroyed the drug store adjacent to the bank, the bank purchased the lot and built a new two-story brick building which was completed on May 20, 1918. The previous bank building was moved the rear of the lot and turned to face south and now houses the Swedish Immigrant Museum. The State Bank of Stratford was a prosperous institution until the depression and on September 18, 1931 was forced to close its doors, along with other banks in the vicinity, due to malicious gossip which caused a steady withdrawal of funds. The building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t801 Shakespeare Ave.<br />Stratford, IA 50249<br />Hamilton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Iowa Gold Star Military Museum",
            "lat": "41.703104",
            "lon": "-93.711639",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historymuseum-iowagoldstarmilitarymuseum-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Gold Star Military Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.703104,-93.711639\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">22.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Gold Star Museum is Iowa&#039;s premier military museum, and it honors all Iowa veterans and the Iowa State Patrol. A World War I exhibit features an interactive trench, a mock-up of period Camp Dodge barracks, and a restored 1918 Liberty Truck. The library houses soldier records and over 5,000 military reference books for genealogical research.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t7105 NW 70th Ave.<br />Camp Dodge<br />Johnston, IA 50131<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.252.4531</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://iowanationalguard.com/Museum/Museum.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Daniel Dobbin Round Barn",
            "lat": "41.984827",
            "lon": "-93.200224",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-barn-danieldobbinroundbarn-2.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Daniel Dobbin Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.984827,-93.200224\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">22.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Henry Dobbin had this barn built on his farm in 1919 after his neighbor to the east built a similar round barn. Identifying characteristics include wood frame construction, central silo, circular interior arrangement, and a self-supporting single hip gambrel roof. The name of the Gordon – Van Tine Company is stamped on lumber inside this barn. The barn was built from a kit. It arrived in pieces, and was assembled by number. It was added to the National Register of Historic Places in 1986. The Dobbin Round Barn was featured on the Iowa Barn Foundation&#039;s 2014 All-State Barn Tour. The owners received an award of distinction from the Iowa Barn Foundation for undertaking barn renovations not supported by grant funds.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2551 Brown Ave.<br />State Center, IA 50247<br />Marshall County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Iowa Aviation Heritage Museum",
            "lat": "41.693908",
            "lon": "-93.569822",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historymuseum-iowaaviationheritagemuseum-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Aviation Heritage Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.693908,-93.569822\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">23.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Aviation Heritage Museum is a museum in Ankeny that is dedicated to preserving the history of aviation in the state. It is a non-profit organization that restores and preserves World War II, rare, and antique aircraft. All the aircraft in the museum are in flying condition. The museum is located at Ankeny Airport.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3704 Convenience Blvd.<br />Ankeny, IA 50021<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.964.2629</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Paul J. and Ida Trier House",
            "lat": "41.686084",
            "lon": "-93.689747",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Paul J. and Ida Trier House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.686084,-93.689747\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">23.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Frank Lloyd Wright’s last commissioned work in Iowa, this house is representative of the master’s late Usonian style completed in 1958. Its design is derived from Wright’s 1953 Usonian Exhibition House in New York City, which was built on the future site of the Solomon R. Guggenheim Museum. The house was added to the National Register of Historic Places in 1988 and has been featured in various catalogues of Wright’s works.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6880 NW Beaver Dr.<br />Johnston, IA 50131<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Johnston Historical Society",
            "lat": "41.683679",
            "lon": "-93.701559",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Johnston Historical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.683679,-93.701559\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">23.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Johnston, incorporated in 1969, is one of the newest cities in Iowa - but it has a rich history that includes corn and chicken breeding, coal mining, a stage coach line and Camp Dodge.  Visitors to the Johnston Historical Society can tour a historic home (built in 1902) that now serves as a community museum and a barn dedicated to sharing local history.  The house (built in 1902), barn (built in 1936) and windmill were moved to their current site near the Johnston Public Library in June 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6161 Northglenn Drive<br />Johnston, IA 50131<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515-331-0687</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://johnstoniowahistorical.org/index.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Polk County",
            "lat": "41.702617",
            "lon": "-93.470029",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-polkcountyfreedomrock-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Polk County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.702617,-93.470029\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">24.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Polk County Freedom Rock® in Bondurant honors Iowa&#039;s fallen soldiers. The front side depicts members of the military from the Civil War to Iraq/Afghanistan carrying the casket of a recently fallen soldier to his final resting place. The back side is a slight modification to the Iowa flag and includes all five branches of the military. The Polk County (Bondurant) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t315 2nd St. NW<br />Bondurant, IA 50035<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Hanson Barn",
            "lat": "41.814509",
            "lon": "-93.270952",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jasper-barn-hansonbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hanson Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.814509,-93.270952\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">24.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn was built in 1907 with wood from an older barn demolished by a tornado. It is a pegged barn that was built by Elmer Haley and the Hansons. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t11590 N 87th Ave. W<br />Mingo, IA 50168<br />Jasper County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "McCleary Hall",
            "lat": "41.700683",
            "lon": "-93.462223",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McCleary Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.700683,-93.462223\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">24.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The McCleary Hall was built in 1890 as a grocery store and the Bank of Bondurant. It opened as a theater some time in the 1930s and closed in the 1950s. The building was completely renovated in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t14 Main St. SE<br />Bondurant, IA 50035<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Watson&#039;s Grocery Store Museum",
            "lat": "42.016465",
            "lon": "-93.163929",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-historymuseum-watsonsgrocerystoremuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Watson&#039;s Grocery Store Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.016465,-93.163929\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">24.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Watson&#039;s Grocery Store was built in 1895 and remains unchanged inside and out. The State Center Historical Society turned Watson&#039;s Grocery Store into a local landmark and museum. Step inside to see stocked oak shelves, roll-top bins and an ice box. Study benches and chairs still await customers who trade farm fresh produce for grocery items. The grocery store is part of the State Center Commercial Historic District and was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t106 W Main St.<br />State Center, IA 50247<br />Marshall County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.483.3002</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Buck Barn",
            "lat": "41.943055",
            "lon": "-93.178503",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-barn-buckbarn-2.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buck Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.943055,-93.178503\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">24.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Buck Barn had deteriorated to the point of nearly being torn down, but the owners chose to save it. The barn is now a real rural Iowa jewel, complete with a wonderful cupola. The Buck Barn was featured on the Iowa Barn Foundation&#039;s 2014 All-State Barn Tour. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1271 285th St.<br />State Center, IA 50234<br />Marshall County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Pfantz Barn",
            "lat": "42.018814",
            "lon": "-93.158447",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-barn-pfantzbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pfantz Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.018814,-93.158447\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">24.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pfantz Barn was built in 1902 for a well-known horse broker. The barn has many unique features, including handmade screens, a milk cellar and balloon rafters. The barn is located behind a Victorian home, and may be difficult to see when trees have leaves. The Pfantz Barn was featured on the Iowa Barn Foundation&#039;s 2014 All-State Barn Tour. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 4th Ave. NE<br />State Center, IA 50247<br />Marshall County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Bell&#039;s Mill County Park",
            "lat": "42.340222",
            "lon": "-93.890694",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-historicsite-bellsmillscountypark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bell&#039;s Mill County Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.340222,-93.890694\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">25.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This county park was the site of an 1853 grist mill which the Bell family operated until 1888. Benjamin Bell, who died in 1853, was a Revolutionary War veteran who is buried in nearby Vegor&#039;s Cemetery. The family donated the land for the park which holds an annual settlers reunion. In 1937, Mrs. Frances J. Lynde donated a log cabin to Hamilton County which was moved to Bell&#039;s Mill Park. The cabin was built in 1867 by Mr. And Mrs. Charley Smith in near-by Webster County. At the park, visitors will also find a one-room country school that was originally located in Marion Township and moved in the 1950s to be used as a voting location.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3100 Bell&#039;s Mill Rd.<br />Stratford, IA 50249<br />Hamilton County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.mycountyparks.com/county/Hamilton/Park/Bells-Mill-Park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Vegor&#039;s Cemetery",
            "lat": "42.318299",
            "lon": "-93.942078",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-cemetery-vegors.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vegor&#039;s Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.318299,-93.942078\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">25.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>History and pre-history intersect at the Vegor&#039;s Cemetery where pre-historic burial mounds with some pioneer graves intrude into the earlier mounds. Of note is the grave site of Mrs. Henry Lott from 1846. It is believed that she died of consumption following an attack on her family&#039;s farm by Sintominaduta, a Siseton Dakota Leader. Later, her husband shot and killed Sintominadutar and six of his band in 1854. It is believed that Lott&#039;s action infuriated, Dakota leader, Inkpaduta, and triggered the Spirit Lake Massacre in 1857. Also buried here is Major Benjamin Bell one of few Revolutionary War veterans buried in Iowa. Bell migrated to Webster County with his son&#039;s family in 1852.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tXavier Rd.<br />Lehigh, IA 50557<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Beaver Creek Bridge",
            "lat": "42.049135",
            "lon": "-94.142105",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-bridge-nhr-beavercreekbridge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Beaver Creek Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.049135,-94.142105\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">25.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Beaver Creek Bridge in Amaqua Township was built in 1919 by N. E. Marsh and Son Construction Co. of Des Moines. The bridge&#039;s design was developed by engineer and patent holder James Marsh. The bridge has a 50-foot span and is a steel structure encased in concrete. The bridge was refurbished in 1999 and is one of the few remaining bridges of its kind in Iowa. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210th St.<br />Ogden, IA 50212<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Byal Orchard Historic District",
            "lat": "41.797987",
            "lon": "-93.246398",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Byal Orchard Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.797987,-93.246398\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">25.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Byal Orchard is in the vicinity of Mingo and was planted in 1933-1934. It is significant because it is one of the few apple orchards in Iowa to survive the Armistice Day Blizzard of 1940. The Byal Orchard Historic District was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t7999 W 108th St.<br />Mingo, IA 50168<br />Jasper County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Boxholm Museum",
            "lat": "42.175465",
            "lon": "-94.104612",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-historymuseum-boxholmmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Boxholm Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.175465,-94.104612\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">25.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Boxholm Museum was created by David Peterson of Boxholm and displays artifacts and stories about Boxholm and Grant Township. The more than 100-year-old building (built in 1910) has been well-preserved by Mr. Peterson and was once the Farmer&#039;s State Bank. Tours are available by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t311 2nd St.<br />Boxholm, IA 50040<br />Boone County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Minerva Creek Bridge",
            "lat": "42.151040",
            "lon": "-93.165395",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Minerva Creek Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.151040,-93.165395\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">26mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Minerva Creek Bridge is a small concrete highway bridge north of State Center. The bridge was built in 1917, and is only 38.1 ft. long. It brings 140th Street over the top of Minerva Creek and carries both pedestrians and vehicles. The Minerva Creek Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t140th St. and Durham Ave.<br />Over Minerva Creek<br />Clemons, IA 50051<br />Marshall County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Tremaine Bridge",
            "lat": "42.386591",
            "lon": "-93.808935",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-bridge-nhr-tremainebridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tremaine Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.386591,-93.808935\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">26.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Tremaine Bridge was built in 1902 by N.M. Stark and Co. of Des Moines and was refurbished in 1940. It is a through truss bridge over the Boone River at 280th Street near Webster City, and was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t280th St.<br />Webster City, IA 50595<br />Hamilton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Forest Park Museum and Arboretum",
            "lat": "41.826316",
            "lon": "-94.087484",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-historymuseum-forestparkmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Forest Park Museum and Arboretum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.826316,-94.087484\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">26.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Forest Park Museum and Arboretum was started by Eugene Hastie in the 1940s. The original plot of land was only 5 acres. The Dallas County Conservation Board purchased the arboretum and it has grown to 17 acres and is home to over 100 species of native trees and shrubs. The complex also includes the Alton Schoolhouse, which is the last one-room school house of Dallas County, the Grabenhorst Log Cabin and the Bill Wagner Scale House.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t14581 K Ave.<br />Perry, IA 50220<br />Dallas County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.465.3577</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://conservation.co.dallas.ia.us\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Patrick&#039;s Catholic Church and Rectory",
            "lat": "41.840742",
            "lon": "-94.103597",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-nhr-saintpatrickscatholicchurchandrectory.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Patrick&#039;s Catholic Church and Rectory</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.840742,-94.103597\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">26.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Saint Patrick’s Catholic Church was built in 1901-1902 to accommodate the growing Catholic congregation in Perry. It was designed by architect George Stauduhar of Rock Island, Illinois in the Late Gothic Revival style. The building was constructed from limestone and features a high steeple that has become a landmark of downtown Perry. It was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1312 3rd St.<br />Perry, IA 50220<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Jones Business College",
            "lat": "41.837213",
            "lon": "-94.103414",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-nhr-jonesbusinesscollege.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jones Business College</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.837213,-94.103414\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jones Business College was built in 1913 and holds a significant role in the social history of Perry and its surrounding communities. C. Durant Jones was a statewide social activist and a champion of prohibition. He established and operated the Jones Chautauqua System, a successful series of lecture/entertainment events whose programs were often peppered with temperance promotion. The building was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1305 Otley Ave.<br />Perry, IA 50220<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Grand Theatres 3 (Grand Opera House)",
            "lat": "41.841024",
            "lon": "-94.105039",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-nhr-grandoperahouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand Theatres 3 (Grand Opera House)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.841024,-94.105039\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grand Opera House was built in 1903 and was converted into a movie theater in 1933 with 700 seats. The theater is still under operation as the Grand Theatres 3.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1312 2nd St.<br />Perry, IA 50220<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Downtown Perry Historic District",
            "lat": "41.839612",
            "lon": "-94.105090",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Downtown Perry Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.839612,-94.105090\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Downtown Perry Historic District (bounded by 3rd St., Lucinda St., 1st Ave., Railroad St.) highlights the city’s commercial history. Advances in transportation, particularly railroads, fueled substantial development of Perry’s commercial and economic development. The district was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1202 2nd St.<br />Perry, IA 50220<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-hotels.png",
            "title": "Hotel Pattee",
            "lat": "41.838821",
            "lon": "-94.105883",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-historichotel-hotelpattee.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-hotels.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Pattee</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.838821,-94.105883\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hotel Pattee was built in 1913 and had a multi-million dollar renovation done in the late 1990s. The hotel has over 53 original pieces of artwork , including &quot;Spirit of Perry&quot; by Doug Shelton, which celebrates the history of Perry. Each of the hotel&#039;s 40 rooms are individually themed. The themed guest rooms preserve history, celebrate ethnicity, honor craftsmanship, and pay tribute to the noteworthy sons and daughters of Iowa and the Midwest.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1112 Willis Ave.<br />Perry, IA 50220<br />Dallas County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.465.3511</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://hotelpattee.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bruce&#039;s Snowball Market No. 1 Addition",
            "lat": "41.837241",
            "lon": "-94.105000",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-nhr-brucessnowballmarketno1addition.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bruce&#039;s Snowball Market No. 1 Addition</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.837241,-94.105000\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Completed in 1930, Bruce’s Snowball Market #1 Addition is an early example of a grocery store geared toward shoppers arriving by car. It was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t921 Railroad St.<br />Perry, IA 50220<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Perry Carnegie Library and Museum",
            "lat": "41.838328",
            "lon": "-94.105410",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-nhr-carnegielibrary.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Perry Carnegie Library and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.838328,-94.105410\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Perry Carnegie Library Building was one of 22 libraries constructed with Carnegie funding in 1903. Andrew Carnegie funded 101 libraries in Iowa between 1889 and 1919, significantly advancing the development of public libraries across the state. The building was designed by architects Liebbe, Nourse, and Rasmussen in the Beaux Arts style and was added to the National Register of Historic Places in 1996. Still a working library, its collection includes many of the library’s original 1,000 titles, as well as special collections of Midwest literature, women’s fiction, children’s books, and books on literacy and libraries. The Women’s Room tells stories of the bonds formed between women who spent time here when they came into town from neighboring farms. Visitors can also explore Perry history through temporary exhibits.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1123 Willis Ave.<br />Perry, IA 50220<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World War Heroes",
            "lat": "42.263870",
            "lon": "-94.069983",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/webster-monument-daytonworldwari.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World War Heroes</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.263870,-94.069983\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>A small boulder on the grounds of Dayton Elementary School honors the World War Heroes of Dayton. Five soldiers are memorialized: Charles H. Peterson, Theodore J. Anderson, Duane H. Hinman, Ernest B. Peterson and Reuben E. Peterson.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st St. NW<br />Dayton, IA 50530<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Lincoln Highway: Little Beaver Creek Bridge",
            "lat": "42.049088",
            "lon": "-94.177259",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lincoln Highway: Little Beaver Creek Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.049088,-94.177259\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Little Beaver Creek Bridge on Lincoln Highway was constructed around 1915. The existence of the bridge is a reminder that the roads which made up the Lincoln Highway route were subject to local politics for several years as communities sought to provide safer roads for motorists within their jurisdictions. Organized citizens sought to secure routes that were most convenient or beneficial to their interests. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2465 210th St.<br />Grand Junction, IA 50107<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Urbandale Historical Society and Museum",
            "lat": "41.633469",
            "lon": "-93.712829",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Urbandale Historical Society and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.633469,-93.712829\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Urbandale Historical Society was created in 1975 by a small group of residents. In 1987 it moved to their current location at the Olmstead-Urban house. Its goal as an organization is to collect, preserve and maintain historical memorabilia of Urbandale. It maintains the Olmstead-Urban House and Barn as a small museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4010 70th St<br />Urbandale, IA 50322<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.270.2917</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Highland Park Historic Business District",
            "lat": "41.627673",
            "lon": "-93.624747",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Highland Park Historic Business District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.627673,-93.624747\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This area offers the best sampling of well-preserved late 19th and early 20th century commercial architecture in Des Moines outside of the downtown area. It was a nearly self-sufficient neighborhood from the late 1890s through World War II, with the only access being one auto bridge and a streetcar bridge. The district was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tEuclid Ave. and 6th Ave.<br />Des Moines, IA 50313<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "College Corner Commercial Historic District",
            "lat": "41.627641",
            "lon": "-93.620609",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">College Corner Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.627641,-93.620609\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The College Corner Commercial Historic District emerged as a successful business district between 1889 and 1920, during the rise and fall of Highland Park College/Des Moines University. The area offers an excellent sampling of well-preserved late 19th and early 20th century commercial architecture outside of downtown Des Moines. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tEuclid Ave. between 2nd Ave. and 3rd Ave.<br />Des Moines, IA 50313<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Altoona Area Historical Society and Museum",
            "lat": "41.650276",
            "lon": "-93.464197",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Altoona Area Historical Society and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.650276,-93.464197\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Altoona Area Historical Society and Museum is the historical authority in the city of Altoona. It is in charge of finding, preserving, and displaying historical artifacts from Altoona and the surrounding area.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t104 2nd St. SE<br />Altoona, IA 50009<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.967.4815</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Albright Bridge",
            "lat": "42.405424",
            "lon": "-93.809918",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-bridge-nhr-albrightbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Albright Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.405424,-93.809918\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Albright Bridge spans the Boone River on Inkpaduta Avenue near Webster City. It was built in 1907 by A.H. Austin of Webster City. The bridge features a Pratt through truss design and is one of the longest of this type remaining in Iowa with a span of 156 feet. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tInkpaduta Ave.<br />Webster City, IA 50595<br />Hamilton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Liberty Center No.5 School",
            "lat": "42.427569",
            "lon": "-93.640493",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-countryschool-libertycenterno5.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Liberty Center No.5 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.427569,-93.640493\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Liberty Center No. 5 School is a traditional late 1800s Iowa schoolhouse. It was in use from 1882 through 1939. The building contains one wood burning stove, wooden desks, slate writing boards, and antique schoolbooks.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2699 250th St.<br />Kamrar, IA 50132<br />Hamilton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ashby Manor Historic District",
            "lat": "41.624548",
            "lon": "-93.672031",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ashby Manor Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.624548,-93.672031\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">27.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Ashby Manor Historic District illustrates the physical development of modern Des Moines. It is a well-planned residential development of enduring value and reflects the housing preferences of the period. Its distinctive, relatively unaltered appearance contribute to its significance as an example of community planning and development in Des Moines between the World Wars. The district was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBeaver Ave. to 38th St.<br />Ashby Park<br />Des Moines, IA 50310<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Old Main, Grand View College",
            "lat": "41.620802",
            "lon": "-93.604362",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Main, Grand View College</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.620802,-93.604362\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building was the first home of Grand View College, now known as Grand View University. It was built from 1895-1904 and features elements of the Danish Renaissance Revival style of architecture. It was added to the National Register of Historic Places in 1989.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1200 Grandview Ave.<br />Des Moines, IA 50316<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Honey Creek Friends Meeting House",
            "lat": "42.251978",
            "lon": "-93.186632",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-honeycreekfriendsmeetinghouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Honey Creek Friends Meeting House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.251978,-93.186632\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Quaker meeting house was built in 1916, and it was also used as an area school. It was built by a local builder, Ernie Moon. The Honey Creek Monthly Meeting was first organized in 1852, by a group of Friends originally from North Carolina. The first structure was built in 1852, which the current building replaced after a fire in 1859. Now, the meeting house is only used for special events. It was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t31031 PP Ave.<br />New Providence, IA 50206<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Viking Theatre",
            "lat": "41.620837",
            "lon": "-93.600945",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Viking Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.620837,-93.600945\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Viking Theatre is a theatre on Grand View College&#039;s campus. The theatre is used by the college for their music and performing arts departments. The theatre hosts concerts, performances, and large meetings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tGrand View College Student Center<br />Des Moines, IA 50316<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.263.2892</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Allen Hazen Water Tower",
            "lat": "41.614281",
            "lon": "-93.683911",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-allenhazenwatertower-6b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Allen Hazen Water Tower</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.614281,-93.683911\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Allen Hazen Water Tower was designed by New York engineer Allen Hazen and placed in service in 1931. Hazen’s career as a civil engineer pioneered the modernization of American public water supplies. The water tower was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4800 Hickman Rd.<br />Tower Park<br />Des Moines, IA 50310<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Universalist Church",
            "lat": "41.671282",
            "lon": "-93.360875",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Universalist Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.671282,-93.360875\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Universalist Church is the oldest documented building in the town, built in 1868. It was Mitchellville&#039;s first church and was used by a number of different congregations in the town until they were able to build churches of their own. When the Universalist congregation disbanded, the property was sold to the state of Iowa to use for weddings, funerals, and other functions. It was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMarket Ave. NW and 4th St. NW<br />Mitchellville, IA 50169<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chautauqua Park Historic District",
            "lat": "41.612858",
            "lon": "-93.635167",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historicdistrict-chataquaparkhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chautauqua Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.612858,-93.635167\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chautauqua Park Historic District was named for the Chautauqua assembly grounds that occupied the property from 1896 through the turn of the century. The assembly hall was located at the present intersection of Nash Drive and Chautauqua Parkway and hosted such prominent lecturers as Booker T. Washington and Senators Robert La Follette and Jonathan P. Dolliver. The park was designed by Des Moines landscape architect L. Earl Foglesong and features narrow curved roadways that follow the topography of the land. The houses in the area were built between 1925 and 1941 and are primarily in the Tudor Revival style, featuring brick construction and intersecting gables. The district was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tChautauqua Pkwy. to Hickman Rd.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Prospect Park Second Plat Historic District",
            "lat": "41.612866",
            "lon": "-93.627007",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prospect Park Second Plat Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.612866,-93.627007\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>First platted in 1886, the Prospect Park Second Plat Historic District includes a cross-section of middle and upper-middle class residences in a variety of architectural styles. The area is associated with real estate practices that changed the character of north Des Moines, including the idea of establishing a residential park and the subdivision of land for piecemeal development. The district was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tFranklin Ave. to Des Moines River, 6th Ave. to 9th Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Riverview Park Plat Historic District",
            "lat": "41.612341",
            "lon": "-93.624065",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Riverview Park Plat Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.612341,-93.624065\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Riverview Park Plat Historic District highlights the suburban development in Des Moines during the late Victorian period. This area was platted as a residential neighborhood in 1886 and it illustrates how real estate developers responded to and fueled the desire for movement into the suburbs. It was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tArlington Ave. between Franklin Ave. and 6th Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ayrshire Apartments",
            "lat": "41.610832",
            "lon": "-93.625207",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ayrshire Apartments</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.610832,-93.625207\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ayrshire Apartments were built between 1919 and 1920 and were added to the National Register of Historic Places in 1996. The addition of apartments like these was a response to 6th Avenue&#039;s evolution into a transportation corridor with the introduction of the streetcar route. The availability of efficient public transportation made living outside the city in a suburb like North Des Moines more attractive and residential development increased to meet this need.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1815 6th Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chaffee-Hunter House",
            "lat": "41.611047",
            "lon": "-93.627914",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chaffee-Hunter House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.611047,-93.627914\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chaffee-Hunter House was built and first occupied in 1886. It was the home of Edward H. Hunter, U.S. Postmaster for Des Moines from 1894 to 1898. The house was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1821 8th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dr. Anna E. and Andrew A. Johnstone House",
            "lat": "41.610634",
            "lon": "-93.628423",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. Anna E. and Andrew A. Johnstone House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.610634,-93.628423\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house, built in 1887, was the home and office of Anna E. Johnstone, doctor of osteopathy, and illustrates the emergence of professional careers for women. It also has architectural significance as an example of the spindle work subtype of the Queen Anne style that was common in the suburb of North Des Moines. The Johnstone House was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1830 8th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Franklin Apartments",
            "lat": "41.610574",
            "lon": "-93.625224",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Franklin Apartments</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.610574,-93.625224\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Franklin Apartment building was first designed as a single family dwelling in 1897. It was converted into apartments in 1914 and further renovated in 1918. The addition of apartments like these was a response to 6th Avenue&#039;s evolution into a transportation corridor with the introduction of the streetcar route. The availability of efficient public transportation made living outside the city in a suburb like North Des Moines more attractive and residential development increased to meet this need. The Franklin Apartment building was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1811 6th Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lowry W. and Hattie N. Goode House",
            "lat": "41.610751",
            "lon": "-93.626733",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-lowrywandhattiengoodehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lowry W. and Hattie N. Goode House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.610751,-93.626733\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1884, this house is one of the few surviving structures associated with one of Des Moines&#039; foremost 19th century developers, Lowry Goode, who specialized in platting, marketing, and financing houses. The home was made of brick, which was unusual for the period, and was the Goodes&#039; first home in North Des Moines. They later built and moved into a mansion-like home nearby. This house was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1813 7th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Trent-Beaver House",
            "lat": "41.610347",
            "lon": "-93.626072",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Trent-Beaver House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.610347,-93.626072\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Trent/Beaver house was built in 1917 and illustrates the increased suburban development in Des Moines after the introduction of streetcar lines. Specifically, this house shows how the existence of streetcar lines encouraged the conversion of a private residence into a professional office. These kinds of changes led to the decentralization of public services from the city&#039;s business district, which was possible due to the availability of rapid public transportation. The house was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1802 6th Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William H. and Alice Bailey House",
            "lat": "41.610612",
            "lon": "-93.626078",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William H. and Alice Bailey House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.610612,-93.626078\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bailey house, built in the 1880s, was the home of Alice Bailey, an early social reformer who pioneered progressive programs to promote public health, education, and municipal beautification. She brought child labor legislation to the Iowa General Assembly in 1904-1905 and helped establish institutions for the aged and infirm. Her husband, William Bailey, was a city attorney for the suburb of North Des Moines. The Bailey house was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1810 6th Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Trainland USA",
            "lat": "41.729536",
            "lon": "-93.251975",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Trainland USA</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.729536,-93.251975\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Trainland USA opened was opened in 1981 by Red Atwood. Trainland USA is the largest model train museum in the country. The museum features over 60 Lionel O Gausge trains that span three major eras of train history, Frontier, Steam, and Diesel. The display area is the size of two average ranch style homes. The center section is the frontier and steam era, while the outside is diesel which runs from coast to coast. All scenery is hand painted and the entire layout is glass enclosed</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3135 IA Hwy. 117 N<br />Colfax, IA 50054<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.674.3813</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://trainlandusa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "C. H. Baker Double House",
            "lat": "41.609083",
            "lon": "-93.626109",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">C. H. Baker Double House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.609083,-93.626109\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Baker Double House was built between 1901 and 1902 and is an early example of a multiple family dwelling erected along the 6th Avenue streetcar route to capitalize on the appeal of public transportation. These kinds of residential buildings became common along this street in the following years as it continued to evolve into a major transportation corridor in Des Moines. The Baker Double House was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1700 6th Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dr. John B. and Anna M. Hatton House",
            "lat": "41.610049",
            "lon": "-93.627296",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-drjohnbandannamhattonhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. John B. and Anna M. Hatton House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.610049,-93.627296\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1887, the Hatton House is an example of suburban residential architecture, particularly the canted bay subtype of Stick Style with Italianate influences. It is the only such house in Des Moines with a full three-story tower. The house was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1730 7th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "The Maine",
            "lat": "41.608888",
            "lon": "-93.625182",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Maine</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.608888,-93.625182\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 1913, multiple family residence was added to the National Register of Historic Places in 1996. The addition of apartment buildings in this area illustrate 6th Avenue&#039;s growing significance as a major streetcar route in Des Moines and the effect that had on the surrounding neighborhood.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1635 6th Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "The Oaklands Historic District",
            "lat": "41.609636",
            "lon": "-93.622194",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historicdistrict-oaklandshistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Oaklands Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.609636,-93.622194\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Oaklands Historic District, comprised of Oakland and Arlington Avenues between Franklin and College Avenues, was a late 19th century upper and upper-middle class residential area in what was then a suburb of North Des Moines. It was developed by Lowry W. Goode, Des Moines&#039; most influential real estate developer at the time. Goode created the first naturalistic suburban subdivision in the Des Moines area, combining the scenic nature of the area along the river with broad streets and large lots. Architectural influences include the Stick, Queen Anne, Colonial Revival, and Prairie School styles. The district was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tOakland Ave. and Arlington Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "West Ninth Streetcar Line Historic District",
            "lat": "41.607696",
            "lon": "-93.629395",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Ninth Streetcar Line Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.607696,-93.629395\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This section of 9th Street served as a streetcar route from 1883-1936. It was developed by the Des Moines Street Railroad Company as an extension of their downtown loop and was named the Red Line. This was one of three streetcar lines that served north Des Moines, demonstrating the significance of the neighborhood and influencing the housing boom in this area in the 1880s and 1890s. The streetcar line was discontinued and replaced by buses in 1936. The area was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t9th St., University Ave. to Hickman Rd.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Julius Scheibe Cottage",
            "lat": "41.607848",
            "lon": "-93.628875",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-juliusscheibecottage.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Julius Scheibe Cottage</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.607848,-93.628875\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1898, this cottage was one of two homes constructed on a corner lot, a technique designed to increase the value of real estate. The companion cottage has been torn down. The house was designed by George E. Hallett, an architect who worked extensively in the north part of the city. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t815 College Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Perry and Brainard Block",
            "lat": "41.607831",
            "lon": "-93.625613",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Perry and Brainard Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.607831,-93.625613\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This commercial building and public hall was constructed between 1888 and 1889 and calls attention to the Annexation movement in Des Moines and its Victorian suburbs. Between 1889 and 1890 the building served as town hall for the suburb of North Des Moines and is the only known public building that has survived from this period. It was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1601 6th Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rees Gabriel House and Carriage House",
            "lat": "41.609268",
            "lon": "-93.609392",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rees Gabriel House and Carriage House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.609268,-93.609392\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1896, the Gabriel house is a nice, well-preserved example of Queen Anne architecture. It was built largely under Rees Gabriel’s personal supervision and to his design. The basic plans were provided by the Des Moines architectural firm of C.E. Eastman and Co. and then extensively modified by Gabriel. The house and carriage house were added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1701 Pennsylvania Ave.<br />Des Moines, IA 50316<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sargent&#039;s Garage",
            "lat": "41.607546",
            "lon": "-93.625288",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sargent&#039;s Garage</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.607546,-93.625288\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Completed in 1924, this automobile repair shop was run by Ernest Sargent for only about 3 years. Numerous auto-repair businesses occupied the building until early 1997. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t510 College Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Trinity Methodist Episcopal Church",
            "lat": "41.607569",
            "lon": "-93.628486",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Trinity Methodist Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.607569,-93.628486\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built and first occupied in 1911, the Trinity Methodist Episcopal Church was designed by Proudfoot, Bird, and Rawson, one of Iowa&#039;s leading architectural firms. The building has been well-preserved and still contains the original pipe organ. It was added to the National Historic Register in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1548 8th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wherry Block",
            "lat": "41.607811",
            "lon": "-93.625998",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wherry Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.607811,-93.625998\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1877, the Wherry Block was the first large commercial building in this area of north Des Moines. It was named for the builder, Samuel C. Wherry, and is an example of the Late Victorian commercial style of architecture. The building was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1600 6th Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William A. and Etta Baum Cottage",
            "lat": "41.608004",
            "lon": "-93.628463",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William A. and Etta Baum Cottage</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.608004,-93.628463\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Baum Cottage is a fine example of the Queen Anne cottage, one of only a handful of this style remaining in Des Moines. It was built in 1891 and was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1604 8th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William B. Hayes House",
            "lat": "41.607527",
            "lon": "-93.621955",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-williambhayeshouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William B. Hayes House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.607527,-93.621955\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hayes House is one of the best local examples of the stick style of architecture, particularly the Swiss chalet subtype. This is one of two known examples in the area that still retain their exterior integrity. The house was first occupied in 1886 and was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1547 Arlington Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Perkins Elementary School",
            "lat": "41.608003",
            "lon": "-93.676769",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a9e00130344c962a5.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Perkins Elementary School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.608003,-93.676769\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">28.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>School and Drake University. She was hired to teach kindergarten at Perkins Elementary School in 1946, making her the first African American teacher hired by Des Moines Public Schools. \r\n\r\nDespite her credentials, her appointment was challenged. At a school board meeting in September 1946, a group of twenty people protested the hiring of Miss Curley. They spoke for nearly an hour, telling the board that this action by the board “would lower property values because prospective new residents ‘would not want their children in a kindergarten taught by a Negro.’”\r\n\r\nOthers in the crowd spoke in favor of Miss Curley. Superintendent N.D. McCombs stated that the board had also received a number of calls in support of Miss Curley. McCombs further explained, “She topped the list of applicants by a wide margin. The board has had a policy, in writing, for years that all boys and girls get the best teachers for the money that we pay.”</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4301 College Ave.<br />Des Moines, IA 50310<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Byron A. Beeson House",
            "lat": "41.606099",
            "lon": "-93.624312",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-byronabeesonhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Byron A. Beeson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.606099,-93.624312\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in the 1890s, this house is a fine local example of residential architecture in suburban north Des Moines, with Queen Anne style influences. It also calls attention to Byron A. Beeson&#039;s career as a government official and to the dominance of the Republican party in Iowa shortly after the Civil War. The house was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1503 5th Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Home of Marshall&#039;s Horseradish",
            "lat": "41.607184",
            "lon": "-93.621276",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-homeofmarshallshorseradish.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Home of Marshall&#039;s Horseradish</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.607184,-93.621276\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Marshall House, a garage, and the remains of a root cellar are all that survive of a thriving horseradish business operated for three generations by the Marshall family beginning in the 1880s. The condiment was marketed almost exclusively in Des Moines and by mail. The factory has been torn down and the exact location of A.E. Marshall&#039;s 10-acre horseradish field is unknown. The house was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1546 2nd Pl.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Larnerd Case House",
            "lat": "41.610733",
            "lon": "-93.556217",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Larnerd Case House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.610733,-93.556217\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Larnerd Case house is the oldest dwelling still standing in Des Moines and was a product of the earliest white settlement of the land that became the state&#039;s capital. The house was built by Larnerd Case around 1846 and was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3111 Easton Blvd.<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Living History Farms",
            "lat": "41.617108",
            "lon": "-93.770637",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historymuseum-livinghistoryfarms.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Living History Farms</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.617108,-93.770637\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29mi.</span></div>\n\t\t</div>\n\n\t\t<p>A 500-acre open-air museum. Travel at your own pace through 300 years of agricultural history, including a 1700 Ioway Indian Farm, an 1850 Pioneer Farm, a 1900 Farm, and an 1875 Town. On-site interpreters, activities and demonstrations.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t11121 Hickman Rd.<br />Urbandale, IA 50322<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.278.5286</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.livinghistoryfarms.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bates Park Historic District",
            "lat": "41.605226",
            "lon": "-93.623408",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historicdistrict-batesparkhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bates Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.605226,-93.623408\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The houses in the Bates Park Historic District were built during the late 19th and early 20th centuries and are constructed primarily in the Colonial Revival and American Four Square architectural styles. The area was home to a wide range of socio-economic classes, which was characteristic of North Des Moines in the late 19th century. The district was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles H. and Lena May Weitz House",
            "lat": "41.604574",
            "lon": "-93.624826",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-charleshandlenamayweitzhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles H. and Lena May Weitz House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.604574,-93.624826\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The house, built in 1891, was first occupied by the family of Charles Weitz, who headed an important construction company in Des Moines in the late 19th century. His descendants continue to operate Weitz Co., Inc., a general contractor of national rank. The house includes Charles Weitz&#039;s original two-story workshop and was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1424 5th Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Kromer Flats",
            "lat": "41.605118",
            "lon": "-93.625514",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kromer Flats</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.605118,-93.625514\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kromer Flats building was constructed between 1904 and 1905 and added to the National Register of Historic Places in 1996. The addition of multiple family dwellings like this one illustrate the development of 6th Avenue as it evolved into a major transportation corridor.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1439 6th Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rev. R. W. and Fannie Keeler House",
            "lat": "41.605524",
            "lon": "-93.630887",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-revrwandfanniekeelerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rev. R. W. and Fannie Keeler House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.605524,-93.630887\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Keeler House is one of the best extant examples in Des Moines of the Stick Style of residential architecture, particularly the trussed attic balcony gable subtype. Of the few examples of this subtype still standing in Des Moines, the Keeler house is one of only two that retain a high degree of exterior and interior integrity and it is the only one with its original front porch. It was constructed in 1889 by local contractor-builder partnership John W. Detwiler and James C. Bedford, and was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1430 10th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Susie P. Turner Double House",
            "lat": "41.604858",
            "lon": "-93.628261",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Susie P. Turner Double House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.604858,-93.628261\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Turner Double House was built in 1914 and shows both Prairie and Craftsman style architectural influences. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1420 8th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Walter M. Bartlett Double House",
            "lat": "41.604632",
            "lon": "-93.626118",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Walter M. Bartlett Double House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.604632,-93.626118\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bartlett Double House was built in 1913. Although this kind of two-family dwelling was not uncommon at the time, this one was unique in that the units were on separate floors rather than the typical mirror-image units situated side by side. The house was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1416 6th Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lincoln Highway: Grand Junction Segment",
            "lat": "42.032523",
            "lon": "-94.209339",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lincoln Highway: Grand Junction Segment</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.032523,-94.209339\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This segment of the Lincoln Highway was constructed around 1913. It is a prime example of how local politics and increasing concerns for public safety influenced minor adjustments in the route of the Lincoln Highway. It was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t220th St. E<br />Grand Junction, IA 50107<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "6th and Forest Historic District",
            "lat": "41.603962",
            "lon": "-93.625776",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historicdistrict-sixthandforesthistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">6th and Forest Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.603962,-93.625776\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The 6th and Forest Avenue Historic District, comprised of the northeast and northwest corners of the intersection, illustrates the increased suburban development in this area in the late 19th century. It is a commercial district, with residential units located on the second floors of the stores and other businesses, which was a relatively new phenomenon brought on by the availability of faster public transportation along the 6th Avenue streetcar line. The district was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6th Ave. and Forest Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lustron Home No. 02437",
            "lat": "41.605385",
            "lon": "-93.704058",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lustron Home No. 02437</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.605385,-93.704058\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Nineteen prefabricated Lustron Homes were assembled in Polk County after they were created in a factory in Columbus, Ohio, and shipped to Iowa. Fifteen remain, including the yellow Westchester Deluxe model #02437 built in 1950. It is one of 143 known examples erected in Iowa.\r\n\r\nIt is significant as an example of the Lustron Corporation&#039;s innovative contributions to the prefabricated housing industry and its efforts to incorporate modern architecture and the latest domestic technologies into the lives of everyday Americans through porcelain enameled steel homes. The Lustron Home No. 02437 was added to the National Register of Historic Places on June 9, 2020.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1440 63rd St.<br />IA Hwy. 28<br />Windsor Heights, IA 50324<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Forest Theater",
            "lat": "41.603720",
            "lon": "-93.633940",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a95a108528480bdbc.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Forest Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.603720,-93.633940\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Forest Theater, built in 1937 as a movie theater, is situated in a mostly residential neighborhood. In late 1969, Mothers for Dignity and Justice established the Gateway Opportunity Center in this building where they ran a free breakfast program inspired by a similar program offered by the Black Panther Party (BPP). Mothers for Dignity and Justice was a local branch of the National Welfare Rights Organization which enjoyed the support and leadership of Charles Knox who was a founder of the Des Moines chapter of the Black Panther Party.\r\n\r\nThese breakfast programs run by the Black Panther Party and Mothers for Dignity were critical as the school district was unable—and some argued unwilling—to meet the need for breakfast programs. \r\n\r\nAs if 2021, this building was home to Creative Visions, an organization founded by Ako Abdul–Samad to provide educational opportunities to help at-risk youths and empower strong communities.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1343 13th St.<br />Des Moines, IA 5013<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Burnstein/Malin Grocery",
            "lat": "41.601958",
            "lon": "-93.625562",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Burnstein/Malin Grocery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.601958,-93.625562\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Originally constructed in 1893 as a family home, the Burnstein/Malin Grocery was converted for commercial use in 1923 and expanded in 1940. Over the years, it has also been known as Malin&#039;s Kosher Delicatessen and Pickle Barrel Delicatessen. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1241 6th Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "F. E. Haley Double House",
            "lat": "41.601734",
            "lon": "-93.626707",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">F. E. Haley Double House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.601734,-93.626707\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1897, the Haley Double House is an example of the duplex style of residential architecture common at the turn of the century. The building was owned by Felix Haley, the secretary-treasurer of the Iowa State Traveling Men&#039;s Association, but he never lived there himself. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1233 7th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Frank P. and Minnie Y. Mattes House",
            "lat": "41.602529",
            "lon": "-93.662765",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Frank P. and Minnie Y. Mattes House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.602529,-93.662765\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built in the early 1900s and was added to the National Register of Historic Places in 2009. It illustrates the effect Drake University had on the surrounding neighborhood, sparking increased residential development as more students and families came to the area.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1305 34th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "James Sansom Carpenter House",
            "lat": "41.607291",
            "lon": "-93.550416",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James Sansom Carpenter House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.607291,-93.550416\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The James Sansom Carpenter House is a Colonial Revival style home built in 1890. Carpenter was the head of one of Iowa’s most notable bridge building companies and was also an art enthusiast. He owned one of the finest collections of etchings and lithographs in the country and founded the Des Moines Association of Fine Arts in 1916. The Association, with contributions from its members, amassed a large collection of paintings and sculptures. After Carpenter’s death in 1939, leadership passed to his close friend Jay N. (Ding) Darling who eventually merged the collection into what is now the Des Moines Art Center. The Carpenter home was added to the National Register of Historic Places in 1998, due to its significant place in the history of the fine arts in Des Moines</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3320 Kinsey Ave.<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "The New Lawn",
            "lat": "41.602095",
            "lon": "-93.625519",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The New Lawn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.602095,-93.625519\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The New Lawn was built between 1914 and 1915 as a multiple family dwelling by the architectural firm of Morrison and Thorne. Its design illustrates the influence of the Prairie style on a large scale building. The New Lawn also calls attention to the evolution of 6th Avenue as a transportation corridor and the impact this had on land development. It was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1245 6th Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William W. and Elizabeth J. Ainsworth House",
            "lat": "41.602306",
            "lon": "-93.627198",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William W. and Elizabeth J. Ainsworth House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.602306,-93.627198\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built for businessman William Ainsworth in 1886, this house is an example of the Queen Anne style of residential architecture, particularly the spindle work subtype. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1310 7th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Clyde Herring Gravesite",
            "lat": "41.604114",
            "lon": "-93.692462",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-cemetery-glendalecemetery-45b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Clyde Herring Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.604114,-93.692462\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Clyde LaVerne Herring (May 3, 1879 – September 15, 1945) served as the 26th Governor of Iowa from 1937-1943. Herring died in Washington D.C. and is interred at Glendale Cemetery (Mausoleum Crypt 2, Row 10) in Des Moines.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4909 University Ave<br />Glendale Cemetery<br />Des Moines, IA 50310<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.248.6320</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. George Wilson Gravesite",
            "lat": "41.604114",
            "lon": "-93.692462",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-cemetery-glendalecemetery-12b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. George Wilson Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.604114,-93.692462\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>George Allison Wilson (April 1, 1884 – September 8, 1953) served as the 28th Governor of Iowa from 1943-1949. His gravesite is located at Glendale Cemetery in Des Moines (west of 48th St entrance just south of the Masonic section).</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4909 University Ave<br />Glendale Cemetery<br />Des Moines, IA 50310<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.248.6320</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Warren Garst Gravesite",
            "lat": "41.604114",
            "lon": "-93.692462",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-cemetery-glendalecemetery-20b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Warren Garst Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.604114,-93.692462\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Warren Garst (December 4, 1850 – October 5, 1924) served as the 19th Governor of Iowa from 1908-1909. His gravesite is located in the southwest part of section 22 at Glendale Cemetery in Des Moines.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4909 University Ave<br />Glendale Cemetery<br />Des Moines, IA 50310<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.248.6320</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Varsity Theater",
            "lat": "41.600781",
            "lon": "-93.650792",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Varsity Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.600781,-93.650792\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Varsity Theater was originally opened in 1916 as a Coca-Cola bottling location. It was remodeled into a theater in 1938. It was renovated again in 1950s and 1960s. It operates today as an independent film theater .</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1207 25th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Drake University Campus Historic District",
            "lat": "41.600887",
            "lon": "-93.652032",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Drake University Campus Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.600887,-93.652032\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Drake University Campus Historic District comprises six buildings on the southeast corner of the campus. The district highlights the development of Drake University and its surrounding community through the contributions of the Disciples of Christ. Drake University was established in 1881 and is the oldest institution of higher education in Des Moines. The historic district was added to the National Register of Historic Places in 1988 and includes Old Main, Howard Hall, Cole Hall, Memorial Hall, Carnegie Library, and the First Christian Church.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUniversity Ave. and 25th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Goddard Bungalow Court Historic District",
            "lat": "41.601337",
            "lon": "-93.636029",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Goddard Bungalow Court Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.601337,-93.636029\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Goddard Court is one of three distinctly different examples of the &quot;California bungalow court&quot; to be found in Des Moines. Its construction, completed in 1916, coincides with the first national appearance of the community or bungalow court concept. It was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1410-1421 Goddard Ct., 1232 14th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Newens Sanitary Dairy Historic District",
            "lat": "41.600294",
            "lon": "-93.648522",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Newens Sanitary Dairy Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.600294,-93.648522\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Newens Sanitary Dairy Historic District is composed of the Dairy Building and the Newens House. The Newens family started the Newens Sanitary Dairy in 1910 and moved into the 2300 University building in 1913, expanding further up the block in 1916. The diary complex comprised a front office, milk processing and bottling area, vehicle storage, and a stable for the horses used to deliver the milk. The Newens family lived across the street to oversee the business at all times. The dairy staked its reputation on the quality of its product and the cleanliness of its facilities. In a time when pasteurization was not yet required, the Newens Sanitary Dairy tested, clarified, pasteurized, and bottled the milk it bought from local farmers and advertised that customers were invited to inspect the plant at any time. The company eventually merged with Northland Dairy and vacated the complex. The district was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2300-2312 University Ave., 2225 University Ave.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Veneman&#039;s Bungalow Court Historic District",
            "lat": "41.601146",
            "lon": "-93.605796",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Veneman&#039;s Bungalow Court Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.601146,-93.605796\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Veneman&#039;s Bungalow Court Historic District is one of three distinctly different examples of the &quot;California bungalow court&quot; to be found in Des Moines. Its construction during 1924-1925 illustrates the continued popularity of the bungalow cottage style of residential architecture and the vernacular expressions of the design. This area was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1101-1115 Droukas Ct.; 1228, 1232 E. 12th St.<br />Des Moines, IA 50316<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Clive History Museum",
            "lat": "41.606356",
            "lon": "-93.737228",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historymuseum-swansonmemorialpark.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clive History Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.606356,-93.737228\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clive Historical Society manages the Swanson House, Clive Depot, and railroad caboose properties located at Swanson Memorial Park. The park is at the historic center of Clive, which was platted in 1882. The Swanson House served as a general store and post office for the period from 1911 to 1929.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t8641 Swanson Blvd.<br />Clive, IA 50325<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.329.5147</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.clivehistoricalsociety.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Captain Nicholas W. and Emma Johnson House",
            "lat": "41.600232",
            "lon": "-93.645450",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-captainnicholaswandemmajohnsonhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Captain Nicholas W. and Emma Johnson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.600232,-93.645450\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Captain Nicholas W. and Emma Johnson House was built in 1896 and is an unusual style of residential architecture for Des Moines, featuring chateauesque stylistic elements applied to a late Queen Anne design. As such, the house reflects the cosmopolitan career of Captain Johnson, who was born in South America and sailed the Atlantic in the years before the Civil War. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1154 21st St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Norman Apartment Building",
            "lat": "41.600598",
            "lon": "-93.659856",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Norman Apartment Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.600598,-93.659856\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Norman Apartment Building was built in 1908 and added to the National Register of Historic Places in 1988. It illustrates the effect Drake University had on the surrounding neighborhood, sparking increased residential development as more students and families came to the area.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3103 University Ave.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Saint John&#039;s Roman Catholic Church",
            "lat": "41.600853",
            "lon": "-93.643603",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Saint John&#039;s Roman Catholic Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.600853,-93.643603\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. John’s Roman Catholic Church was built in 1927 by Maginnis and Walsh of Boston. It is one of the best examples of the Lombardy Romanesque Revival style of architecture in Des Moines. The building has remained largely unaltered and exemplifies the period revival designs common in the early 20th century. It was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1915 University Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World War I Monument (Gold Star Monument)",
            "lat": "41.600661",
            "lon": "-93.611619",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-worldwar1monument-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World War I Monument (Gold Star Monument)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.600661,-93.611619\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The World War I Monument by sculptor Charles Henry Niehaus (1855-1935) features a classically dressed warrior and an angel with long wings, plus two granite panels with bronze plaques naming the war dead from Polk County. Local women led by Gold Star widow Minnie Fleur had planned to install the monument in the Gold Star section at Woodland Cemetery, but they raised so much money that they decided to build a larger monument on a much more prominent plot. The monument was installed in 1925 on University Avenue on a hill overlooking the Des Moines River.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE University Ave.<br />Des Moines, IA 50316<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Gertrude Rush House",
            "lat": "41.599180",
            "lon": "-93.634480",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a9f3b46387d935ec.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gertrude Rush House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.599180,-93.634480\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>She married James B. Rush, the most widely known criminal lawyer in Iowa in the 1910s. After her marriage, Mrs. Rush returned to school earning a degree from Des Moines College in 1914 and studying law through correspondence courses from the LaSalle Extension of the University of Chicago.\r\n\r\nRush passed the Iowa Bar exam in 1918; making her the first African American woman to practice law in the State of Iowa. She practiced law until she suffered a stroke in 1958.\r\n\r\nRush was one of only five active black lawyers in Iowa in 1924. The other four were George H. Woodson, S. Joe Brown, James B. Morris, and Charles P. Howard. These five lawyers were instrumental in forming a professional organization for African American lawyers after having been denied admittance to the American Bar Association (ABA). In 1925, Rush and her colleagues formed the Negro Bar Association (NBA), later renamed the National Bar Association.\r\n\r\nGertrude Rush lived at several locations in Des Moines, but most no longer stand. This home, where she lived from 1943 through 1962, is the surviving building that is best associated with her.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1160 13th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Kenan Barn",
            "lat": "41.965079",
            "lon": "-94.211165",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-barn-kenanbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kenan Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.965079,-94.211165\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This brick barn, built in the late 1800s, has a matching corn crib. The barn has the original rope pulley and forks. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2254 270th St.<br />Rippey, IA 50235<br />Greene County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "F. F. Odenweller and James P. and Nettie Morey House",
            "lat": "41.598901",
            "lon": "-93.653109",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-ffodenwellerandjamespandnettiemoreyhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">F. F. Odenweller and James P. and Nettie Morey House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.598901,-93.653109\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built in 1896 and was added to the National Register of Historic Places in 1988. It illustrates the effect Drake University had on the surrounding neighborhood, sparking increased residential development as more students and families came to the area.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1115 27th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Greek Orthodox Church of St. George",
            "lat": "41.598884",
            "lon": "-93.664557",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-greekorthodoxchurchofstgeorge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Greek Orthodox Church of St. George</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.598884,-93.664557\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building, originally the Elmwood United Presbyterian Church, was built in 1906 by the prominent Iowa architectural firm Proudfoot and Bird. It was purchased in 1930 by the recently organized Greek Orthodox parish and became the first permanent religious establishment for Des Moines’ Greek community. It held its first Divine Liturgy in the building on Christmas Day, 1930. The church was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1118 35th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John P. Simmons House",
            "lat": "41.598803",
            "lon": "-93.653050",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-johnpsimmonshouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John P. Simmons House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.598803,-93.653050\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John P. Simmons house was built in 1894 and was added to the National Register of Historic Places in 1988. It illustrates the effect Drake University had on the surrounding neighborhood, sparking increased residential development as more students and families came to the area.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1113 27th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Josiah Andrews House",
            "lat": "41.599063",
            "lon": "-93.653609",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-josiahandrewshouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Josiah Andrews House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.599063,-93.653609\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Josiah Andrews house was built in 1896 and added to the National Register of Historic Places in 1988. It illustrates the effect Drake University had on the surrounding neighborhood, sparking increased residential development as more students and families came to the area.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1128 27th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George B. Peak House",
            "lat": "41.597894",
            "lon": "-93.647164",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-georgebpeakhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George B. Peak House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.597894,-93.647164\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The George B. Peak House was built around 1900 and is an example of Georgian Revival architecture. Peak was a prominent figure in the insurance business in Des Moines, and his former home was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1080 22nd St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hill McClelland Bell House",
            "lat": "41.597875",
            "lon": "-93.651891",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hill McClelland Bell House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.597875,-93.651891\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bell House was built in 1902 and was the home of Hill M. Bell, Drake University&#039;s president during a period of dramatic growth from 1902-1918. He was a highly influential leader of Drake&#039;s administration during a critical period of the school&#039;s history. The house was added to the National Register of Historic Places in 1988.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1091 26th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Professor Charles O. Denny House",
            "lat": "41.597639",
            "lon": "-93.651226",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-professorcharlesodennyhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Professor Charles O. Denny House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.597639,-93.651226\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Professor Charles O. Denny House was built around 1893 and was added to the National Register of Historic Places in 1988. It illustrates the effect Drake University had on the surrounding neighborhood, sparking increased residential development as more students and families came to the area.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1084 25th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Samuel A. and Margaret Stevenson House",
            "lat": "41.598309",
            "lon": "-93.659117",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-samuelaandmargaretstevensonhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Samuel A. and Margaret Stevenson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.598309,-93.659117\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1889 by an unknown builder, the Samuel A. and Margaret Stevenson House is one of Des Moines&#039; best preserved examples of a residence that combines elements of the Stick and Eastlake styles of architecture. Once fairly common in Des Moines and especially popular with developers of the city&#039;s late 19th-century suburbs, the vast majority of this house type have either been demolished or altered beyond recognition. The Stevenson House also retains an unusually large amount of its original interior fabric. It was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2940 Cottage Grove Ave.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Kingman Place Historic District",
            "lat": "41.597568",
            "lon": "-93.656867",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kingman Place Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.597568,-93.656867\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kingman Place Historic District represents the emergence of the square house in general, specifically the foursquare house type in Des Moines around 1903-1904. It was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t27th St. to 31st St., Kingman Blvd., Rutland St., Cottage Grove Ave.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Anson O. Reynolds House",
            "lat": "41.595973",
            "lon": "-93.652401",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-ansonoreynoldshouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Anson O. Reynolds House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.595973,-93.652401\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Anson O. Reynolds House was built around 1890 and added to the National Register of Historic Places in 1988. It illustrates the effect Drake University had on the surrounding neighborhood, sparking increased residential development as more students and families came to the area.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1022 26th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dr. Richard and Paulina Stuart House",
            "lat": "41.597008",
            "lon": "-93.651291",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-drrichardandpaulinastuarthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. Richard and Paulina Stuart House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.597008,-93.651291\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built in the 1890s and was added to the National Register of Historic Places in 1988. It illustrates the effect Drake University had on the surrounding neighborhood, sparking increased residential development as more students and families came to the area.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1060 25th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fire Station No. 4",
            "lat": "41.596464",
            "lon": "-93.627821",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fire Station No. 4</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.596464,-93.627821\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This was one of a small group of fire stations erected around the turn of the century and one of the earliest buildings of its type in Des Moines. It was built in 1869 and typifies fire station design of its period. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1041 8th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Francis M. Kirkham House",
            "lat": "41.596117",
            "lon": "-93.650047",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-francismkirkhamhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Francis M. Kirkham House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.596117,-93.650047\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kirkham House was built in 1883 for religious editor Francis M. Kirkham. He was an original incorporator of the University Land Company and a Drake University Trustee as well. The house was added to the National Register of Historic Places in 1988.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1026 24th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lampson P. Sherman House",
            "lat": "41.596784",
            "lon": "-93.652521",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-lampsonpshermanhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lampson P. Sherman House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.596784,-93.652521\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built around 1888 and added to the National Register of Historic Places in 1988. It illustrates the effect Drake University had on the surrounding neighborhood, sparking increased residential development as more students and families came to the area.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1052 26th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Marian D. Vail and Professor Charles Noyes Kinney House",
            "lat": "41.596973",
            "lon": "-93.652451",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-mariondvailandprofessorcharlesnoyeskinneyhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marian D. Vail and Professor Charles Noyes Kinney House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.596973,-93.652451\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built in 1889 and added to the National Register of Historic Places in 1988. It illustrates the effect Drake University had on the surrounding neighborhood, sparking increased residential development as more students and families came to the area.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1056 26th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mary A. and Caleb D. Scott House",
            "lat": "41.595776",
            "lon": "-93.652451",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-maryaandcalebdscotthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mary A. and Caleb D. Scott House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.595776,-93.652451\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built around 1889 and was added to the National Register of Historic Places in 1988. It illustrates the effect Drake University had on the surrounding neighborhood, sparking increased residential development as more students and families came to the area.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1014 26th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Nellie and Thomas Knotts House",
            "lat": "41.595932",
            "lon": "-93.651921",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-nellieandthomasknottshouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nellie and Thomas Knotts House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.595932,-93.651921\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built around 1894 and was added to the National Register of Historic Places in 1988. It illustrates the effect Drake University had on the surrounding neighborhood, sparking increased residential development as more students and families came to the area.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1021 26th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Richard T. C. Lord and William V. Wilcox House",
            "lat": "41.596396",
            "lon": "-93.650737",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-richardtclordandwilliamvwilcoxhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Richard T. C. Lord and William V. Wilcox House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.596396,-93.650737\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built in 1888 and added to the National Register of Historic Places in 1988. It illustrates the effect Drake University had on the surrounding neighborhood, sparking increased residential development as more students and families came to the area.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2416 Kingman Blvd.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Naylor House",
            "lat": "41.594894",
            "lon": "-93.629507",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Naylor House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.594894,-93.629507\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Naylor House was built in 1869 and has been virtually unaltered since. It is believed to have been designed by Iowa architect William Foster, student of Richard Upjohn. The house was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t944 9th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Thomas I. Stoner House",
            "lat": "41.596271",
            "lon": "-93.694263",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thomas I. Stoner House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.596271,-93.694263\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Thomas I. Stoner House is an excellent, virtually unaltered example of the Spanish Eclectic style of residential architecture. As such, it reflects the interests and pursuits of its original owners, interior decorator, suburban developer, and outdoor advertising businessman Thomas I. Stoner and his wife Ruth. Details and materials of the interior reflect the Stoners’ interest in interior detail and impart a Mediterranean flavor into the home. The style is a rare representation in Des Moines, where most other examples are more modest and less sophisticated. It was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1030 56th St.<br />Des Moines, IA 50311<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Willkie House",
            "lat": "41.594264",
            "lon": "-93.640469",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a9ad84e9c5fd13ba.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Willkie House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.594264,-93.640469\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Willkie House is named for one-time presidential candidate Wendell Willkie because of his vision for an equal society. A plaque in the building quotes Willkie, “We must create a world in which there shall be equality of opportunity for every race and every nation.” \r\n\r\nThe Willkie House traces its roots to 1919 with the opening of the first Negro Community Center at 907 15th Street (not extant). The purpose of the Center was explained in 1935 by then-director, Lillian Edmunds, “It is our aim to provide a higher civic and social life, to promote the proper use of leisure time, and to sponsor and maintain educational and cultural enterprises.” \r\n\r\nWhen it opened in 1951, the Willkie House provided a library, gymnasium, kitchen, locker and shower rooms, a “well-baby” clinic, and activity rooms. The directors insisted that anyone, regardless of race, could partake of the activities and space offered by the Willkie House. Clubs and civic organizations continued to meet here, and in 1953, the building played host to the statewide National Association for the Advancement of Colored People (NAACP) conference.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t900 17th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Burns Methodist Episcopal Church",
            "lat": "41.593609",
            "lon": "-93.628734",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Burns Methodist Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.593609,-93.628734\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building was completed in 1912 and has been the home of the Burns United Methodist Church since 1930. Organized in 1866, The Burns United Methodist Church was the first African American congregation of its denomination in Des Moines. It was named for Francis Burns, the first African American missionary bishop in the Methodist Episcopal Church who served in the American-instituted colony for former slaves in Liberia. The church was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t811 Crocker St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Chinese Cultural Center of America",
            "lat": "41.593275",
            "lon": "-93.617299",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chinese Cultural Center of America</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.593275,-93.617299\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chinese Cultural center of America (CCCA) is a non-profit organization that brings cultural awareness and boosts trade relationships with East Asia. Its goal is to provide diverse cultural offerings and vibrant quality of life in central Iowa, cultivate understanding and friendship among people of diverse cultural origins, contribute to Iowa’s economic development by offering a unique tourist attraction, and facilitate trade between Iowa and East Asia.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2420 128th St<br />Urbandale, IA 50323<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.440.5626</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Iowa Jewish Heritage Society",
            "lat": "41.594000",
            "lon": "-93.682938",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Jewish Heritage Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.594000,-93.682938\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Jewish Heritage Society is in charge of procuring, preserving, and displaying the Jewish History of Des Moines. It operates a series of temples across the Des Moines Area. It is also in charge of showing the Jewish faith to all people, no matter of religion.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t910 Polk Blvd.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.277.6321</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Des Moines Playhouse",
            "lat": "41.592727",
            "lon": "-93.673920",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines Playhouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592727,-93.673920\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Des Moines Community Playhouse was founded in 1919 by members of the Iowa Press and Authors Club. Although the Little Theatre Movement was causing similar enterprises to spring up across the country, the Playhouse is unique in that it has operated continuously, under various names and in various homes, since its founding. With more than 90 years of uninterrupted service, the Playhouse is among the six oldest continuously-operating community theatres in the U.S. It is also the second largest community theatre in the U.S. Its current venue was built in 1934 and housed the Roosevelt Theatre, one of the first suburban theatres located outside central Des Moines. The Des Moines Playhouse purchased the theater in 1952. The Playhouse is also home to the Kate Goldman Children&#039;s Theatre.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t831 42nd St.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 1.877.862.5621</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.dmplayhouse.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "A Veteran&#039;s Prayer for Eternal Peace",
            "lat": "41.591979",
            "lon": "-93.623925",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-veteransprayerforeternalpeace.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">A Veteran&#039;s Prayer for Eternal Peace</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591979,-93.623925\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>This sculpture is in the center of a circular plaza with a walkway that includes benches, depictions of chaplains, and symbols of religious beliefs. The sculpture consists of a pair of large cupped hands, created by Christopher Bennett.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t833 5th Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "American Expeditionary Forces Memorial Tablet",
            "lat": "41.592757",
            "lon": "-93.602674",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-americanexpeditionaryforcesmemorialtablet-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">American Expeditionary Forces Memorial Tablet</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592757,-93.602674\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>A crowd gathered on Aug. 12, 1921, at the State Historical, Memorial and Art Building (now the Ola Babcock Miller Building) to dedicate a memorial tablet commemorating the World War I service of the 351st Infantry, 88th Division, American Expeditionary Forces. The unit activated on Aug. 5, 1917, at Camp Dodge, sailed overseas on Sept. 7, 1918, and was deactivated on June 10, 1919. At the memorial&#039;s dedication, legendary state curator Edgar R. Harlan and Major H. F. Evans explained that all of the unit&#039;s men contributed to funding the memorial tablet as a regimental gift and that the Historical Department of Iowa cooperated in its creation. The memorial tablet, sculpted by Sherry E. Fry, was accepted by Gov. Nathan E. Kendall on behalf of the people of Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Grand Ave.<br />Ola Babcock Miller<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sherman Hill Historic District",
            "lat": "41.591681",
            "lon": "-93.640128",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-shermanhilldistoricdistrict-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sherman Hill Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591681,-93.640128\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>The houses in the Sherman Hill Historic District were built between 1880 and 1920 and make up one of Des Moines&#039; oldest residential suburbs. The neighborhood is also unique because it was open to residents with a wide range of incomes, even from its earliest development in the late 19th century. The architecture of Sherman Hill has remained mostly intact, dating almost exclusively from 1880-1920 with the exception of some mid-20th century apartment complexes. The district was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWoodland Ave., 19th St., School St., 15th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fish and Game Pavilion",
            "lat": "41.596046",
            "lon": "-93.556599",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-naturalresourcesbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fish and Game Pavilion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.596046,-93.556599\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Department of Natural Resources Building was designed by prominent Des Moines architects Proudfoot, Rawson and Souers. William Albert, the state fish and game warden, pushed for the construction of a Natural Resources Building in the early 20th century, and the building was completed in 1919. The building grew from the inside out, beginning as a fenced area with waterfowl and a stock tank of fish. Over the next ten years, walls were built around the aquarium, and then a roof and finally outer walls. Look for the molded swans and eagles at the corner and the frogs around the aquaria. Now, the aquariums show off different aquatic habitats in Iowa. Also of note are the new gates being made for the building, made out of trash pulled from Iowa’s rivers!</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Henry Wallace House",
            "lat": "41.591554",
            "lon": "-93.639252",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historicsite-wallacecentersofiowa-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry Wallace House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591554,-93.639252\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wallace House was built in 1883 and features an Italianate Victorian design with a Classical style wrap-around porch and Ionic Roman columns. The house remained in the Wallace family until 1940. Henry Wallace is best known for his accomplishments and leadership in the areas of agriculture, journalism, and soil conservation. His house was purchased in 1988 by the newly incorporated Wallace House Foundation and restored by historic preservation architect William Wagner for use as a museum, office space, and meeting facility. The museum features pieces of period furniture and historic mementos donated by the Wallace family, including portraits of Henry and Nancy Wallace that were original to the house. The house was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t756 16th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.243.7063</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.wallace.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "New Providence School Gymnasium",
            "lat": "42.285147",
            "lon": "-93.172717",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-newprovidenceschoolgymnasium.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">New Providence School Gymnasium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.285147,-93.172717\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>The New Providence School gymnasium was built in 1936 by the J.F. Lovejoy Construction Company. It was one of 22 Public Works Administration school projects. It was the first and most modern gym in the area and hosted all the area basketball tournaments. It was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t106 N Main St.<br />New Providence, IA 50206<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Maish House",
            "lat": "41.591966",
            "lon": "-93.639915",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-maishhouse-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Maish House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591966,-93.639915\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1882, the Maish House is a now-rare example of a once-typical residence: that of the &quot;prosperous businessman&quot; who made a comfortable life for himself with the commercial opportunities of the mid- and late 19th century. The house is of high quality Victorian craftsmanship and features an interesting combination of basic Italianate style and Eastlake details. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1623 Center St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "State Library of Iowa (Ola Babcock Miller Building)",
            "lat": "41.592795",
            "lon": "-93.602665",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">State Library of Iowa (Ola Babcock Miller Building)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592795,-93.602665\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building was built between 1898-1899 and 1904-1910 and housed the State Historical Building of Iowa until 1987. The building&#039;s architecture is a good example of the Beaux Arts Classicism style. It was built by O.O. Smith, a well-known architect from Des Moines, and is among the oldest structures on the capitol complex. The building now houses the State Library and legislative offices. It was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1112 E Grand Ave.<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Theodore Roosevelt High School",
            "lat": "41.592698",
            "lon": "-93.678826",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Theodore Roosevelt High School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592698,-93.678826\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30mi.</span></div>\n\t\t</div>\n\n\t\t<p>Theodore Roosevelt High School illustrates the development of secondary educational facilities after district consolidation in Des Moines in 1907. It is architecturally significant as an example of the &quot;Modern School&quot; with its modified H-shape plan, highly decorated main lobby, and specialized spaces. It was designed by the prominent Des Moines firm of Proudfoot, Bird, and Rawson. The building was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4419 Center St.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Baker-DeVotie-Hollingsworth Blocks",
            "lat": "41.590948",
            "lon": "-93.610638",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-bakerdevotiehollingsworthblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Baker-DeVotie-Hollingsworth Blocks</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590948,-93.610638\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Baker-DeVotie-Hollingsworth Block represents the continued application of an Italianate style commercial design on three commercial buildings constructed between 1877 and 1883. The resulting block is the earliest surviving commercial block in that style in east downtown Des Moines. The buildings were added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t516 E Grand Ave.<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "David A. Smouse Opportunity School",
            "lat": "41.591155",
            "lon": "-93.655143",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-davidsmouseopportunityschool-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">David A. Smouse Opportunity School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591155,-93.655143\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The David A. Smouse Opportunity School played a significant role in the history of special education in the state of Iowa. The school was designed by Proudfoot, Rawson, Souers, and Thomas, and is an excellent example of the Tudor Revival style of architecture. It is also the only example in the state of a building with interiors designed specifically for the education of children with a wide variety of handicaps. The building was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2820 Center St.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "F. A. Benham House",
            "lat": "41.590421",
            "lon": "-93.642834",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-fabenhamhouse-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">F. A. Benham House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590421,-93.642834\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1884, this late Victorian house displays the Eastlake design, including elaborate woodwork with original finishes, fireplaces, and dining room cabinetry. The property also includes a barn and an iron fence and gate. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t716 19th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Scottish Rite Consistory Building",
            "lat": "41.590938",
            "lon": "-93.625277",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-scottishrite.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Scottish Rite Consistory Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590938,-93.625277\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Scottish Rite Consistory Building was built in 1927 and is a late example of a Neoclassical style fraternal building with some Art Deco influences. It is a notable work by Weatherall and Harrison, one of the state&#039;s prominent architectural firms. The building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6th Ave. and Park St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.288.8927</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://dmscottishrite.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "State of Iowa Capitol",
            "lat": "41.591153",
            "lon": "-93.603702",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-statecapitol.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">State of Iowa Capitol</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591153,-93.603702\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa State Capitol Building was built from 1871-1886 and houses the Iowa Senate, Iowa House of Representatives, Office of the Governor, and the offices of the Attorney General, Auditor, Treasurer, and Secretary of State. It is the only five-domed state capitol in the country, and the large central dome is covered with 23 carat gold leaf. The buildings exterior features elaborate columns, and various monuments and memorials are spread across the capitol grounds. The interior displays significant works of art and artifacts that highlight Iowa&#039;s history, and is open for public tours. The capitol building was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "The Lexington",
            "lat": "41.590065",
            "lon": "-93.641026",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-lexington-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Lexington</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590065,-93.641026\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lexington was designed and built by Fred Weitz in 1908. Its architectural significance comes from the application of 18th-century domestic architectural style to a much newer building. The Lexington was the first high-rise apartment building in Des Moines and included a number of important innovations for the comfort of its tenants. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1721 Pleasant St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Bochumer Verein Cannon (Spanish-American War Cannon)",
            "lat": "41.591100",
            "lon": "-93.604343",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bochumer Verein Cannon (Spanish-American War Cannon)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591100,-93.604343\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This cannon is located on the west stairway to the Capitol Building. Captured in 1898 at the Battle of Santiago, Cuba, it was brought to Iowa in 1901.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Civil War Parrot Rifle",
            "lat": "41.590824",
            "lon": "-93.604365",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-parrotrifle.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Civil War Parrot Rifle</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590824,-93.604365\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 10,000 pound cannon was made at West Point Foundry in New York, and was used during the civil war.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "G.A.R. Sundial",
            "lat": "41.591004",
            "lon": "-93.604826",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-garsundial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">G.A.R. Sundial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591004,-93.604826\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bronze sundial is dedicated to the Union veterans of the civil war. It was installed in 1938, and adjusted by Dr. D. W. Morehouse, then president of Drake University and astronomy professor.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Spanish-American War Monument",
            "lat": "41.591883",
            "lon": "-93.602057",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-spanishamericanwarmonument.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spanish-American War Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591883,-93.602057\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This memorial is dedicated to Iowans who voluntarily served in the Spanish-American War, the Philippine Insurrection, and the China Relief Expedition.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 E 12th St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "V.F.W. Monument",
            "lat": "41.590878",
            "lon": "-93.604782",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-vfwmonument.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">V.F.W. Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590878,-93.604782\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Installed in 1976, this monument was a bicentennial gift from Iowa chapters of the Veterans of Foreign Wars and their Ladies&#039; Auxiliary to honor all Americans who fought overseas.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World War II Memorial Plaza",
            "lat": "41.592006",
            "lon": "-93.599843",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-wwiimemorialplaza.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World War II Memorial Plaza</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592006,-93.599843\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This memorial honors those who served during WWII, while celebrating the compelling reason for US involvement: The preservation of freedom around the world.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 E 13th St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Sky Glider",
            "lat": "41.595885",
            "lon": "-93.551864",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-skyglider-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sky Glider</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.595885,-93.551864\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1975 the fair board contracted with O.D. Hopkins Associates, Inc., a New Hampshire firm which specialized in aerial passenger rides, to install the Sky Glider that travels between Ye Old Mill and Pioneer Hall. The company had also installed rides in Illinois, Ohio, Virginia, Arizona and California. According to a 1975 report, a typical ride took about 5-6 minutes and covers about a 1/4 mile, rising nearly 50 ft. into the air at its highest point. Sixty colorful, canopy-covered fiberglass chairs, can carry 1,436 people per hour. Construction costs totaled approximately $175,000. In 1975 a one-way ride cost 75 cents. In 2003, an additional sky glider was built on the southwest corner of the fairgrounds with 108 chairs.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "American Republic Insurance Company Headquarters Building",
            "lat": "41.590241",
            "lon": "-93.625289",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-americanrepublicinsurance-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">American Republic Insurance Company Headquarters Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590241,-93.625289\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The American Republic Insurance Company Headquarters Building was designed by the renowned architectural firm of Skidmore, Owings &amp; Merrill and completed in 1965. The building is significant for the Modern Movement design and work of master architect, Gordon Bunshaft, FAIA. The building&#039;s design innovations include an upper-story towers supported on steel hinge units that appears to float over a clear-glass second-story; 90-foot prestressed precast reinforced T beams that are expressed on the tower&#039;s exterior and on the interior create clear-span work spaces for improved working conditions and efficiency; and on the tower, solid east and west concrete walls with recessed tinted window walls on the north and south elevations to reduce glare and air conditioning loads while providing ample nature light within the large work spaces. In 1967, the building received the National Honor Award from the American Institute of Architects. It was added to the National Register of Historic Places in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 6th Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "East Des Moines Commercial Historic District",
            "lat": "41.590758",
            "lon": "-93.610917",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">East Des Moines Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590758,-93.610917\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The East Des Moines Commercial Historic District was platted in 1854, and its period of historic significance is tied to its ethnic heritage, social history and architecture from 1873 through 1959. Many of the district’s commercial buildings have historical associations with European immigrants, including Scandinavian and Eastern European Jewish immigrant communities that settled on the near east side beginning in the 1870s and 1880s and became merchants, tradespeople and professionals delivering goods and services from buildings within the district, according to the district&#039;s National Register nomination. Geographically asymmetrical, the district as listed on the National Register is bound roughly by Des Moines Street to the north, East Locust Street to the south, East Fourth Street to the west and East Sixth Street to the east. It contains 40 buildings that contribute to its historic status, including seven previously listed on the National Register.\r\n\r\nThe district includes three different generations of building construction that took place in the district from the 1840s until 1959. First-generation buildings (1840s-1890s) were framed with wood and included single family homes, double-houses and row houses, some of which have been remodeled or replaced by commercial buildings. The Swedish Mission building at 509-511 E. 5th St. is one example. Second-generation buildings (1870s-1920s) were built almost exclusively of brick in a variety of styles popular at the time, including Italianate, Gothic Revival, Romanesque Revival, Queen Anne, Classical and Commercial styles. These brick storefronts with ground-floor retail/service had second-floor living spaces and were owned or leased by merchants and service professionals, including many of Scandinavian or Jewish heritage. The district contains several rare surviving buildings from this time period, such as the 1894 Samuel Green Rowhouse at 425 E. Grand Ave. (the only known surviving row house on the east side of Des Moines) and the First Swedish Evangelical Lutheran Church, now called Capitol Hill Lutheran Church, at 511 Des Moines St. remains on its original site and in operation since 1886. This is a rare surviving religious institution in an area that was wiped clean of most residential housing between 1910s and 1960s due to City Beautiful riverfront cleanup, mid-century urban renewal, freeway construction and government expansion. Third-generation buildings (1920s-1950s) generally reflect continued influences of the automobile on both design and use. This era saw many properties redeveloped or remodeled as part of the East Des Moines Auto Row, including Orville Lowe&#039;s Ford auto showroom and service center. Its minimal design and concrete masonry block construction in 1946 was an expression of post-war Modernism. Many existing older buildings were modernized via “facelifts,” reflecting the continual need for merchants and manufacturers to modernize and adapt to new technologies. In addition to Modernism, stylistic influences included Art Deco, Commercial and Moderne.\r\n\r\nOver the years, river flooding, fires, building collapses, government expansion, parking-lot development and urban renewal substantially eroded the number of historic buildings in the district.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Grand Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Iowa Holocaust Memorial",
            "lat": "41.590987",
            "lon": "-93.607089",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-iowaholocaustmemorial.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Holocaust Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590987,-93.607089\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Holocaust Memorial was installed on the West Capitol Terrace in June 2013. The design of ribbons of aluminum in concrete, with prairie grasses, is intended to be an abstract representation of a Holocaust survivor&#039;s journey. The struggle for survival and perseverance in the face of oppression are described in text samples along the memorial. As the visitor moves east, the rolling features of the landscape blossom and expand outward to the State Capitol, showcasing Iowa&#039;s role as a welcoming refuge for any people in need of a new start.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1007 E Grand Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://iowaholocaustmemorial.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Woodland Place Historic District",
            "lat": "41.589941",
            "lon": "-93.652067",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Woodland Place Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589941,-93.652067\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Woodland Place neighborhood is significant for its consistent architectural expression and design of popular bungalows and square house types. It also nicely expresses an era of large-scale substantial westward expansion of the city&#039;s residential frontier, specifically the infilling of the corridor between Ingersoll Avenue and Kingman Boulevard. The district was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t25th St. to 27th St., Center St. to Woodland Ave.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Iowa State Fair and Exposition Grounds Historic District",
            "lat": "41.595708",
            "lon": "-93.552495",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa State Fair and Exposition Grounds Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.595708,-93.552495\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa State Fair and Exposition Grounds were established in 1886 and was listed on the National Register of Historic Places in 1987. The property had previously been the Charles Thornton farmstead, and the original house and barn are still intact. \r\n\r\nThe first buildings constructed for the fairgrounds were single story frame buildings. Although they were in constant need of repair, these buildings lasted until the early 20th century when they began to be replaced by steel framed buildings covered in red brick. \r\n\r\nOther improvements over the years included paved streets and sidewalks, electric lights, and a sewer system. The Iowa State Fair is an annual celebration of the state of Iowa that has various competitions, shows, and other entertainment. The Fair was the setting for the 1933 film &quot;State Fair&quot; and it&#039;s 1945 musical adaptation (although neither was filmed at the State Fairgrounds.)\r\n\r\nThe first Iowa State Fair was in Fairfield, IA in 1854. The fair didn&#039;t move to its current and permanent location until 1886. The Iowa State Fair offers all the best of the state of Iowa, from agriculture to machinery, the food to the exhibits, and the Butter Cow to the Grandstand, the Iowa State Fair is an iconic celebration of the state.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefairgrounds.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Administration Building",
            "lat": "41.595395",
            "lon": "-93.553007",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-administrationbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Administration Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.595395,-93.553007\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Administration Building was built in 1908. With it’s wide verandas, it has long been enjoyed by Fair visitors. Today, it’s used as a Fair home for Fair Board members and is the hub of the Fair, as well as year-round offices.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Agriculture Building",
            "lat": "41.595340",
            "lon": "-93.551082",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-agriculture.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Agriculture Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.595340,-93.551082\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ag Building was built in 1904, the Agriculture Building was built at the junction of Grand and Rock Island. It was inspired by the exhibition halls at Chicago’s Columbian Exposition. The agriculture building was built on grand scale and suggested that the Fair was a grand event of both civic and social importance. The Ag Building is the finest example of Double Jeffersonian architecture remaining in the world.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Grandstand",
            "lat": "41.596132",
            "lon": "-93.554416",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-grandstand.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grandstand</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.596132,-93.554416\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The race track has always been in this location. The first fairs at these grounds featured a timber grandstand, but that deteriorated over time. In the early 1900s, the Fair Board committed $150,000 for building a new, steel grand stand. It was originally built in 1909 to hold 10,000 spectators, but in 1927 it was expanded to hold an additional 5,000 people. When the Grandstand re-opened for the 1927 Fair, it was 600 feet long, making it the largest building in Iowa at the time! Today, the Grandstand covers four acres, and the track infield is as big as three football fields. Over time, the Grandstand has been host to several events. Some notable events include the 1914 car vs. biplane race, where (future) Flying Ace Eddie Rickenbacker drove the race car, election year train crashes and countless concerts.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Midway and the Spanish American War",
            "lat": "41.595928",
            "lon": "-93.552679",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-iowastatefair-midway.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Midway and the Spanish American War</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.595928,-93.552679\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The 49th Iowa mustered in for the Spanish American War at the State Fairgrounds in 1898. They bivouacked in the early animal barns, located where the animal barns are now and drilled on the midway. They ate pork, beans, beef and nothing on a stick. Col. James Rush Lincoln was in charge of drilling the troops at the Fairgrounds. He had been a Confederate Officer in the Civil War and was in charge of military science at Iowa State. He later became the army’s oldest major in World War I. As late as the 1901 Fair, most of the exhibition halls were located where the midway is today.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Ye Old Mill",
            "lat": "41.595997",
            "lon": "-93.551405",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-yeoldmill.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ye Old Mill</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.595997,-93.551405\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The original Ye Old Mill was built from 1920 to 1924. That Ye Old Mill burned down, and was re-built. The second version of Ye Old Mill became full of dry rot and termite damage – so much so that in 1996 strong winds destroyed it. A new Ye Old Mill was constructed, and fairgoers enjoy the 1,500 foot long canal ride.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Iowa Genealogical Society",
            "lat": "41.591502",
            "lon": "-93.609257",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Genealogical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591502,-93.609257\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Genealogical Society was founded in 1965 by a small group of dedicated genealogists. Its mission is to create and foster an interest in genealogy and to aid others in researching their family history.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t628 E Grand Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.276.0287</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://iowagenealogy.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Iowa Hall of Pride",
            "lat": "41.591272",
            "lon": "-93.622389",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Hall of Pride</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591272,-93.622389\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Hall of Pride is an organization that showcases the achievements of Iowans in all aspects of life. The hall provides educational and entertaining experiences for people to learn about their fellow Iowans. From athletes to scientists, the Hall of Pride has interactive and fun exhibits for people of all ages.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t330 Park St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.280.8969</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowahallofpride.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "State Historical Society Research Center (Des Moines)",
            "lat": "41.590852",
            "lon": "-93.608774",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historicalsociety-researchcenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">State Historical Society Research Center (Des Moines)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590852,-93.608774\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The State Historical Society Research Center collections facilitate access to primary and secondary resources related to the history of Iowa. It serves a wide range of visitors including authors, educators, students, news media, curators, archaeologists, preservationists, historians and genealogists.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t600 E Locust St.<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://iowaculture.gov/history/research/research-centers\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "State Fair Museum",
            "lat": "41.596138",
            "lon": "-93.547417",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-museum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">State Fair Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.596138,-93.547417\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The State Fair Museum was originally built as the Polk County Building. Residents of the Polk County Home, on Northeast 14th Street in Des Moines, would come to the Fair and use the house as home base. They took meals and rested here. By the 1970s, the building had become an attic for the Fair. Many historical items were stored there and in 1982 the building opened as the State Fair Museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Albert Cummins Gravesite",
            "lat": "41.589611",
            "lon": "-93.648383",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-govgravesite-governoralbertcumminsgravesite.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Albert Cummins Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589611,-93.648383\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Albert Baird Cummins (February 15, 1850 – July 30, 1926) served as the 18th Governor of Iowa from 1902-1908. Cummins served as a U.S. Senator from Iowa from 1908 until the time of his death. He is buried at Woodland Cemetery in Des Moines.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2019 Woodland Ave<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Samuel Merrill Gravesite",
            "lat": "41.589611",
            "lon": "-93.648383",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-govgravesite-samuelmerrillgravesite-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Samuel Merrill Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589611,-93.648383\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Samuel Merrill (August 7, 1822 – August 31, 1899) served as the 7th Governor of Iowa from 1868–1872. He died in Los Angeles, California and his gravesite is located at Woodland Cemetery in Des Moines.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2019 Woodland Ave<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-historic-sites.png",
            "title": "State Historical Museum of Iowa",
            "lat": "41.590358",
            "lon": "-93.608875",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statehistoricsite-statehistoricalmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">State Historical Museum of Iowa</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590358,-93.608875\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The State Historical Museum of Iowa features a variety of exhibits about the state&#039;s rich history. Notable exhibits include &quot;Iowa and the Great War,&quot; which commemorates the United States entry into World War I; the award-winning &quot;Riding through History,&quot; which celebrates the spirit of Iowa bicycling; and &quot;Hollywood in the Heartland,&quot; which features Iowa and the silver screen. Admission is free.</p>\t\t<p><em>A location in the collections: State Historic Sites, Hollywood in the Heartland, 99 County Tour - Iowa History Month</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t600 E Locust St.<br />State Historical Building<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://iowaculture.gov/history/museum\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Crocker Memorial",
            "lat": "41.590097",
            "lon": "-93.602281",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-crockermemorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Crocker Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590097,-93.602281\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This memorial was installed in 1944 by the Crocker Women&#039;s Relief Corps and honors the first brigade formed in Iowa during the Civil War.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "G.A.R. Memorial Tree",
            "lat": "41.589661",
            "lon": "-93.604254",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">G.A.R. Memorial Tree</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589661,-93.604254\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This tree was planted in honor of the Civil War veterans during a national encampment in Des Moines.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Korean War Memorial",
            "lat": "41.589867",
            "lon": "-93.602498",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-koreanwarmemorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Korean War Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589867,-93.602498\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This memorial was created after students from a Harding Junior High School class in Des Moines wrote to the governor in 1984 asking why Korean War veterans did not have a memorial. Stone tablets surround a central obelisk.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Purple Heart Memorial",
            "lat": "41.589752",
            "lon": "-93.602641",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-purpleheartcombatveterans.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Purple Heart Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589752,-93.602641\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This monument was installed by the Department of Iowa Military Order of the Purple Heart and dedicated on February 21, 2004. The Purple Heart is specifically a combat decoration, awarded to eligible members of the armed forces.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Soldiers&#039; and Sailors&#039; Monument",
            "lat": "41.589733",
            "lon": "-93.603466",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-soldiersandsailors.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Soldiers&#039; and Sailors&#039; Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589733,-93.603466\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The State of Iowa erected this monument to commemorate Iowans who fought during the Civil War. The monument was approved in 1888, the cornerstone was laid in 1894, and the structure was completed two years later. Because a controversy developed over the location and artistic details of the monument, nearly 50 years passed before its dedication in 1945. Iowa artist Harriet A. Ketcham&#039;s design for the memorial was chosen over 47 others, although she died before the monument was completed. Both real and symbolic figures are portrayed. &quot;Victory&quot; is the most prominent figure, topping the 135-foot structure. Four equestrians, all Iowa Civil War generals, are depicted: Marcellus M. Crocker, who joined Grant at the siege of Vicksburg; Grenville M. Dodge, who built railroads to support Grant&#039;s army and accompanied Sherman on the March to the Sea; Samuel R. Curtis, commander of the Union Army at Pea Ridge; and John M. Corse, who was promoted to brigadier general in 1863 and assigned to the command of the Fourth Division of the Fifteenth Army Corps. The four soldiers depicted on the upper base represent Iowans who served in different branches of the military during the Civil War: Infantryman Shelby Norman, who, at the age of 18, was the first Iowan killed in battle; Ensign William H.C. Michael, a school teacher turned sailor; Artilleryman Captain Henry H. Griffiths, whose battery never lost a gun throughout the war; and Cavalryman Lt. James Horton, killed while leading a saber charge at the battle of Lovejoy Station. Nearly 80,000 Civil War military men were from Iowa, the largest number of soldiers per capita of any state participating during the war. Noted Iowa generals and battle scenes are pictured along the base. On the north side, a statue portrays Iowa as a mother offering nourishment to her children. To the south, &quot;History&quot; gazes into the future, and &quot;Iowa&quot; is shown as a youngster.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1111 E Court Ave.<br />State Capitol Complex<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5594</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Submarine Memorial",
            "lat": "41.589518",
            "lon": "-93.602569",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-submarinememorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Submarine Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589518,-93.602569\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This memorial was installed as a part of a nationwide effort to establish memorials for each of the 52 submarines lost during World War II. The submarine assigned to the Iowa committee for this effort in the S-36.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Vietnam War Memorial",
            "lat": "41.589477",
            "lon": "-93.602269",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-vietnamwarmemorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vietnam War Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589477,-93.602269\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dedicated on memorial day, 1984, this memorial is similar in design to the monument in Washington DC. At a separate ceremony on Veterans Day, 1984, bronze plaques and missing names were added.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1198 E Walnut St.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Hoyt Sherman Place",
            "lat": "41.588871",
            "lon": "-93.638189",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-hoytshermanplace-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hoyt Sherman Place</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.588871,-93.638189\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Hoyt Sherman Place was originally built in 1877 as the private residence of Major Hoyt Sherman, a prominent banker who came to Iowa in 1848. After Sherman’s death in 1904, the house sat empty until it became a cultural facility in 1907 due to the efforts of the Des Moines Women’s Club. Since then it has evolved into a museum and performing arts center. The original house and gallery display a collection of 19th and 20th century paintings, elaborately carved 17th century furniture, and other artifacts. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1501 Woodland Ave.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.244.0507</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.hoytsherman.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Grandfather&#039;s Barn",
            "lat": "41.594371",
            "lon": "-93.547132",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-grandfathersbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grandfather&#039;s Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.594371,-93.547132\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fairgrounds were constructed on the Calvin Thornton farm. Grandfather’s Barn, dating to 1885, is the only building that remains from the Thornton Farmstead. The Grape Getaway – featuring the grape industry – opened at the refurbished barn in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First United Methodist Church",
            "lat": "41.589239",
            "lon": "-93.631154",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-firstmethodistepiscopalchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First United Methodist Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589239,-93.631154\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Completed in 1908, the First Methodist Episcopal Church (now the First United Methodist Church) was built by Fred Andrus Co. of Milwaukee and designed by Des Moines architectural firm Proudfoot and Bird. It is home to one of the longest standing congregations in Des Moines, which was organized in 1845 and met in log cabins until its first church building was constructed in 1856. The groundbreaking for the current building took place in 1905 and it was dedicated on June 14, 1908. Services and Sunday School have been held here consistently ever since. The church was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1001 Pleasant St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hohberger Building",
            "lat": "41.589886",
            "lon": "-93.610845",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hohberger Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589886,-93.610845\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hohberger Building was built in 1895 and is located in Des Moines&#039; East Village. It is one of the few remaining examples of a cast-iron column structure in the city and was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t502 E Locust St.<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowa Commission for the Blind Building",
            "lat": "41.589356",
            "lon": "-93.622939",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-iowacommissionfortheblindbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Commission for the Blind Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589356,-93.622939\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Commission for the Blind Building was built in 1913 and added to the National Register of Historic Places in 2010. It is a nine story, steel-framed structure covered in brick.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t524 4th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Des Moines Municipal Building",
            "lat": "41.589085",
            "lon": "-93.616505",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines Municipal Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589085,-93.616505\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Municipal Building was built in 1909-1910 to house Des Moines&#039; new form of government by commission, which was adopted in 1907. This new system was viewed as a symbol of Des Moines&#039; commitment to progress and change. The building was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 Robert D. Ray Dr.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Ambrose Church and Rectory",
            "lat": "41.588748",
            "lon": "-93.625828",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-stambrosechurchrectory.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Ambrose Church and Rectory</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.588748,-93.625828\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Ambrose Cathedral and Rectory were constructed in 1890-1891 and dedicated on October 11, 1891. They were designed in the Romanesque Revival style with a large, open interior by Chicago architect James J. Egan. In the 1940s, the cathedral underwent a significant renovation. This included the installation of the stained glass windows that depict the establishment of the Catholic faith in the United States and the state of Iowa, as well as the establishment of the Diocese of Des Moines. The cathedral and rectory were added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t607 High St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Syndicate Block Commercial Office Building",
            "lat": "41.589537",
            "lon": "-93.610826",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-syndicateblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Syndicate Block Commercial Office Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589537,-93.610826\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Renaissance Revival building, completed in 1883, remains an excellent example of its style as applied to a commercial structure, and it serves as a reminder of the period of development of the East side of Des Moines in the 1880s. It was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t501 E Locust St.<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Teachout Building",
            "lat": "41.589849",
            "lon": "-93.610958",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Teachout Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589849,-93.610958\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Teachout Building is named after Horace E. Teachout, a developer involved in the planning of Des Moines’ East Village. The building was designed by prominent Des Moines architects Proudfoot, Bird, and Rawson, and was completed in 1912. It is one of the last remaining buildings associated with Teachout’s career and influence, and is also one of the few commercial style high rise buildings by Proudfoot, Bird, and Rawson. The building was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t500 E Locust St.<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Anne and Bill Riley Stage",
            "lat": "41.594617",
            "lon": "-93.552994",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Anne and Bill Riley Stage</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.594617,-93.552994\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>After emceeing Iowa State Fair variety shows on KRNT radio, Iowa Falls native Bill Riley created the Iowa State Fair Talent Search in 1959. Riley hosted talent shows across the state; where local winners would go on to compete at the Iowa State Fair.  Riley hosted daily talent shows at the fair through 1996 and became known as &quot;Mr. Iowa State Fair.&quot; Upon his retirement, the former Plaza Stage was renamed the Bill Riley Stage. The stage has been renovated and now includes additional stage space, roof area, and a seating area to hold up to 3,000 spectators.  Riley&#039;s son, Bill Riley Jr., now manages and promotes the show. As it has since 1959, the Bill Riley Talent Search continues to showcase the talent of Iowa youth aged 2-21. The stage, now known as the Anne and Bill Riley Stage, ensures that Mr. Iowa State Fair&#039;s years of service to the Iowa State Fair will not be forgotten.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Woodland Cemetery Gold Star Section",
            "lat": "41.588773",
            "lon": "-93.645617",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-cemetery-woodland-goldstar.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Woodland Cemetery Gold Star Section</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.588773,-93.645617\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Gold Star section at Woodland Cemetery is the second and final resting place of Iowa soldiers killed in World War I. (Many of the soldiers were first buried in France.) Among those buried here is Medal of Honor recipient Lt. Col. Emory J. Pike, who helped a wounded soldier during a heavy artillery shelling and was severely wounded himself when another shell burst during the ordeal. While waiting to be brought to the rear, he continued in command and directed the reorganization until the unit&#039;s position could be held. He died of the wounds he sustained during the battle. Another soldier here is Capt. Edward Fleur, who was also killed in France during World War I and is buried across the lane from his wife, Minnie, who was a county recorder in the 1920s, a rare job for women in those days. Since wives weren&#039;t allowed to be buried with the soldiers, the Fleurs&#039; across-the-street arrangement was the closest they could get.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWoodland Ave.<br />Woodland Cemetery<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Historic East Village",
            "lat": "41.589682",
            "lon": "-93.611258",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Historic East Village</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589682,-93.611258\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The East Village is located east of the Des Moines River, near the capitol. The East Village was the original commerce area of Des Moines. There are plenty of attractions, food, music, museums, and a number historic sites.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t412 E 5th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.288.7995</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.eastvillagedesmoines.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Middlesex Plat Historic District",
            "lat": "41.589843",
            "lon": "-93.661651",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Middlesex Plat Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589843,-93.661651\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Middlesex Plat Historic District was an upper-middle-class neighborhood of two-story square houses and bungalows built between 1910 and 1923. Most of the square houses feature front gabled roofs and full width front porches, while the bungalows typically feature a gable roof with an offset front wing. A few houses in the area follow other architectural styles, including Tudor Revival, Colonial Revival, and Prairie Style. The district was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCenter St. to Woodland Ave., 31st St. to 35th St.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "North Lincoln Country School",
            "lat": "41.595073",
            "lon": "-93.548041",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-countryschool-northlincolncountryschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">North Lincoln Country School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.595073,-93.548041\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa State Fair Country School is a one room school house that was moved to the fairgrounds in 1969. It was originally the North Lincoln School, and was donated by a former graduate. The school is authentically furnished with a wood stove, desks fastened to the floor, a recitation bench and early primers.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefairgrounds.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Cultural Center",
            "lat": "41.594313",
            "lon": "-93.549083",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-culturalcenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cultural Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.594313,-93.549083\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cultural Center was built in 1949 and dedicated at the 1950 Fair. The building cost $417,000 to build, and was paid for entirely by Fair earnings. It was built in 1949. The building was built as the Girl’s 4-H Dormitory. It’s three floors of bunk bed cots and bathrooms were enough to accommodate 500 girls.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Livestock Pavilion",
            "lat": "41.594177",
            "lon": "-93.551583",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-livestockpavilion.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Livestock Pavilion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.594177,-93.551583\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Livestock Pavilion was the first major brick and steel structure built. It officially opened for the 1902 Fair and was used for stock judging, lectures and entertainment. It was used as the exclusive venue for stock shows until the Richard O. Jacobson Exhibition Center was completed in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Pioneer Hall",
            "lat": "41.595518",
            "lon": "-93.547474",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-pioneerhall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pioneer Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.595518,-93.547474\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa State Fair Board took possession of this land in June of 1886. They bought nearly 300 acres from Calvin Thornton. Between the time the Fair Board purchased the land in June and when the Fair opened in September, 67 buildings were constructed. Of those, Pioneer Hall is the only one that remains today. From this hill, this old building stands guard over the Fair. Since 1886, it has had several uses including poultry building, storage building and dormitory. It is now home to the Heritage Contests.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Rock Island Avenue",
            "lat": "41.594934",
            "lon": "-93.552071",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-rockislandavenue.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rock Island Avenue</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.594934,-93.552071\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Rock Island Avenue is so named because it was the route between the Rock Island rail depot – to the south – and the grandstand to the north.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Greenwood Park Plats Historic District",
            "lat": "41.588084",
            "lon": "-93.671248",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Greenwood Park Plats Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.588084,-93.671248\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Greenwood Park Plats Historic District was the site of the Iowa State Fair from 1879-1885. It was later platted for further development, contributing to the westward expansion of Des Moines&#039; residential area. It was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t39th St. to 42nd St., Grand Ave. to Center/Pleasant St.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ingersoll Place Plat Historic District",
            "lat": "41.586956",
            "lon": "-93.653104",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ingersoll Place Plat Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.586956,-93.653104\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ingersoll Place Plat was created in 1906, when cable car lines and sewer service were extended to the northwest side of Des Moines. The Colonial Revival architecture in this area illustrates how the square house and bungalow dominated residential design in Des Moines during the pre-World War I years. The district was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t28th St., Linden St. and High St.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Des Moines Renaissance Savery Hotel",
            "lat": "41.587436",
            "lon": "-93.622915",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-desmoinesrenaissancesaveryhotel.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines Renaissance Savery Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587436,-93.622915\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Renaissance Savery Hotel stands as an elegant architectural landmark in the heart of downtown Des Moines. The hotel has more than 200 guest rooms and 10,000 square feet of event space. It is centrally located in the downtown Des Moines business and entertainment district and is within walking distance of the Iowa Events Center, Wells Fargo Arena and Des Moines Performing Arts. The completion of the Savery Hotel in 1919 contributed to the introduction of the skyscraper hotel to Des Moines. Designed by H.L. Stevens and Company of Chicago, the hotel features Georgian Revival detailing, which is unusual for Des Moines’ commercial architecture. During World War II, the Women’s Army Auxiliary Corps of the U.S. Army occupied the entire building for use as an induction center, barracks, mess hall, and classrooms. More than 72,000 women were trained here for service during the war.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.514.4706</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://renaissancesavery.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Northwestern Hotel",
            "lat": "41.588114",
            "lon": "-93.612519",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Northwestern Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.588114,-93.612519\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1916-1917, the Northwestern Hotel is virtually unaltered both inside and out. It affords a unique view of the early twentieth century hotel and is a fine example of the Renaissance Revival. It is also representative and among the most unaltered work of Iowa’s leading architectural firm, Proudfoot, Bird, and Rawson. It is one of a handful of significant early hotels extant in the city and best illustrates that facet of Des Moines’ commerce. The hotel was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t321 E Walnut St.<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "4-H Exhibits Building (Poultry Building)",
            "lat": "41.592013",
            "lon": "-93.555292",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-4hexhibits.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">4-H Exhibits Building (Poultry Building)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592013,-93.555292\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The 4-H Building was dedicated at the Iowa Centennial Fair in 1939. That Fair commemorated the Iowa Territory’s organization. Originally, the building was used for Poultry Industries, but those exhibits were moved to a different location in 1965. The building was built as part of the Public Works Administration program at a cost of $125,000. The building is 49,000 square feet and constructed of masonry and steel. 4-H exhibits are showcased in the building during the State Fair.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cathedral Church of St. Paul",
            "lat": "41.588005",
            "lon": "-93.629079",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-cathedralchuchofstpaul.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cathedral Church of St. Paul</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.588005,-93.629079\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cathedral Church of St. Paul, also known as St. Paul’s Episcopal Church, was designed by the Des Moines architectural firm of Foster and Liebbe in the Gothic Revival style and was completed in 1885. It originally had a wooden steeple, but it was destroyed in a storm in the 1930s and was eventually replaced by a new structure with a steel core. The church has undergone a number of changes over the years, but still retains its architectural and historical integrity. It was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t815 High St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Des Moines Building",
            "lat": "41.587139",
            "lon": "-93.624794",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-desmoinesbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587139,-93.624794\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Des Moines Building was built in 1930 and is a combination of the Art Deco and Art Moderne styles of architecture. When the building was completed and occupied in 1931, the Des Moines Tribune stated &quot;The single largest building project of the year was the one million dollar Des Moines building.&quot; For most of the 20th century, the building provided office space for retail business including Hyman&#039;s News and Book Shop, Barbara&#039;s Bake Shop and Holmes Jewelry. The United Airlines Ticket Office was also located on the first floor to provide easy walk-in service. During World War II, the U.S. government leased space for the Internal Revenue Service, the U.S. Alcohol Tax Unit and the Office of Defense Transportation. In 2010, the City of Des Moines prevented a calamity when they obtained an emergency court order to prevent irreparable damage to the abandoned building. The city issued a Request for Proposal for the building&#039;s rehabilitation and the firm of Des Moines Developers LLC was selected in 2011. In 2013, the Des Moines Building was added to the National Register of Historic Places.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t405 6th Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Des Moines Western Railway Freight House",
            "lat": "41.587676",
            "lon": "-93.607812",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-desmoineswesternrailwayfreighthouse-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines Western Railway Freight House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587676,-93.607812\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Completed in early 1903, the Des Moines Western Railway Freight House is one of the few extant properties in Des Moines associated with interurban transportation. It is also a rare surviving example of a freight house, a once-common property type in the city. It was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t625 E Court Ave.<br />Des Moines, IA 50319<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Homestead Building",
            "lat": "41.587731",
            "lon": "-93.621555",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Homestead Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587731,-93.621555\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Homestead Building was built by James M. Pierce as a permanent home for his publishing operation. It was completed in 1893 and added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t303 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Liberty Building",
            "lat": "41.587534",
            "lon": "-93.625451",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-libertybuilding-4-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Liberty Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587534,-93.625451\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Liberty Building has been a landmark in downtown Des Moines since 1923. The 12 story high-rise was originally home to Bankers Life Insurance and WHO (AM) Radio. The building was rehabilitated in 2006 to house Hyatt Place Hotel, office space, and several condos. It was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t418 6th Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mahnke House",
            "lat": "41.587345",
            "lon": "-93.653468",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-mahnkehouse-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mahnke House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587345,-93.653468\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mahnke House was built by Fred W. Weitz in 1909 and was added to the National Register of Historic Places in 1983. It is a fine representation of the Prairie school of architecture, incorporating many characteristic elements of the style with traditional Prairie school materials.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2707 High St.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Murillo Apartments",
            "lat": "41.587363",
            "lon": "-93.638652",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-murilloapartments-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Murillo Apartments</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587363,-93.638652\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Completed in 1905, the Murillo Apartment building is an outstanding example of the &quot;flat building&quot;- a new architectural form emerging in Des Moines at the turn of the 20th century. The design is notable for its clean lines, warm colors, rich surface textures, and Classical Revival influences. In 2008, the entire building was moved from its original location at the intersection of 14th and High Streets to its current location on 16th Street so it could be preserved. The relocation project was covered by both local and national media and was even featured on the History Channel&#039;s &quot;Mega Movers&quot; program later that year. In 2009, the building was added to the National Register of Historic Places.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t611 16th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "World Food Prize Hall of Laureates",
            "lat": "41.587641",
            "lon": "-93.618871",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historymuseum-worldfoodprize.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World Food Prize Hall of Laureates</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587641,-93.618871\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The World Food Prize Hall of Laureates is a building dedicated to the World Food Prize and Dr. Norman E. Borlaug. The Hall of Laureates has a world-class museum to recognize great achievements in agriculture and fighting hunger, an educational facility featuring interactive displays on hunger and food security, and a conference center and event space available to other groups and organizations for their meetings and other activities. The building originally housed the Des Moines Public Library from 1903-2006. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.245.3783</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.worldfoodprize.org/hall\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Horse Barn",
            "lat": "41.592756",
            "lon": "-93.553331",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-horsebarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Horse Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592756,-93.553331\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Horse barn built in 1909 with major additions in 1912 and 1929. There are 453 box stalls in the building.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Sheep Barn",
            "lat": "41.592008",
            "lon": "-93.553492",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-sheepbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sheep Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592008,-93.553492\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1915, the legislature appropriated $14,000 for building a sheep pavilion. The Sheep Barn opened for the 1917 Fair. The building is notable for the detailed designs on the east side. There are 480 pens in the Sheep Barn.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Cattle Barn",
            "lat": "41.593044",
            "lon": "-93.550565",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-cattlebarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cattle Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.593044,-93.550565\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>A new cattle barn was opened for the 1914 Fair. It could accommodate 108 head of cattle and is still in use. After several expansions, the barn now has ties for 1,600 cows! There is no way to tell the story of the Fairgrounds without mentioning John Putney and the Blue Ribbon Foundation. Putney was a farmer from Gladbrook, and appointed the first executive director of the Blue Ribbon Foundation. For 20 years, he guided the foundation as they fundraised to renovate and preserve the State Fairgrounds. Putney was also a long-time cattle exhibitor, president of the Sale of Champions and beef superintendent. In 2013, the cattle barn was named for him and his family.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Home Federal Savings and Loan Association of Des Moines Building",
            "lat": "41.588162",
            "lon": "-93.625735",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-homefederalsavingsloanasociation-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Home Federal Savings and Loan Association of Des Moines Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.588162,-93.625735\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Home Federal Savings and Loan Association Building was designed by the renowned and highly influential architect Mies van der Rohe and completed in 1962. It is one of the first steel-and-glass Modern Movement buildings in Des Moines and is one of only two in the state designed by Mies van der Rohe. The Home Federal Savings and Loan Association of Des Moines was founded in 1936 by real estate broker Clyde Beals Fletcher and his son Jonathan Moss Fletcher. The creation of the association was made possible in part by the New Deal legislation that created the Federal Home Loan Bank Board and empowered it to regulate savings and loans and administer deposit insurance through the Federal Savings and Loan Insurance Corporation. The building was added to the National Register of Historic Places in 2016.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 Grand Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Oman Family Youth Inn",
            "lat": "41.592443",
            "lon": "-93.548556",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-youthinn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oman Family Youth Inn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592443,-93.548556\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built from 1939-1942 as a Works Progress Administration (WPA) project (at a cost of $4.89 per square foot), the Youth Inn is an outstanding example of Art Deco design. It was initially built as the Boys 4-H Dormitory. The Girls 4-H dorm built in 1949 was first used 1950 and is now the Patty and Jim Cownie Cultural Center.  Young women began sharing the now co-ed Youth Inn in 1981. The rounded corners and glass block on the 12-inch thick steel-reinforced concrete exterior walls exemplify the Art Deco style of architecture. During the fair, hundreds of young exhibitors stay at the “Hilton on the Hilltop,” where facilities include bunk beds, showers, a kitchen and a cafeteria with tiered seating.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Equitable Life Insurance of Iowa Building",
            "lat": "41.586711",
            "lon": "-93.625221",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-equitablebuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Equitable Life Insurance of Iowa Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.586711,-93.625221\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Designed by Proudfoot, Bird &amp; Rawson and completed in 1924, the Equitable Life Insurance of Iowa building is a significant landmark related to Des Moines as a center of the nation&#039;s insurance industry. This early 20th century skyscraper is designed in the Late Gothic Revival style and is 19 stories with a 4 story tower. The Equitable Life Insurance Company of Iowa was founded on January 21, 1867 by Frederick M. Hubbell, Jefferson S. Polk, Hoyt Sherman, Judge Phineas McCray, Benjamin Franklin Allen and six others. It was the first life insurance company west of the Mississippi River. In 1868 the company introduced the idea of mortgage insurance which made the company&#039;s fortune. As a requirement for receiving a loan, borrowers were required to purchase a life insurance policy. The Equitable&#039;s innovation helped the company&#039;s core investors, Midwest farmers, by providing the cash needed to purchase land and equipment. Frederick M. Hubbell became president of the company in 1888, beginning a period of prosperity, including a move in 1891 to the Youngerman Block in Courthouse Square. In 1921, Nollen Hubbell began his 25-year role as company president. He formed a  committee that included himself, Frederick C. Hubbell and Frederick W. Hubbell to develop plans for the construction of a building for the company. The company faced many challenges during the Great Depression. The Great Depression saw farmers in danger of losing their farms and crop and livestock prices hitting bottom, which led to the company diversifying its investments, led by F.W. Hubbell. Four more generations of Hubbells would lead the company until it was sold in 1998. In 2015, with the assistance of the State Historic Preservation Office of Iowa and the State Tax Credit Program, the building was re-purposed for commercial space on the first two floors and apartments on floors 3 to 19. It was added to the National Register of Historic Places in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t604 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Register and Tribune Building",
            "lat": "41.586594",
            "lon": "-93.627280",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-registertribunebuilding-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Register and Tribune Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.586594,-93.627280\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Register &amp; Tribune Building is located in the center of the western downtown business district. The building, designed by Proudfoot, Bird, and Rawson, is composed of three major sections: a fourteen-story tower with a rear brick wing built in 1918, a Streamlined Moderne L-shaped annex built in 1948, and a smaller Modernistic addition built in 1967. Additions and modifications to the building occurred throughout its lifetime, including a re-cladding of the tower with an International Style skin in 1961, as well as small additions in 1956 and 1978. The building also has two skywalk connections on the west and south elevations, which incorporate the building into the citywide skywalk system. The building was originally home to the Register and Tribune Company, which printed the Des Moines Register and the Des Moines Tribune until the sale of the Des Moines Register to Gannett Corporation in 1985. The newspaper continued to publish the Des Moines Register and occupy the building until 2013, when it moved to a smaller downtown office space. It was added to the National Register of Historic Places in 2016.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t715 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wilkins Building - Younker Brothers Department Store",
            "lat": "41.585607",
            "lon": "-93.626806",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-wilkinsyounkers-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wilkins Building - Younker Brothers Department Store</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585607,-93.626806\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1899, the original Younker Brothers Department Store building was constructed at the northwest corner of Walnut and 7th streets, occupying half the block along Walnut street. In 1908, Frederick M. Hubbell planned a new business block on the northeast corner of Walnut and 8th streets, adjacent to the Younker Brothers Department Store and known as the Wilkins Building. The first tenants were the Wilkins Department Store and Chapman Brothers Furniture Company. The fifteen-year lease for the tenant firms of the Wilkins Building expired on October 1, 1923. When the Wilkins Brothers Company declined to renew the lease, the unification of the Wilkins Building and Younker Brothers Department Store building was set in motion. The Wilkins Brothers Company liquidated its entire stock to Younkers and in mid-1924 the two buildings were united by the construction of a four-story bridge above the alleyway and an additional floor added to the Wilkins Building, that would become the location of the Younkers Tea Room. This made Younkers the first block-long department store in Iowa. It continued in business until 2006. On March 14, 2014, the Younker Brothers Department Store building experienced a catastrophic fire while in the process of a historic rehabilitation. The 1899 original Younkers Brothers Department Store building was nearly completely destroyed and along with the 1924 structure that connected the two buildings, were razed. The historic preservation of the badly damaged Wilkins Building continued with the assistance of the State Historic Preservation Office of Iowa and Historic Tax Credit Program. The work was completed with the historic character of the building largely restored. Both buildings were added to the National Register of Historic Places in 2010, with amendments in 2018 due to the fire.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t713 Walnut St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "G.A.R. Flagpole",
            "lat": "41.587588",
            "lon": "-93.600834",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-garflagpole.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">G.A.R. Flagpole</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587588,-93.600834\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 65 ft pole was donated to the state by the Ladies of the Grand Army of the Republic at their 1931 national convention. It is dedicated to the memory of the Grand Army of the Republic of Iowa (GAR).</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1111 E Court Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Scott&#039;s Grave",
            "lat": "41.587685",
            "lon": "-93.600871",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-monument-scottsgrave.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Scott&#039;s Grave</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587685,-93.600871\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1855, Willson Alexander Scott and other speculators donated the 10 acres of land that make up the State Capitol Grounds. Scott died in 1859, and was buried on the grounds, as were his wishes.</p>\t\t<p><em>A location in the collection, Capitol Monuments</em></p><p><em>The Capitol Complex grounds are graved with a number of monuments, statues and memorials that tell the story of Iowa&#039;s rich history and culture.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1111 E Court Ave.<br />State Capitol Complex<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://das.iowa.gov/capitol-complex-monuments\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hotel Kirkwood",
            "lat": "41.586136",
            "lon": "-93.622223",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-hotelkirkwood.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Kirkwood</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.586136,-93.622223\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hotel Kirkwood was built in 1930 and was added to the National Register of Historic Places in 2003. The building&#039;s sleek exterior, geometric detailing, and treatment of the crown reflect the influence of the Art Deco architecture style.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 4th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Des Moines Police Museum",
            "lat": "41.586017",
            "lon": "-93.614909",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines Police Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.586017,-93.614909\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Des Moines Police Museum is located on the 2nd floor of the Des Moines Police Station. The museum offers a look back at the history of the police department in Iowa. There are exhibits on unusual and antique weapons, old crime scene technology, interactive police sirens, and patches from different units and departments from other Iowa towns.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t25 E 1st St<br />Des Moines, IA 50315<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Ingersoll Theater",
            "lat": "41.586535",
            "lon": "-93.667401",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ingersoll Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.586535,-93.667401\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ingersoll Theater opened in 1940. In 1976, it was converted into a dinner theater that remained open until the theaters closing in 2004. There have been plans to restore the theater, but as of today, the theater remains vacant.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3709 Ingersoll Ave.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Court Avenue Bridge",
            "lat": "41.586085",
            "lon": "-93.616635",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-bridge-courtavebridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Court Avenue Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.586085,-93.616635\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The current bridge on Court Avenue over the Des Moines River was built from 1917-1918 by architect James B. Marsh and was added to the National Register of Historic Places in 1998. The original bridge at this location was the first bridge in the city to be built over the Des Moines River.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCourt Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowa-Des Moines National Bank Building",
            "lat": "41.585904",
            "lon": "-93.623692",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa-Des Moines National Bank Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585904,-93.623692\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa-Des Moines National Bank Building was built in 1930 and was added to the National Register of Historic Places in 1979. It was designed by the prominent Des Moines architectural firm of Rawson, Proudfoot, Souers, and Thomas in the Art Deco style.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t520 Walnut St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "U.S. Post Office",
            "lat": "41.586702",
            "lon": "-93.619197",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">U.S. Post Office</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.586702,-93.619197\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Originally built in 1908 with an addition in 1935, the U.S. Post Office is part of a concerted community plan to erect a governmental complex on the banks of the Des Moines River and was the focal point of the Federal Government participation in local government planning. It was designed by James Taylor of the U.S. Dept. of Treasury and was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2nd Ave. and Walnut St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Polk County Heritage Gallery",
            "lat": "41.586717",
            "lon": "-93.619174",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artmuseum-polkcountyheritagegallery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Polk County Heritage Gallery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.586717,-93.619174\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Polk County Heritage Art Gallery is a multi-use exhibition space for both artistic and historical exhibits.  It is a unique facility to contribute to the cultural development of Des Moines and Polk County and to complement existing educational and cultural institutions. The building was built as a United States Post Office and was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t111 Court Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.286.2242</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.polkcountyheritagegallery.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Des Moines Symphony Association",
            "lat": "41.585885",
            "lon": "-93.630316",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines Symphony Association</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585885,-93.630316\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The mission of the Des Moines Symphony Association is to enrich, educate and entertain our community by performing great orchestral music. Led by Music Director Joseph Giunta for the past 25 years, the Orchestra has established an outstanding national reputation as one of the country&#039;s leading regional orchestras, performing a regular series of Masterworks, Pops, Family, and Education Concerts, as well as performing for special events. With the establishment in 2003 of the Des Moines Symphony Academy, the organization is one of only a handful of American orchestras to sponsor an Academy of Music as an integral part of its core mission and the Symphony and Academy together are now the largest employer of professional artists in Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1011 Locust St.<br />The Temple for Performing Arts<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.280.4000</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://dmsymphony.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Temple for the Performing Arts (Masonic Temple of Des Moines)",
            "lat": "41.585927",
            "lon": "-93.630295",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-masonictemple.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Temple for the Performing Arts (Masonic Temple of Des Moines)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585927,-93.630295\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Now known as the Temple for Performing Arts, the Masonic Temple of Des Moines was constructed from 1911-1913 and was designed by prominent Des Moines architects Proudfoot, Bird, and Rawson. The Temple represented a significant architectural feat for the time, with two 4,000-square-foot ballrooms stacked one on top of the other in the center of the building. Over the years, the building has housed such tenants as the Maxwell automobile dealership and Des Moines Waterworks. The Temple was added to the National Register of Historic Places in 1997, but still faced the threat of demolition until the spring of 2001, when Harry Bookey and Pamela Bass-Bookey proposed a plan to restore the building. Their organization, Downtown Preservation Partners, renamed it the Temple for Performing Arts and transformed the building into a venue for performing arts and cultural entertainment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1011 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.321.8498</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.templeforperformingarts.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Swine Barn",
            "lat": "41.592046",
            "lon": "-93.550816",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-statefair-swinebarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Swine Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592046,-93.550816\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>When it was constructed, the Swine Barn was the largest agricultural structure in the world! It was a fine example of architectural technology. The roof profile is scientifically derived to provide superior lighting and ventilation. The long open windows at roof level and open exterior walls draw in fresh air. The roof covered 185,000 square feet of stalls, exhibition and two central show rings that could seat over 800!</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3000 E Grand Ave.<br />Iowa State Fairgrounds<br />Des Moines, IA 50317<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.262.3111</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowastatefair.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Senator Albert Baird Cummins House",
            "lat": "41.584023",
            "lon": "-93.650412",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-senatoralbertbairdcumminshouse-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Senator Albert Baird Cummins House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584023,-93.650412\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house, built around 1893, was home to Albert Baird Cummins. Cummins represented the Progressive wing of the Republican party as governor of Iowa and a U.S. Senator. The house was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2404 Forest Dr.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Repertory Theater of Iowa",
            "lat": "41.584217",
            "lon": "-93.645938",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-theater-repertorytheaterofiowa-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Repertory Theater of Iowa</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584217,-93.645938\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Repertory Theater of Iowa (RTI) was founded in 2004 by Joseph Leonardi, a Des Moines native who had spent the previous 15 years as an actor, director, and playwright in San Francisco. RTI tries to bring resident theatre professionals from the state of Iowa together to create works of theatre. In 2008, the Drama Workshop (Est. 1951) merged with RTI in order to preserve its 57-year history of producing classic dramatic works, and making RTI the leading producer of Iowa theatre.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2124 Grand Ave<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.979.0310</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.dmcirtc.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Bachelor Mural",
            "lat": "41.585257",
            "lon": "-93.619528",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-bachelormural.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bachelor Mural</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585257,-93.619528\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Van Holmgren, a full-time artist from Johnston, painted this mural for an episode of the reality TV program &quot;The Bachelor.&quot;  Iowa native Chris Soules was starred in the 19th season of the show. Holmgren created the mural while Soules was on a date in the restaurant. Soules revealed the mural to his date later that evening.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t208 Court Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Civic Center Historic District",
            "lat": "41.585746",
            "lon": "-93.617823",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Civic Center Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585746,-93.617823\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civic Center District of riverfront buildings was added to the National Register of Historic Places in 1988. The buildings and structures in this area are distinguished by their riverfront location and by their harmonious design, style, scale, use, and materials. The area also features environmental improvements, such as river walls, bridges, dams, and specialized sewer systems. These show the effect of a major, flood-prone river on urban development.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDes Moines River, Center St. Dam to Scott St. Dam<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hotel Fort Des Moines",
            "lat": "41.584694",
            "lon": "-93.629709",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-hotelfortdesmoines-6-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Fort Des Moines</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584694,-93.629709\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Designed by Proudfoot, Bird, and Rawson, Iowa&#039;s premier architectural firm, the Hotel Fort Des Moines illustrates the finest in early 20th century hotel design. When it opened in 1919 it was one of the largest hotels in the state and has since hosted a number of notable guests including Mae West, Jack Kennedy, and Charles Lindbergh. It was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 Walnut St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.243.1161</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.hotelfortdesmoines.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hotel Randolph",
            "lat": "41.585189",
            "lon": "-93.621903",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-hotelrandolph.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Randolph</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585189,-93.621903\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Hotel Randolph was constructed by the H.L. Stevens Company of Chicago, a major player in hotel construction across the nation during the early 20th century. The hotel was completed in 1912 and featured a reinforced concrete skeletal support system. This was one of the first buildings to use this construction technology in Des Moines, and it was publicized as Des Moines&#039; only &quot;absolutely fireproof hotel.&quot; It was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 Court Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bryn Mawr Apartments",
            "lat": "41.585204",
            "lon": "-93.656464",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-brynmawr-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bryn Mawr Apartments</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585204,-93.656464\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The city of Des Moines experienced increased demand for housing in the years leading up to and during World War I. As a result a concentration of apartment buildings began appearing west of downtown, particularly along Grand and Ingersoll Avenues. The extension of the city&#039;s streetcar system along Ingersoll Avenue and into expanding residential areas helped to facilitate the construction of housing, including apartment buildings. The Bryn Mawr Apartment building, designed by Des Moines architectural firm Proudfoot, Bird &amp; Rawson, is an example of a kitchenette-type apartment building constructed during this time period. The kitchenette-type apartment allowed builders to save on construction costs by each unit having a dual-use living room/bedroom (made possible by the use of a space-saving bed) with a dual-use dining room/kitchen. The Bryn Mawr apartment building opened in 1918 with 24 units, a service hall, telephone, ironing board and dedicated storage space for residents. It was added to the National Register of Historic Places in 2017.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t511 29th St.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Advance-Rumely Thresher Co. Warehouse",
            "lat": "41.585699",
            "lon": "-93.612981",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-advancerumelythresherco-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Advance-Rumely Thresher Co. Warehouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585699,-93.612981\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Advance-Rumely Thresher Co. building was built in 1919 and designed by the notable Des Moines architectural firm of Proudfoot, Bird &amp; Rawson. The Italian-Renaissance 3-story warehouse combines red and brown brick with high-styled decorative brick and stone work, included a double pedimented parapet with carved stone &quot;A&quot; and &quot;R&quot; inset. The 1919 structure replaced the original building that was constructed in 1901 and destroyed by fire in 1918. In 2017 the building underwent an adaptive reuse project that created 40,668 square feet of commercial space. It is a contributing structure to the East Des Moines Industrial Historic District that was listed on the National Register of Historic Places in 2017.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t130 E 3rd St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hippee Building (Midland Building)",
            "lat": "41.585305",
            "lon": "-93.624579",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-hippee-midland-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hippee Building (Midland Building)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585305,-93.624579\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1913, the 12-story office building was named for Des Moines businessman George B. Hippee. He was president of the Iowa Loan &amp; Trust Company, which owned the building and occupied it from 1914 to 1926. The Iowa Loan &amp; Trust Company was incorporated in 1872 and, due to its size, longevity and high profile, was the city&#039;s best-known loan and trust company until it closed in December 1926. The building is designed in the Beaux-Arts Classicism and Chicago Style of architecture, which was largely defined by architect Louis Sullivan. The building has light-colored masonry with terracotta details, lavish ornamentation, and classically derived features such as fluted columns that support a fully articulated entablature and cornice. The style-defining elements were carried into the interior where a variety of Italian marbles and terrazzo floors adorned the professional office building. When it was built, the Hippee Building was touted by developers as &quot;fireproof,&quot; a common but exaggerated claim in the early 20th century trend of &quot;skyscraper&quot; construction that used new technological developments such as steel frames, terracotta tile, brick and concrete. During this time, Des Moines also saw the construction of the six-story Flynn Building (1906), the 11-story Fleming Building (1907), the 10-story Hubbell Building (1913) and the 19-story Equitable Life Building (1924). The construction of these buildings represented a significant shift in both the construction practices and physical landscape in downtown Des Moines. It was added to the National Register of Historic Places in 2018.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 6th Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rawson Brothers Garage/Apperson Iowa Motor Company",
            "lat": "41.584229",
            "lon": "-93.635428",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-georgejones-lastermotorcompany-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rawson Brothers Garage/Apperson Iowa Motor Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584229,-93.635428\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Apperson Iowa Motor Company and Rawson Brothers Garage is located in the heart of Des Moines’ Auto Row, a former automobile sales, service, and manufacturing district. The two-story building was designed by Proudfoot, Bird, &amp; Rawson in the prominent architectural style of the period, the Commercial Style. This style is evident in the building’s symmetrical design, display windows, parapet walls, and Classical Revival details. The building was constructed from 1920 to 1921. The interior of the building was divided into separate zones and is still visible in the current layout of the building; the front showroom and mezzanine offices were located in the front of the building, while utilitarian work spaces occupied the rear.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1420 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George W. Jones Building/Laster Motor Company",
            "lat": "41.584187",
            "lon": "-93.635859",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-rawsonbrothersgarage-appersonmotorcompany-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George W. Jones Building/Laster Motor Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584187,-93.635859\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The George W. Jones Building, also known as the Laster Motor Company Building, is an automotive showroom and workshop in the former Auto Row district of Des Moines. This two-story building was designed by prominent architects Proudfoot, Bird, &amp; Rawson, and was constructed in 1920. Like many other extant Auto Row buildings, the G.W. Jones building is divided into two zones, with a formal showroom area and offices in the front of the building, and utilitarian work spaces in the rear of both stories. This was at least the third auto-related building that G.W. Jones had commissioned the architectural firm of Proudfoot, Bird, and Rawson to design for him, which is a testament to Jones’ preeminence in the commerce of Auto Row.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1430 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Studebaker Corporation Branch Office Building (West End Lofts)",
            "lat": "41.584205",
            "lon": "-93.636328",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-studebaker-westendlofts-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Studebaker Corporation Branch Office Building (West End Lofts)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584205,-93.636328\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Studebaker Corporation Branch Office Building is a three-story commercial building on the west end of downtown Des Moines, in the former Auto Row district. Designed by famous architects Proudfoot, Bird, and Rawson, the building is notable for its stature in an area dominated by one and two-story buildings during the Auto Row era. This height reflects the original purpose of the building; unlike others in the area, which were primarily auto garages and showrooms, the Studebaker building was a district office and distribution point for the Studebaker Automobile Company. The adjacent two-story brick building was acquired in 1937 and was incorporated into this building about 1948. Today, these buildings face the acclaimed Pappajohn Sculpture Park, a prominent feature of downtown Des Moines. It was added to the National Register of Historic Places in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1436-1442 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Lincoln Highway Museum",
            "lat": "42.031881",
            "lon": "-94.238479",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lincoln Highway Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.031881,-94.238479\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lincoln Highway Museum is preserves and displays the history of the Lincoln Highway. The Lincoln Highway crossed Iowa, and largely followed the route of modern US Highway 30. The Lincoln Highway opened in 1913 and was the first transcontinental automobile route, from Times Square in New York City to Lincoln Park in San Francisco. It gave a number of towns a huge surge in business with increased auto traffic, and has played an integral part in the history of Grand Junction.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 Main St. E<br />Grand Junction, IA 50107<br />Greene County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.386.3419</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Boyt Company Building",
            "lat": "41.585266",
            "lon": "-93.619677",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-boytcompanybuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Boyt Company Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585266,-93.619677\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Boyt Company Building was built around 1880 and added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210 Court Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "D. S. Chamberlain Building",
            "lat": "41.584695",
            "lon": "-93.634326",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-dschamberlainbuilding-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">D. S. Chamberlain Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584695,-93.634326\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The D.S. Chamberlain Building is a well-preserved example of an increasingly rare automotive garage that once comprised Des Moines’ Motor Row. It was built in 1917 by Des Moines architects Proudfoot, Bird, and Rawson and housed the Taylor Motor Car Company for many years. The building was added to the National Register of Historic Places in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1312 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Des Moines Saddlery Company Building",
            "lat": "41.585513",
            "lon": "-93.620998",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-desmoinessaddlerybuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines Saddlery Company Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585513,-93.620998\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in the mid-19th century, the Saddlery Company Building housed the offices and company of the Des Moines Saddlery. By 1901, the factory area was on the fifth floor and the wholesale boots, shoes, and rubbers firm was also located here. The building was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t307 Court Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Earle and LeBosquet Commercial Block",
            "lat": "41.585122",
            "lon": "-93.622136",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-earlelebosquetcommercialblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Earle and LeBosquet Commercial Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585122,-93.622136\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Earle and LeBosquet Block is an outstanding example of an architectural design by Charles E. Eastmen. Eastman was a noted late 19th and early 20th century architect in Des Moines whose work embraced many contemporary property types and architectural styles. The building was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t407 Court Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fleming Building",
            "lat": "41.585627",
            "lon": "-93.624672",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-flemingbuilding-4-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fleming Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585627,-93.624672\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fleming Building was a commercial office building of distinctive architectural and structural character designed by Chicago’s nationally-renowned architectural firm of D.H. Burnham and company. It is in the early Commercial style featuring Beaux Arts elements, and is one of the earliest steel-framed buildings in Iowa. It was completed in 1907, and has since been renovated into apartments. The building was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t218 6th Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hallett Flats-Rawson and Company Apartment Building",
            "lat": "41.585325",
            "lon": "-93.633849",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-hallettflats-rawsonapartmentbuilding-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hallett Flats-Rawson and Company Apartment Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585325,-93.633849\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hallett Flats-Rawson and Co. Apartment Building is a fine example of a multiple-function complex from the early twentieth century. It was designed in two phases by two of Des Moines’ most prominent architectural firms. George Hallett designed the Hallett Flats, and Proudfoot, Bird, and Rawson designed the apartment building. The complex was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1301 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hawkeye Insurance Company",
            "lat": "41.585419",
            "lon": "-93.621599",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-hawkeyeinsurancecompany.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hawkeye Insurance Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585419,-93.621599\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1869, the Hawkeye Insurance Building is probably the oldest commercial structure in downtown Des Moines retaining its basic integrity. Until the early 20th century, this building was the headquarters of the Hawkeye Insurance Company, the first successful casualty insurance company in Des Moines that sparked a boom in this field. It was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t209 4th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hubbell Building",
            "lat": "41.584926",
            "lon": "-93.628481",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-hubbellbuilding-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hubbell Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584926,-93.628481\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hubbell Building was completed in 1913 and added to the National Register of Historic Places in 2004. It is a 10-story, steel framed building covered in brick and was designed by the prominent Des Moines architectural firm Proudfoot, Bird, and Rawson. The building is one of many products in Des Moines of the Hubbell real estate dynasty and its business interests.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t904 Walnut St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Polk County Courthouse",
            "lat": "41.584679",
            "lon": "-93.623475",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-polkcountycourthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Polk County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584679,-93.623475\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1906, the Polk County Courthouse is one of the largest courthouses in Iowa, and also one of the most noteworthy architecturally. Of the handful of Beaux Arts courthouses remaining in the state, the Polk County courthouse most clearly exhibits the stylistic characteristics of this turn-of-the-century form. It was built and designed by W.T. Proudfoot and G.W. Bird of Des Moines, and was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6th Ave. and Mulberry St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "R. A. Crawford House",
            "lat": "41.584827",
            "lon": "-93.647507",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-racrawfordhouse-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">R. A. Crawford House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584827,-93.647507\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Crawford House was built in 1896 and is an example of the type of home built for the successful &quot;self-made man&quot; at the turn of the century. Crawford was president of the Valley Bank in Des Moines and hired the architecture firm of Liebbe, Nourse, and Rasmussen to build a house that would exhibit his wealth. It is just one of a group of large residences built along Grand Avenue around the same time. The house was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2203 Grand Ave.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Seth Richards Commercial Block",
            "lat": "41.585012",
            "lon": "-93.620687",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-sethrichardscommercialblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Seth Richards Commercial Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585012,-93.620687\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Seth Richards Commercial Block illustrates the redevelopment of Court Avenue from a retail section of downtown to the city&#039;s wholesale district. The building is made up of three modular units, demonstrating the Victorian efficiency in the design of a commercial structure. It was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300-310 Court Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Taft-West Warehouse",
            "lat": "41.585125",
            "lon": "-93.620071",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-taftwestwarehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Taft-West Warehouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585125,-93.620071\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Taft-West Warehouse is a fine, surviving example of a wholesale house, a once common property type during the early 20th century in the Court Avenue district of Des Moines and is an example of the Commercial style of architecture as practiced in Des Moines during this time. The building was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t216 Court Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Warfield, Pratt and Howell Company Warehouse",
            "lat": "41.585527",
            "lon": "-93.618175",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-warfieldpratthowellcompanywarehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Warfield, Pratt and Howell Company Warehouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585527,-93.618175\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Warfield, Pratt, and Howell Company is a good example of turn of the century warehouse construction. It was built in 1901 and occupies a prominent Des Moines riverside location, serving as a key visual landmark and an anchor for the historic Court Avenue area. The warehouse was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Court Ave.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Youngerman Block",
            "lat": "41.585365",
            "lon": "-93.621963",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-youngermanblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Youngerman Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585365,-93.621963\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Youngerman Block was built in 1876 by Conrad Youngerman, an immigrant and pioneer stonemason in Des Moines during the mid-19th century who quickly became one of the city&#039;s premier contractor-builders. This building is a rare surviving example of his work and was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 4th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Clemens Automobile Company",
            "lat": "41.584093",
            "lon": "-93.629443",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-clemensbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clemens Automobile Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584093,-93.629443\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clemens Automobile Company was a successful firm that operated from 1909 until 1923. The building is a well-preserved example of the automobile department store, a multi-storied all-in-one automobile sales and service facility that was soon replaced by smaller and more horizontally-oriented auto strip salesrooms and garages. It was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 10th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Crane Building",
            "lat": "41.583301",
            "lon": "-93.636085",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-cranebuilding-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Crane Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583301,-93.636085\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Crane Building was designed by the Des Moines architectural firm of Sawyer and Watrous and built in 1916. It was listed on the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1440 Walnut St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Grocers Wholesale Company Warehouse",
            "lat": "41.583037",
            "lon": "-93.627778",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-grocerswholesalecompany.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grocers Wholesale Company Warehouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583037,-93.627778\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grocers Wholesale Company Warehouse was Iowa&#039;s only statewide cooperative grocery warehouse, and may have been the first statewide organization of its kind in the country. The company enabled independent grocers in a trade area that included parts of four states to survive and compete against chain stores. This warehouse was the company&#039;s first permanent facility and was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t22 9th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Herndon Hall",
            "lat": "41.583929",
            "lon": "-93.643845",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-herndonhall-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Herndon Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583929,-93.643845\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Herndon Hall, also known as the Bergmann Mansion, was built in 1881 for attorney Jefferson Polk and named after his wife, Julia Herndon. The house was designed by the Des Moines architectural firm of Foster and Liebbe in the Queen Anne style. Throughout its history, it has been home to three bishops of the Diocese of Des Moines, a clothing store, and the national headquarters for Better Homes and Gardens Real Estate Service. The house was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2000 Grand Ave.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Herring Motor Car Company",
            "lat": "41.583282",
            "lon": "-93.629224",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-herringmotorcarcompany.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Herring Motor Car Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583282,-93.629224\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Herring Motor Car Company Building, now known as the 10th Street Lofts, is a six-story brick structure built in 1913. It was designed by the prominent Des Moines architectural firm of Proudfoot, Bird, and Rawson in the Classical Revival style. The building was originally home to Clyde L. Herring&#039;s automobile business which was building 32 Ford automobiles a day by 1915. It was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 10th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "National Biscuit Company",
            "lat": "41.583066",
            "lon": "-93.629214",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-nationalbiscuitcompany-herring-standardglasspaint-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">National Biscuit Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583066,-93.629214\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Designed by Proudfoot, Bird, and Rawson, a prominent Iowa architecture firm, the National Biscuit Company Building was the first substantial structure on 10th Street when it opened in 1906. In 1995, it was converted into loft apartments, and the building was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1001 Cherry St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rumely-Des Moines Drug Company Building",
            "lat": "41.583248",
            "lon": "-93.621307",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-rumelydesmoinesdrugcompany-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rumely-Des Moines Drug Company Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583248,-93.621307\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Wholesaling of drugs became a major commercial activity in the first half of the twentieth century. The Des Moines Drug Company (1897-1970) achieved a premier position in the regional distribution of products to more than 1,000 local pharmacies across Iowa. The Rumely-Des Moines Drug Company Building was added to the National Register of Historic Places in 1989.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t104 SW 4th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Standard Glass and Paint Company",
            "lat": "41.583538",
            "lon": "-93.629263",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-standardpaintandglassbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Standard Glass and Paint Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583538,-93.629263\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Standard Glass and Paint Company was Des Moines&#039; leading wholesale/retail supplier of a broad range of building and remodeling materials and supplies. It was in operation from 1903 through 1979 and was the leader in its sector, eventually becoming a significant regional wholesale provider across the state. The building was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t112 10th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "West Chester",
            "lat": "41.583546",
            "lon": "-93.664553",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Chester</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583546,-93.664553\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>West Chester House was built in 1901 by William George Rantoul. It exemplifies the influence of Richard Shaw and predates other local examples of the style by a quarter of a century. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3520 Grand Ave.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mack-International Motor Truck Corporation Building",
            "lat": "41.583449",
            "lon": "-93.631703",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-mackinternationalmotortruck-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mack-International Motor Truck Corporation Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583449,-93.631703\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Standing in the heart of “Auto Row,” a former automobile sales, service, and manufacturing district, is the Mack-International Motor Truck Corporation Building. Built and owned by J.E. Lovejoy in 1924, the building was designed for the needs of Mack International. An annex was constructed in the 1940s for industrial work areas and office spaces. The addition of this annex makes the building nearly a perfect square. The “Auto Row” district of Des Moines began in the 1910s when the automobile industry moved into the “West End” residential district. This area, now known as the “Western Gateway,” has seen the removal of many Auto Row buildings, making the Mack-International building a rare surviving building. It was added to the National Register of Historic Places in 2016.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t121 12th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Walnut Tire and Battery Co. - Globe Publishing Company Building",
            "lat": "41.583769",
            "lon": "-93.635852",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-walnuttirebattery-globepublishing-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Walnut Tire and Battery Co. - Globe Publishing Company Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583769,-93.635852\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Walnut Tire and Battery Company - Globe Publishing Company Building is located in the former automobile sales, service, and manufacturing district known as Auto Row. The two-story building was constructed in 1925, and an addition doubled the size of the building in 1928. The building was constructed for multiple uses: the first floor was designed for auto-related businesses, while the second floor was designed for publishing and printing. This makes the building an important feature of the former Auto Row, as its interwar multiple-tenant design is unusual for the district. It was added to the National Register of Historic Places in 2016/2017.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1417-1425 Walnut St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "F.W. Fitch Company Soap Plant",
            "lat": "41.583089",
            "lon": "-93.637031",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-fitchbuilding-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">F.W. Fitch Company Soap Plant</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583089,-93.637031\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>F.W. Fitch began manufacturing shampoo in 1898 in Boone, Iowa, and won many awards in his early years in business that elevated his status in the marketplace. In 1915, he purchased land in Des Moines to built a new plant. The F.W. Fitch Company dominated much of the shampoo industry in the United States from the 1920s to 1940s. The plant included the F.W. Fitch Building (main building), Soap Plant, Soap Plant Annex and Tunnel. The Soap Plant was built in 1929 and allowed the firm to produce its own soap. At its peak, the company employed 400 workers prior to a rapid decline due to loss of contracts and investing too much in a Sunday evening radio program on the National Broadcasting Company called &quot;Fitch&#039;s Bandwagon.&quot; The F.W. Fitch Company Historic District, including the Soap Plant, was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1514 Walnut St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "F.W. Fitch Company Historic District",
            "lat": "41.583539",
            "lon": "-93.636672",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">F.W. Fitch Company Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583539,-93.636672\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>F.W. Fitch began manufacturing shampoo in 1898 in Boone, Iowa, and won many awards in his early years in business that elevated his status in the marketplace. In 1915, he purchased land in Des Moines to built a new plant. The F.W. Fitch Company dominated much of the shampoo industry in the United States from the 1920s to 1940s. The plant included the F.W. Fitch Building (main building), Soap Plant, Soap Plant Annex and Tunnel. The main building was the first constructed in the district in 1917. The main building as included in what was known as the &quot;North Plant&quot; where several non-extant buildings were also located. The Soap Plant was built in 1929 and allowed the firm to produce its own soap. At its peak, the company employed 400 workers prior to a rapid decline due to loss of contracts and investing too much in a Sunday evening radio program on the National Broadcasting Company called &quot;Fitch&#039;s Bandwagon.&quot; The F.W. Fitch Company Historic District was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 15th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Terrace Hill",
            "lat": "41.583211",
            "lon": "-93.649204",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-terracehill.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Terrace Hill</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583211,-93.649204\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Terrace Hill was built from 1866-1869 by Benjamin Franklin Allen, Iowa&#039;s first millionaire. The three floor, eight-acre mansion was owned by the Hubbell family until 1976, when it was sold to the state to become the official governor&#039;s residence. The house has two floors used for tours and a museum, while the third and basement floors are used for the Governor and their family. It was added to the National Register of Historic Places in 1972.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2300 Grand Ave.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.3604</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.terracehilliowa.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Former Des Moines Fire Department Headquarters (Des Moines Social Club)",
            "lat": "41.583895",
            "lon": "-93.628245",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-desmoinesfiredeptheadquarters-desmoinessocialclub-viaductgallery.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Former Des Moines Fire Department Headquarters (Des Moines Social Club)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583895,-93.628245\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Des Moines Fire Department Headquarters, Fire Station No. 1 and Shop Building was built in 1937 in a Streamlined Moderne style with Art Deco motifs designed by notable Des Moines architectural firm, Proudfoot, Rawson, Brooks and Borg. \r\n\r\nIn the 1930s the Des Moines Fire Department faced twentieth-century firefighting challenges while headquartered in a dark and dusty late-nineteenth-century building constructed to house horses and horse-drawn apparatus. Motorized fire trucks of the day were growing wider, longer, and taller. Traffic around the old headquarters had become congested, lengthening response time. New recruits and seasoned professionals needed updates and practice in how to handle the ever-changing technical aspects of life-saving and controlling fire in a city landscape filled with fire risks unimaginable in earlier years - from skyscrapers and crowded movie theaters to fuel-laden gas stations and large-scale industrial operations. A 1933 survey by the Des Moines Fire Department by the National Board of Fire Underwriters published a report that led to the construction of the new facility, funded in part by a PWA grant. The City of Des Moines Fire Department vacated the headquarters complex in March of 2013.\r\n\r\nThe building now houses the Des Moines Social Club, a nonprofit multidisciplinary arts organization. The Des Moines Social Club’s Viaduct Gallery exhibits works by emerging local, regional, national, and international artists. The theater at the Des Moines Social Club (901 Cherry Street) is a black box theater for theater, film, music, dance and much more.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t900 Mulberry St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://desmoinessocialclub.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Des Moines Art Center",
            "lat": "41.583927",
            "lon": "-93.681522",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artmuseum-desmoinesartcenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines Art Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583927,-93.681522\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Des Moines Art Center is home to an extensive collection of paintings, sculpture, modern art, and mixed media. The collection includes works by many well-known artists, including Andy Warhol, Henri Matisse, Claude Monet, Georgia O&#039;Keeffe, Mary Cassatt, Auguste Rodin, Grant Wood, Eva Hesse, and Jasper Johns. The museum&#039;s facility is a work of art in its own right. The original structure was designed in a combination of Art Nouveau and Art Deco styles by Eliel Saarinen and was completed in 1948. In 1966, an additional wing was designed in a Modernist style by I.M. Pei, and a third wing designed by Richard Meier was added in 1985. The building was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4700 Grand Ave.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.277.4405</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.desmoinesartcenter.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-ballrooms.png",
            "title": "Val Air Ballroom",
            "lat": "41.585313",
            "lon": "-93.706613",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-ballrooms.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Val Air Ballroom</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585313,-93.706613\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1939 the Val Air was opened by Mr. Tom Archer on property purchased from the Wilson Tire Company. It first opened as an open air dance pavilion, thus the name Val Air, and was later changed to the enclosed structure in 1954, that you see today. It was a part of a chain Archer owned with ballrooms in such locations as Des Moines, Cedar Rapids, Marion, Creston, Sioux City all in Iowa, Dell Rapids and Sioux Falls in South Dakota, Omaha, Nebraska and St. Joseph, Missouri. The Val Air was the &quot;King&quot; of Des Moines ballrooms in the 1930s and 1940s, drawing the likes of Glen Miller, Louis Armstrong, and the ever popular Lawrence Welk. With the dawning of the rock era, all the top names played at the Val Air. From Roy Orbison to The Everly Brothers, to the Ventures, The Trashmen and the Fabulous Flippers. They all called the Val Air their &quot;home base&quot; in Des Moines when traveling the Midwest ballroom circuit.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 Ashworth Rd.<br />West Des Moines, IA 50265<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Owl&#039;s Head Historic District",
            "lat": "41.581629",
            "lon": "-93.655786",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-owlsheadhistoricdistrict-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Owl&#039;s Head Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.581629,-93.655786\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built between 1890 and 1915 and added to the National Register of Historic Places in 1978, the Owl&#039;s Head Historic District is significant for several reasons. First, it is a clear manifestation of the &quot;streetcar suburb&quot; phenomenon common between 1880 and 1920. Second, the district is a cohesive unit, displaying homogeneity of spacing, scale, mass, materials, and design. The district also displays the work of severally prominent local architects and architecture firms.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRidge Rd., Forest Dr., 28th St., 29th St.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Southeast Water Trough",
            "lat": "41.582867",
            "lon": "-93.600984",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Southeast Water Trough</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.582867,-93.600984\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Southeast Water Trough is located in Cohen Park in Des Moines. It was built in 1906 and is made of granite. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tSE 10th St. and Scott Ave.<br />Sam Cohen Park<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Jay Norwood and Genevieve Pendleton Darling House",
            "lat": "41.582215",
            "lon": "-93.648732",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-jaynorwoodandgenevievependletondarlinghouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jay Norwood and Genevieve Pendleton Darling House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.582215,-93.648732\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built in 1926 and was home to Jay Norwood Darling, better known as Ding Darling, one of the legendary figures of journalism and of the conservation movement. As a journalist, Darling’s editorial cartoons were syndicated in over 100 newspapers nationwide, and he was twice awarded the Pulitzer Prize. As a conservationist, he awakened the nation to its vanishing natural resources and initiated many lasting conservation programs. Darling’s home was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2320 Terrace Rd.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Byron and Ivan Boyd House",
            "lat": "41.581108",
            "lon": "-93.674573",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Byron and Ivan Boyd House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.581108,-93.674573\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Boyd House was designed by Byron Bennett Boyd and embodies the distinctive characteristics of Tudor Revival Style residential architecture. Boyd, who lived in the house from 1924-1925, was a well-known architect and artist in Des Moines. He designed several prominent buildings in central Iowa, including the Insurance Exchange Building, the Salisbury House, and the Ralph Rollins estate. As an artist, Boyd traveled and painted in over 31 countries, exhibiting his artwork extensively across the United States. He also served as the head of Drake University’s Art Department. The house was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t304 42nd St.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Sylvan Theater Historic District (Greenwood Park Outdoor Theater)",
            "lat": "41.581009",
            "lon": "-93.680291",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sylvan Theater Historic District (Greenwood Park Outdoor Theater)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.581009,-93.680291\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sylvan Theater Historic District, also known as the Greenwood Park Outdoor Theater, is an example of the outdoor theater movement of the 1930s. It was designed by Des Moines landscape architect Francis Asbury Robinson and was constructed in 1931. The first production took place on June 26, 1931, and was a performance of a play called Nights of Romance. The theater is still in use as a performance venue and was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t45th St., S of Grand Ave.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hawkeye Transfer Company Warehouse",
            "lat": "41.580717",
            "lon": "-93.624333",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/polk-nhr-hawkeyetransfercompanywarehouse-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hawkeye Transfer Company Warehouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.580717,-93.624333\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hawkeye Transfer Company Warehouse, also known as the Rocket Transfer building, was built by Frederick Hubbell, who founded what would become Hubbell Realty Co. The building has been converted into loft apartments, still owned by Hubbell Realty Co. It was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t702 Elm St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hubbell Warehouse",
            "lat": "41.580432",
            "lon": "-93.621499",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hubbell Warehouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.580432,-93.621499\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hubbell Warehouse was designed by the prominent Des Moines architecture firm Proudfoot, Bird, and Rawson and built in 1913. The building was one of the earliest in Des Moines to be constructed with a skeletal support system of reinforced concrete. It was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t340 SW 5th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Schmitt and Henry Manufacturing Company",
            "lat": "41.580394",
            "lon": "-93.624906",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Schmitt and Henry Manufacturing Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.580394,-93.624906\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Schmitt and Henry Manufacturing company is a complex of three buildings in downtown Des Moines. It was built from 1901-1914 to house the Schmitt-Henry furniture manufacturing business. The complex was purchased by Hubbell Realty in 1994 and plans to convert the buildings into loft apartments were approved in 2009. It was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t309 SW 8th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Salisbury House and Gardens",
            "lat": "41.579434",
            "lon": "-93.671695",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-salisburyhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Salisbury House and Gardens</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.579434,-93.671695\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Cosmetic industry dynamo, Carl Weeks, set out to build a home similar to the Kings House in Salisbury, England. Ground was broken for the house in 1923, and construction took five years. The Weeks family lived in the home until 1954. During the late 1990s, the house, grounds and collections were purchased by Salisbury House Foundation. The property was converted into a historic house museum. Thousands visit each year to see the architecture and extensive collections of artwork, rare books and artifacts. The Salisbury House was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4025 Tonawanda Dr.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.274.1777</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://salisburyhouse.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Southwest 5th Street Bridge",
            "lat": "41.577029",
            "lon": "-93.619164",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Southwest 5th Street Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.577029,-93.619164\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Southwest 5th Street bridge is a three-span through truss bridge over Raccoon River in Des Moines. It was built in 1898 and was closed to traffic in 1993. The bridge was rehabilitated for pedestrian use in 1998, the same year it was added to the National Register of Historic Places.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tSW 5th St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Linden Heights Historic District",
            "lat": "41.575549",
            "lon": "-93.675723",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Linden Heights Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.575549,-93.675723\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This plat is the earliest and largest true curvilinear residential plat in Des Moines. The roadways were integrated into the contours of the existing ground surface and the forest canopy was retained. The plat&#039;s design features small parkways and decorative entry gates and the architecture exemplifies the residential styles popular in Des Moines from 1912-1956. The district was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tFoster Dr., Glenview Dr., Woodlawn, Park Hill Dr., West of SW 42nd St.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Wilson Brewer Memorial Park",
            "lat": "42.459371",
            "lon": "-93.815448",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-historymuseum-wilsonbrewermemorialpark-12.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wilson Brewer Memorial Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.459371,-93.815448\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Wilson Brewer Park is a museum and information center in Webster City. The museum has numerous historic buildings that have moved to the site including the Mulberry Center Church, Illinois Central Railroad Depot, Harmony Center School, Wilson Brewer/Alexander Groves Log Cabin, Jamison Log Cabin and the first Hamilton County Courthouse. Also located in the park is the Trails End Cemetery, where the Wilson Brewer family is interred.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t220 Ohio St.<br />Webster City, IA 50595<br />Hamilton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.297.0273</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.webstercity.com/departments/wilson_brewer_park/index.php#.U59TiJgo6Uk\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Colfax Historical Society Community Center and Museum",
            "lat": "41.683689",
            "lon": "-93.246032",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jasper-historymuseum-colfaxhistoricalsocietymuseumandcommunitycenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Colfax Historical Society Community Center and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.683689,-93.246032\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Colfax Historical Society is an organization dedicated to preserving and presenting the history of the Colfax area. Their museum is in a recently constructed community center.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1720 IA Hwy. 117<br />Colfax, IA 50054<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.674.4406</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Italian-American Cultural Center",
            "lat": "41.570376",
            "lon": "-93.613226",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Italian-American Cultural Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.570376,-93.613226\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Italian-American Cultural Center is a place that promotes, provides, and preserves Italian culture in Des Moines. It has classes on cooking, language, and dancing. It also shows movies in Italian. The Italian-American Cultural Center provides opportunities for people, Italian or not, the opportunity to learn about Italian culture.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1961 Indianola Ave.<br />Des Moines, IA 50315<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.244.4672</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "City Hall and Fire Station",
            "lat": "41.570822",
            "lon": "-93.708733",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">City Hall and Fire Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.570822,-93.708733\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built by an unknown builder and architect in 1905, the Valley Junction/West Des Moines City Hall and Fire Station was a manifestation of the town planning process which directed the expansion of this small railroad community. The building was in use as a city hall until 1952. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t137 5th St.<br />Historic Valley Junction<br />West Des Moines, IA 50265<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Colfax Spring City Commercial Historic District",
            "lat": "41.677922",
            "lon": "-93.245493",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jasper-nhr-colfaxspringcity-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Colfax Spring City Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.677922,-93.245493\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Near the western edge of Jasper County, the small community of Colfax with about 2,000 residents was originally developed as a railroad and farm-to-market town in the 1860s. Railroad pioneer Abel Kimball of Davenport purchased land at the point of the rail stop and, nearly simultaneously with the completion of the Newton-to-Colfax rail line, filed a plat for the Village of Colfax on July 22, 1867. The first Chicago, Rock Island, and Pacific Railroad trains ran from Newton into Colfax Station later that same month. In 1875, coal prospectors accidentally discovered mineral water in the area. The lucky find turned Colfax into a hot spot for mineral water baths and treatments for a host of diseases and maladies, such as rheumatism and other chronic complaints.\r\n\r\n“Awash in mineral water, Colfax saw rapid expansion in hotels and a move toward brick construction, along with additional well drilling and the first dedicated bottling works within town limits,” according to the district’s National Register nomination. “Most hotels built during this era drilled wells to provide mineral water for drinking and therapeutic baths.” In 1890, the Mason House created a park with a mineral water spring across the street from the hotel, adjoining the railroad depot. (Today this is called Mineral Springs Park.) By the turn of the 20th century, nearly 20 mineral water wells had been drilled, and hotels and sanitariums together boasted more than 1,000 rooms. During the next couple of decades, mineral water baths brought visitors to the community, which prompted a building boom and a thriving tourism business.\r\n\r\nRenowned architectural firms and contractors such as Proudfoot, Bird &amp; Rawson; F. A. Harris; and Elmer Fitzgerald brought their expertise to Colfax. Many results of that building boom still exist, including the Colfax Telephone Exchange Building at 29 W. Howard (1911), the Tudor Revival style Colfax Public Library (1912-1913), the Methodist church (1914), the Davis &amp; Davis / Boss Meat Market double storefront (1915), the Everett &amp; Baker Ford Garage (1920), and the First Presbyterian Church (1923). In addition, many civic, fraternal, and religious organizations used the district’s commercial buildings for social and cultural activities, including the Masons, Knights of Pythias, Odd Fellows, Redmen, American Legion, Subscription Library Association, PEO and the Colfax Woman’s Club.\r\n\r\nBy the mid-20th century, their activities prompted building owners and developers to construct or remodel new meeting halls near the commercial district, which further shaped the history of Colfax. The district was added to the National Register of Historic Places in 2018.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Front St.<br />Colfax, IA 50054<br />Jasper County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Lyric Theater",
            "lat": "41.570973",
            "lon": "-93.708777",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lyric Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.570973,-93.708777\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lyric Theater was built in 1905 in Valley Junction. The theater shared its space with the Lyric Hotel in the floors above it. The theater had one screen and could hold 500 people. The theater closed in the 1950s, and the original building is now operated by the Theatrical Shop.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1455th St.<br />West Des Moines, IA 50265<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Historic Valley Junction",
            "lat": "41.571096",
            "lon": "-93.708935",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historicdistrict-valleyjunction.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Historic Valley Junction</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.571096,-93.708935\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Valley Junction was established in 1846, incorporated in 1893 and renamed West Des Moines in 1938. As the original downtown district, Historic Valley Junction is the community&#039;s heart and soul. Historic Valley Junction is home to over 150 specialty shops, restaurants, and services and the single largest collection of independent businesses in Greater Des Moines. Don’t miss the Historic Valley Junction Welcome at Historic City Hall, 137 5th Street, listed on the National Register of Historic Places and also LEED Platinum Certified.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5th St. and Surrounding Area<br />West Des Moines, IA 50265<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.222.3642</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://valleyjunction.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Peters Barn",
            "lat": "41.760090",
            "lon": "-94.146040",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-barn-petersbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Peters Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.760090,-94.146040\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Henry and Florence Spintig purchased this farm around 1903. The main buildings on the home site were present at that time. The barn has been used for farming by the same family since 1934. The barn is interesting because it has cut out squares incorporated into the beams. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t19077 H Ave.<br />Perry, IA 50220<br />Dallas County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Kendall Young Library",
            "lat": "42.465169",
            "lon": "-93.819867",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-nhr-kendallyounglibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kendall Young Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.465169,-93.819867\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kendall Young Public Library was completed in 1905. It is named for Kendall Young, a Webster City resident who left his estate, valued at $150,000, to the city for the establishment and maintenance of a free public library. It was built in the Beaux Arts style and features gold marble columns from Africa, terrazzo and mosaic floors, stained glass windows, and a stained glass dome. The building has since been expanded, but has retained the historical integrity and architectural style of the original. It was added to the National Register of Historic Places in 1983. The library has two important artifact collections. The Foster Doll Collection includes 170 dolls and was donated to the library in 1944 by Arch Foster and his son James after the death of Mr. Foster&#039;s wife Evelyn. Mrs. Foster had collected the dolls during the last 15 years of her life. The collection includes many types of dolls including Frozen Charlottes, dolls from the Kate Greenaway series, waxed head dolls, papier-mâché dolls and parian dolls. The oldest doll is a waxed head doll from 1800. The Van Ness Native American Collection belonged to Mr. Van Ness who lived in Hamilton County from 1882-1895. When his wife died he moved to El Reno, Oklahoma, and began to collect Native American artifacts. In 1898 Mr. Van Ness offered &quot;curios of Indian work&quot; to Kendall Young Library and asked that the library provide for their preservation. Forty-two items collected by Mr. Van Ness are on display at the library. An Arapaho dance bustle ca. 1875 is the oldest item in the collection. In addition, the library is home to the Hamilton Heritage Hunters Genealogical Society and houses a collection of local history and research materials.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1201 Willson Ave.<br />Webster City, IA 50595<br />Hamilton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.832.9100</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.kylib.org/KendallYoung/default.asp\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "William Oakland Round Barn",
            "lat": "42.486221",
            "lon": "-93.645573",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-barn-nhr-williamoakland.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William Oakland Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.486221,-93.645573\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The William Oakland Round Barn was built in 1910. It was constructed of clay tiles and features a conical roof, two dormers, and a central silo. This barn was unique in its function as both a hog and sale barn. The ground level was used for pig farrowing and the sale ring was on the upper level. The barn was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2657 210th St.<br />Blairsburg, IA 50034<br />Hamilton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "James Norman Hall House",
            "lat": "41.678648",
            "lon": "-93.239197",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jasper-nhr-jamesnormanhallhouse-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James Norman Hall House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.678648,-93.239197\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>James Norman Hall, who co-wrote the novel &quot;Mutiny On the Bounty,&quot; grew up in this home. He lived in Colfax until 1906, when he left to attend Grinnell College, but he returned home in the summers. Early in the First World War, he went to England to pursue a literary career and ended up posing as a Canadian to enlist in Lord Kitchener&#039;s volunteer army to fight against the Germans. After his service, he returned home to Colfax and wrote his first book, &quot;Kitchener&#039;s Mob.&quot; Hall re-enlisted in the armed services and become a decorated hero in the U.S. Flying Service. After the war, Hall sought a slower-paced place to live and settled in Tahiti, where he died in 1951. The James Norman Hall House, built between 1879 and 1882, was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t416 E Howard St<br />Colfax, IA 50054<br />Jasper County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Webster City Post Office",
            "lat": "42.468255",
            "lon": "-93.819598",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-nhr-webstercitypostoffice.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Webster City Post Office</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.468255,-93.819598\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Webster City Post Office, established in 1855, was the first permanent office in Webster City. It is a fine example of a small town Federal building of its period, and an excellent example of Beaux-Arts Classical architecture. It was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t801 Willson Ave.<br />Webster City, IA 50595<br />Hamilton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William J. and Hattie J. Zitterell House",
            "lat": "42.467794",
            "lon": "-93.824665",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-nhr-williamhattiezitterellhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William J. and Hattie J. Zitterell House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.467794,-93.824665\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This home was built in 1901 and has many outstanding architectural features. It is a two-story frame Queen Anne style house with a large third floor attic. The roof of the main house is a steep hip with four gables and topped with an ornate cast iron cresting. The wrap around porch features a gazebo-like projection, and above that, a turret resembling a &quot;witch&#039;s hat&quot;. The Zitterell house was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t821 Division St.<br />Webster City, IA 50595<br />Hamilton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Thurmond-Adams Barn",
            "lat": "42.482202",
            "lon": "-93.543055",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-barn-thurmondadams.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thurmond-Adams Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.482202,-93.543055\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Thurmond-Adams Barn is 36&#039; x 63&#039; with tongue and groove construction. The barn has been restored and was featured on the Iowa Barn Foundation&#039;s 2013 Tour, winning the Award of Distinction. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tEvergreen Ln.<br />Williams, IA 50271<br />Hamilton County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Webster Theater",
            "lat": "42.469235",
            "lon": "-93.819912",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-theater-webstertheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Webster Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.469235,-93.819912\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">31.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Webster Theater was built in 1906 and was remodeled and re-named in the 1920s, becoming known as the Granada Theater. After several owners, the theater closed due to bankruptcy in 2013. At that time, the closure of a local factory had shut down and hundreds of people had lost jobs. Rather than being down on their luck, community volunteers rallied to save the theater. After an investment of more than $200,000.00, the theater re-opened in September 2014 complete with a new 1940s style marquee.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t610 2nd St.<br />Webster City, IA 50595<br />Hamilton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lincoln Highway: Buttrick&#039;s Creek to Grand Junction Segment",
            "lat": "42.022504",
            "lon": "-94.266821",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lincoln Highway: Buttrick&#039;s Creek to Grand Junction Segment</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.022504,-94.266821\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">32mi.</span></div>\n\t\t</div>\n\n\t\t<p>This part of the Lincoln Highway was built around 1913. It was key in the evolution of highway engineering standards between 1913 and 1928. Since its construction, the only major change has been the addition of an asphalt overlay. It was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1999 230th St.<br />Grand Junction, IA 50107<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Abraham Lincoln High School",
            "lat": "41.561966",
            "lon": "-93.626861",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Abraham Lincoln High School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.561966,-93.626861\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">32.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Abraham Lincoln High School illustrates the development of secondary educational facilities after district consolidation in Des Moines in 1907. It is architecturally significant as an example of the &quot;modern school&quot; with its modified H-shape plan, highly decorated main lobby, and specialized spaces. It was designed by the prominent Des Moines firm of Proudfoot, Bird, and Rawson. The building was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2600 SW 9th St.<br />Des Moines, IA 50315<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rollins Mansion",
            "lat": "41.560039",
            "lon": "-93.644096",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rollins Mansion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.560039,-93.644096\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">32.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This home was built in 1925-1927 by Ralph Rollins, owner of Rollins Hosiery Mills. Rollins was friends with Carl Weeks, the local cosmetics maker that build the Salisbury House in Des Moines. Both elaborate homes were designed by Des Moines architects Byron Boyd and Herbert Moore. The design for the house borrowed from the domestic medieval architecture of England. It was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2801 Fleur Dr.<br />Des Moines, IA 50321<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.657.7288</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.rollinsmansion.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Boriskey Barn",
            "lat": "42.023631",
            "lon": "-93.016616",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-barn-boriskeybarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Boriskey Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.023631,-93.016616\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">32.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Boriskey Barn, built in 1958, was manufactured by Super Structures of Albert Lea, Minnesota. Before US Highway 30 was re-routed, the barn was known as the &quot;long horse barn on 30.&quot; The Boriskey Barn was featured on the Iowa Barn Foundation&#039;s 2014 All-State Barn Tour. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2115 230th St.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Schultz Brothers Drug Store",
            "lat": "42.488249",
            "lon": "-93.544453",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-nhr-schultzbrothersdrugstore.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Schultz Brothers Drug Store</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.488249,-93.544453\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">32.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Schultz Brothers Drug Store, also called Ye Olde Drug Store, was built in 1901 by E.D. Curtis. Ownership of the store has changed several times since its construction. A soda fountain was added in the 1920s, and in 1962, it was used as a feed store. In 1992, the building was restored to a soda shop, featuring a period soda fountain. It was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t116 Main St.<br />Williams, IA 50271<br />Hamilton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Hemken Automotive Collection",
            "lat": "42.487933",
            "lon": "-93.544361",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-historymuseum-hemkenautomotivecollection.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hemken Automotive Collection</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.487933,-93.544361\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">32.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Hemken Automotive Collection showcases Daryl Hemken’s collection of classic cars. He began collection cars in 1958, and bought mainly convertibles from 1947 and 1948.  At least one car from each major American car maker is exhibited. The cars are on display in a building that was built as a carriage showroom. Open by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t202 Main St.<br />Williams, IA 50271<br />Hamilton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.854.2749</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://the-hemken-collection.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Jordan House",
            "lat": "41.560103",
            "lon": "-93.733856",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-jordanhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jordan House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.560103,-93.733856\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">32.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>James C. Jordan’s farm lay about six miles west of Des Moines. Jordan was born in the south in 1813, but turned against legalized slavery as a young man. He and his wife came to Iowa in the 1840s and their home became a stop on the Underground Railroad. Well-known abolitionist John Brown found shelter here on more than one occasion. The Jordan House now serves as a museum for the city of West Des Moines and the office for the West Des Moines Historical Society. It was added to the National Register of Historic Places in 1973. This is stop #8 on the Freedom Trail tour: John Brown’s group reached the Jordan house on February 17, 1859. They rested overnight here, taking shelter in a nearby timber to keep from being found.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2001 Fuller Rd.<br />West Des Moines, IA 50265<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.277.6652</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://wdmhistoricalsociety.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Bennett School",
            "lat": "41.559741",
            "lon": "-93.757771",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bennett School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.559741,-93.757771\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">32.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bennett School opened in 1927. The schoolhouse remained in use until 1947. The house was moved from its original location to its current resting place at 4001 Fuller Rd. The school has been completely restored and is used as a museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4001 Fuller Rd.<br />West Des Moines, IA 50265<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Purviance Barn",
            "lat": "41.724893",
            "lon": "-94.145373",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-barn-purviancebarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Purviance Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.724893,-94.145373\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">33.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Prominent Dallas County farmer Robert Purviance spent a decade, from 1896-1906, acquiring 360 acres of farmland in the area. Several of his farm buildings are still standing, including a cattle barn from the late 1800s, and the horse barn, built in 1913. As of 2016, the farm was by 4th generation dependents of the original homesteaders. The horse barn, known as Purviance Barn, has been on the Iowa Barn Foundation All-State Barn Tour for several years. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t21501 H Ave.<br />Minburn, IA 50167<br />Dallas County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Fleur Cinema and Café",
            "lat": "41.543593",
            "lon": "-93.640551",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fleur Cinema and Café</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.543593,-93.640551\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">33.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fleur Cinema was opened in 1970 as part of a retail expansion process. During its opening it was called the Fleur 4 Cinema. The theater was sold multiple times, but remained a theater for the time it was open. In the 1990s, it was remodeled into the current Fleur Cinema and Café. It is currently operating as a 4 screen cinema.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4545 Fleur Dr.<br />Des Moines, IA 50321<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Sparks Barn",
            "lat": "42.475075",
            "lon": "-93.401395",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-barn-sparksbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sparks Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.475075,-93.401395\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">33.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sparks Barn is a very large barn.  “G. Herman, 1923, Dubuque” is painted on the inside of the west wall. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t15737 E Ave.<br />Alden, IA 50006<br />Hardin County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Dolliver Memorial State Park",
            "lat": "42.382618",
            "lon": "-94.084048",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-nhr-botany-dollivermemorialstatepark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dolliver Memorial State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.382618,-94.084048\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">33.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located along the scenic Des Moines River Valley, Dolliver Memorial State Park spreads across 594 acres boasting unique bluffs, canyons, flatlands, ancient Native American mounds and an abundance of exploration opportunities. At the north end of the park is a narrow ravine named Boneyard Hollow. Early settlers found numerous bones of bison littering the ravine. It is thought that prehistoric Native Americans either stampeded bison into the ravine from a buffalo jump or herded them into the confined space from the riverbank, where they killed and butchered the animals. The park also includes a trail that will take you out past the Copperas Beds, which are unique sandstone formations towering 100 feet above Prairie Creek. The Dolliver Memorial State Park was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2757 Dolliver Park Ave.<br />Lehigh, IA 50557<br />Webster County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.359.2539</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610107\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Squirrel Hollow County Park Historic District",
            "lat": "41.951757",
            "lon": "-94.287920",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Squirrel Hollow County Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.951757,-94.287920\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">33.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction on Squirrel Hollow County Park began around 1934, and some of the work was completed by the Work Projects Administration (WPA), a federal program designed to provide jobs during the Depression Era. It is one of the earliest county parks to be established in Iowa and the first to be developed for recreational purposes. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t277th St.<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Sugar Grove Vineyards and Gathering Place",
            "lat": "41.712262",
            "lon": "-93.148119",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jasper-nha-sugargrovevineyardsandgatheringplace-1-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sugar Grove Vineyards and Gathering Place</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.712262,-93.148119\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">33.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>In this 1870s rejuvenated grange hall, framed by rolling hills, a vineyard, a pond and elk, visitors may learn the history of the Grange Movement and social significance of the local club. Iowa wine and beer are featured along with a public summer concert series, fall dinner show and private events.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6602 Ginger Ave.<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.831.3843</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.sugargrove.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. George Clarke Gravesite",
            "lat": "41.626628",
            "lon": "-94.026919",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-govgravesite-georgeclarke.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. George Clarke Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.626628,-94.026919\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">33.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>George Washington Clarke (October 24, 1852 - November 28, 1936) served as the 21st Governor of Iowa from 1913-1917. His gravesite is located at Oakdale Cemetery in Adel.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tKinnick-Feller Riverside Park<br />Oakdale Cemetery<br />Adel, IA 50003<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Adel Public Square Historic District",
            "lat": "41.617484",
            "lon": "-94.018289",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-nhr-adelpublicsquarehistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Adel Public Square Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.617484,-94.018289\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">34.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Adel Public Square Historic District is made up of about four blocks in downtown Adel surrounding the courthouse and public square. The streets are paved with bricks and most of the buildings were constructed in the early 1900s in the Late Victorian style. The district was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t801 Court St.<br />Adel, IA 50003<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Adel Bridge",
            "lat": "41.615369",
            "lon": "-94.012253",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-bridge-adelbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Adel Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.615369,-94.012253\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">34.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Adel Bridge is an excellent early example of the pin-connected Pratt through truss structural type, a mainstay in Iowa bridge construction, and is one of the oldest remaining bridges of this type in the state. It was built in 1882 by the King Bridge Co. of Cleveland, Ohio, and remains in use. The bridge was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t408 River St.<br />Adel, IA 50003<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dallas County Courthouse",
            "lat": "41.617738",
            "lon": "-94.018065",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-nhr-dallascountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dallas County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.617738,-94.018065\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">34.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dallas County Courthouse was built in 1902 and was designed by prominent Iowa architects Proudfoot and Bird. It is made of Bedford gray limestone and modeled after a French castle, featuring a three-tiered clock tower with round conical-roofed towers on each corner of the rectangular building. It was added to the National Register of Historic Places in 1973.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t801 Court St.<br />Adel, IA 50003<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Iowa Jewish Historical Society",
            "lat": "41.560404",
            "lon": "-93.874899",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-historicalsociety-iowajewishhistoricalsociety.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Jewish Historical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.560404,-93.874899\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">34.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Jewish Historical Society is in charge of preserving the history of the Jewish people in the state of Iowa. They began in 1998, after a collaboration with the Des Moines Historical Society and Drake University, to turn the 3rd floor of the Drake Fine Arts building into an exhibit gallery. They currently reside in the Caspe Heritage Gallery and The Bucksbaum Fine Arts Wing, which were donated to the organization.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t33158 Ute Ave.<br />Waukee, IA 50263<br />Dallas County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.987.0899 ext 216</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.jewishdesmoines.org/our-work/ijhs\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Adel Historical Society and Museum",
            "lat": "41.617074",
            "lon": "-94.022384",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-historymuseum-adelhistoricalsocietyandmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Adel Historical Society and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.617074,-94.022384\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">34.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Adel Historical Museum was built in 1857 as a schoolhouse. Over the years, the museum has bought and added buildings to its original museum. Today&#039;s museum has eight buildings and exhibits including former Governor George Washington Clarke&#039;s desk, an antique kitchen and parlor, and a display of 1938 Heisman Trophy winner and University of Iowa legend Nile Kinnick Jr.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1129 Main St.<br />Adel, IA 50003<br />Dallas County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.993.4525</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://adeliowa.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "underground-railroad.png",
            "title": "Yellow Banks Park",
            "lat": "41.545716",
            "lon": "-93.478299",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-undergroundrailroad-yellowbankspark-3b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/underground-railroad.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Yellow Banks Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.545716,-93.478299\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">34.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>During the mid-1800s, Brian Hawley, a saw mill owner and carpenter, lived just a few hundred feet west of Yellow Banks Park, and his home once served as a stop on the Underground Railroad. A sign commemorating this history is located at Yellow Banks Park, near the main entrance. This is stop #9 on the Freedom Trail tour: On February 18, 1859, John Brown and his part stopped at Hawley’s farm and rested here overnight. The next day, they continued on toward Grinnell.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tSE 68th St.<br />Plesant Hill, IA 50327<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fort Des Moines Provisional Army Officer Training School",
            "lat": "41.525348",
            "lon": "-93.615575",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhl-fortdesmoines-1-800.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fort Des Moines Provisional Army Officer Training School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.525348,-93.615575\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">34.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fort Des Moines Provisional Army Officer Training School trained the first class of African-American officers in the history of the U.S. military. The first officer candidates received commissions here in 1917, during World War I, the same year a training camp for African-American medical personnel was founded. Women also trained at Fort Des Moines as part of the Women&#039;s Army Corps, beginning in 1942, during World War II. The training academy was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t75 E Army Post Rd.<br />Des Moines, IA 50315<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Richards Barn",
            "lat": "41.905579",
            "lon": "-94.297845",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Richards Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.905579,-94.297845\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">34.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Thornburgh Home Place shows off all of the original buildings, which have been lovingly preserved, including a 1930s milking barn with original stanchions.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2201 Quaker Ave.<br />Jamaica, IA 50128<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "German Evangelical Reformed Church",
            "lat": "41.819842",
            "lon": "-93.021216",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-germanevangelicalreformedchurch-5-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">German Evangelical Reformed Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.819842,-93.021216\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">35mi.</span></div>\n\t\t</div>\n\n\t\t<p>This church was organized in 1876 and it is a variety of surface textures. It was painted in several colors , which brought out the various shapes and wall textures. The German Evangelical Reformed Church was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2645 Hwy. 14 E<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-historic-sites.png",
            "title": "Matthew Edel Blacksmith Shop",
            "lat": "41.943886",
            "lon": "-92.961537",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-statehistoricsite-edelblacksmith.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Matthew Edel Blacksmith Shop</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.943886,-92.961537\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">35.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Matthew Edel Blacksmith Shop and Residence is one of only a handful of blacksmithing complexes from the heyday of that trade in the United States that is not either a recreation of a historic shop or the remote corner of a shop that managed to survive the evolution into welding, fabrication, and repair. The shop as it appears today looks virtually the same as it did during the days Matthew Edel plied his craft here. Furthermore, the complex serves as a reminder of that era in Iowa before mechanized farming became widespread and when the local blacksmith, who made horseshoes and shoed the horses and repaired farm implements and equipment was a vital link in the state’s farm economy. The house and kitchen complete a complex that in their relatively unaltered states convey to a remarkable degree, a large slice of the lifestyle of a skilled craftsman in the late 19th and early 20th Century. It was added to the National Register of Historic Places in 1983.</p>\t\t<p><em>A location in the collections: State Historic Sites, 99 County Tour - Iowa History Month</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t214 1st St.<br />Haverhill, IA 50120<br />Marshall County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://iowaculture.gov/history/sites/matthew-edel-blacksmith-shop\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "underground-railroad.png",
            "title": "Wittemberg Church and Cemetery",
            "lat": "41.766921",
            "lon": "-93.045070",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-nhr-wittembergchurchandcemetery-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/underground-railroad.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wittemberg Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.766921,-93.045070\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">35.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The community of Wittemberg was established in 1853 by pioneers from Ohio who migrated to the area. Not long after the pioneers settled, Rev. Merrill organized the congregation as a Free Presbyterian denomination church. \r\n\r\nThe Wittemberg community served as a sanctuary for escaped slaves who took refuge in nearby farms in the 1850s and 1860s. On December 18, 1855, the pioneers here, largely proponents of the Free Presbyterian faith, established the Wittemberg Manual Labor College, a Western technical school for the teaching of agriculture, mechanical arts, and domestic science.Any student or shareholder regardless of class, race, or gender who was not a slaveholder was welcomed.\r\n\r\nIt was in the college chapel that church services were held until after the Civil War. After the war, many Free Presbyterian congregations felt they had completed their work in opposing slavery. It was suggested the Wittemberg church change to the Presbyterian denomination as well. However, many members opposed the change, and after a period of intense debate, John Beatty moved the congregation to consider Congregationalism, and on Nov. 24, 1865, Wittemberg became a Congregational church.\r\n\r\nThe church building was erected in 1868 and remained unchanged until 1951 when the building was extensively remodeled. The interior of the building was gutted, leaving only the exterior bones and roof in tact from the original structure. The new church was dedicated on Nov. 30, 1951 and held its last service on Nov. 16, 2014.\r\n\r\nThe church and cemetery are listed on the National Park Service Network to Freedom for its association with the Underground Railroad in Iowa. Among those buried in the cemetery are  Rev. John White, who served the church and died on March 23, 1872, his wife Jane, and their young daughter, Mary. The Wittemberg Church and Cemetery are the only remaining structures from the former community of Wittemberg.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t622 Holly Ave.<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Valle Drive-In Theater",
            "lat": "41.700124",
            "lon": "-93.102597",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-theater-valledriveintheater-6-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Valle Drive-In Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.700124,-93.102597\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">35.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Valle Drive-In Theater was built in 1949. The original theater had a 260+ car capacity and operated from April-October. The Drive-In is still operating today under the same name, but features a number of improvements including an updated screen and sound system.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4074 Co. Rd. F48 W<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Robert William Andrew Feller Farmstead",
            "lat": "41.546334",
            "lon": "-93.909087",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-nhr-robertwilliamandrewfeller.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Robert William Andrew Feller Farmstead</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.546334,-93.909087\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">35.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Baseball Hall of Fame pitcher Bob Feller grew up and learned to pitch on this farm. After becoming successful in the Major Leagues, Feller had the brick home built for his parents. Built in 1940, the house is a popular eclectic Tudor Revival style and represents a notable residential design by respected architect John Normile. It was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2965 340th Tr.<br />Van Meter, IA 50261<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Hardin County Historic House",
            "lat": "42.357691",
            "lon": "-93.099196",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-historymuseum-hardincountyhistorichouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hardin County Historic House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.357691,-93.099196\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Featuring both the Hardin County Historical House and the Carriage House Museum, the Hardin County Historical Society works to preserve and promote the history of Hardin County. Its collection houses a wide array of artifacts unique to Hardin County, including the first instrument brought to the county and a toboggan used on Fine Lake. The museum are open May through October and the Historical Society puts on various special and educational programs throughout the year.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1603 S Washington St.<br />Eldora, IA 50627<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.939.5137</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://hardincountyhistoricalsociety.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hardin County Home Historic District",
            "lat": "42.398144",
            "lon": "-93.148798",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hardin County Home Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.398144,-93.148798\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction on the Hardin County Home Historic District began around 1877. Caring for the less fortunate was a common concern for Iowa residents by the last quarter of the 19th century. These county homes were tax-supported institutions to care for any dependent person, such as the infirm, the mentally-ill, and orphans. It was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t28483 Co. Hwy D41<br />Eldora, IA 50627<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Eldora Downtown Historic District",
            "lat": "42.360622",
            "lon": "-93.098902",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-eldoradowntownhistoricdistrict-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Eldora Downtown Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.360622,-93.098902\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Listed on the National Register of Historic Places the Eldora Downtown Historic District is approximately ten square blocks of historically significant property surrounding the local courthouse. After a major hailstorm struck the town in 2009, the community banded to together and set about rehabilitating the neighborhood. The neighborhood, much of which was constructed in the 1890s, now offers beautifully restored streetscapes of historical homes and buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1215 Edington Ave.<br />Eldora, IA 50627<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Prairie City Historical Society Museum",
            "lat": "41.598080",
            "lon": "-93.236514",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jasper-historymuseum-prairiecityhistoricalsocietymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prairie City Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.598080,-93.236514\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Prairie City Historical Society Museum houses many artifacts from Prairie City&#039;s history including the Dowden Potato Digger, which was originally manufactured in Prairie City.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t109 S Main St.<br />Prairie City, IA 50228<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.994.2788</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Former Eldora Public Library",
            "lat": "42.359592",
            "lon": "-93.098775",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-formereldorapubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Former Eldora Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.359592,-93.098775\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Eldora Public Library building was built in 1902 by Patton and Miller of Chicago, funded by a grant from the Carnegie Corporation. It is architecturally interesting, featuring an unusual asymmetrical design. It was added to the National Register of Historic Places in 1983, but the building is no longer in use as a library.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1209 14th Ave.<br />Eldora, IA 50627<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hardin County Courthouse",
            "lat": "42.360247",
            "lon": "-93.098860",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-hardincountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hardin County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.360247,-93.098860\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hardin County Courthouse was designed by T.D. Allen and built by J.F. Atkinson in 1892. The courthouse shows the community&#039;s importance as the county seat. It also serves as a monument of county organization and development. It was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1215 Edgington Ave.<br />Eldora, IA 50627<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First Congregational Church",
            "lat": "42.361391",
            "lon": "-93.098097",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-firstcongregationalchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Congregational Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.361391,-93.098097\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First Congregational Church was built in 1894 by C.A. Dunham and John F. Atkinson. It was built and dedicated during the ministry of Rev. Ariel Baker and has served the community as a place of worship ever since. It was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1209 12th St.<br />Eldora, IA 50627<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Grand Theater",
            "lat": "42.360788",
            "lon": "-93.097976",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-theater-nhr-grandtheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.360788,-93.097976\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grand Theatre was built in 1912, with a movie theater in the east half of the building and a general store in the west half. The theatre operated nearly continuously from 1912 until 1985. It sat vacant until 1994, when new owners began a renovation. The upper floors were converted to apartments, the original marquee was re-created and the Grand Theatre was back in business, showing movies in downtown Eldora!</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1148 Edgington Ave.<br />Eldora, IA 50627<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.939.3522</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://eldoraiowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World War I Soldier Monument",
            "lat": "42.055138",
            "lon": "-92.935087",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-monument-worldwar1soldier-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World War I Soldier Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.055138,-92.935087\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>At the Iowa Veterans Home in Marshalltown, a limestone doughboy stands as a monument to World War I veterans. It was sculpted by an artist named Eric Oberg and installed in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tConstitution Ave.<br />Iowa Veterans Home<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Iowa Funeral Museum",
            "lat": "42.007653",
            "lon": "-92.932292",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-historymuseum-iowafuneralmuseum-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Funeral Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.007653,-92.932292\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Funeral Museum was established in 2017 by Marty Mitchell, owner of the Mitchell Family Funeral Home in Marshalltown. The museum boasts approximately 5,000 funerary artifacts that Mitchell collected over the past 30 years. Inside you&#039;ll find find a display of a Victorian funeral, including many hair wreathes that were common in the Victorian era (hair of the deceased was used to create wreathes and other designs to be displayed in shadow boxes). The museum also has a number of caskets used throughout the past, including many casket models that were used in burials for J. Edgar Hoover, Marilyn Monroe, Elvis, John Wayne, Franklin D. Roosevelt, Al Capone and John F. Kennedy. You can also view burial vaults, funeral banners, Civil War era artifacts and historic photographs. The museum is open during posted hours or by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1201 Iowa Ave. W<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515-844-1234</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.mitchellfh.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Prisoner of War Recreational Hall",
            "lat": "42.361936",
            "lon": "-93.087578",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-prisonerofwarrecreationalhall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prisoner of War Recreational Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.361936,-93.087578\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civilian Conservation Corps/Prisoners of War Recreational Hall was built around 1933 by the Civilian Conservation Corps. The CCC was a federal program during the New Deal Era designed to provide manual labor jobs for young men while implementing a natural resource conservation program in every state and territory. This has also been called the Camp Flying Goose Recreational Hall. It was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 11th Ave.<br />Hardin County Fairgrounds<br />Eldora, IA 50627<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Hardin County Farm Museum",
            "lat": "42.372599",
            "lon": "-93.099229",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-historymuseum-hardincountyfarmmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hardin County Farm Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.372599,-93.099229\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hardin County Farm Museum offers visitors a peak into farming life from 1850 until 1950. The museum sponsors local tractor pulls, machine shows, threshing day celebrations, traditional barn dances, craft fairs and antique shows for the entire community. Additionally, the museum also provide exhibits and tours that emphasize the importance and evolution of agricultural practices, agri-business, and farming equipment into the twentieth century. It is also home to the Goose Creek No. 4 School, a rural school used in Hardin County from 1882-1953.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t203 Washington St.<br />Eldora, IA 50627<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.939.7107</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.eldoraiowa.com/pages/farm-museum\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Robert H. Sunday House",
            "lat": "42.026544",
            "lon": "-92.928002",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-nhr-roberthsundayhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Robert H. Sunday House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.026544,-92.928002\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Robert H. Sunday House was one of Frank Lloyd Wright&#039;s final projects. Details of the completed brick and wood construction house were derived form the design of the 1953 Usonian Exhibition House which was built on the later site of the Wright-designed Solomon R. Guggenheim Museum in New York City and was featured in Wright&#039;s 1954 The Natural House. It was added to the National Register of Historic Places in 1988.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1701 Woodfield Rd.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Alden Bridge",
            "lat": "42.520809",
            "lon": "-93.375744",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-bridge-nhr-aldenbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alden Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.520809,-93.375744\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Alden Bridge was designed by the Iowa State Highway Commission and built in 1936 by the Welden Brothers Construction Company and the WPA. Since its completion, it has carried fairly heavy urban traffic. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Alden, IA 50006<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Alden Public Library",
            "lat": "42.519646",
            "lon": "-93.374569",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-aldenpubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alden Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.519646,-93.374569\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Alden Public Library was built by Wetherell and Gage around 1914, funded by a grant from the Carnegie Corporation. It was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1012 Water St.<br />Alden, IA 50006<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Prairie Center Methodist Episcopal Church and Pleasant Hill Cemetery",
            "lat": "41.745896",
            "lon": "-94.250724",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-nhr-prairiecentermethodistepiscopalchurchandpleasanthillcemetery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prairie Center Methodist Episcopal Church and Pleasant Hill Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.745896,-94.250724\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Prairie Center Methodist Episcopal Church was built in 1881 and stands as a remnant of early social and cultural life in Lincoln Township during the open country church era. The Pleasant Hill Cemetery, located across the road, predates the church building, with gravestones dating back as far as the 1860s. The church and cemetery were added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t20004 Beaumont Ave.<br />Yale, IA 50277<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Iowa Veterans Cemetery",
            "lat": "41.545400",
            "lon": "-93.952119",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-cemetery-iowaveteranscemetery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Veterans Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.545400,-93.952119\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Veterans Cemetery is the first federally funded construction of a state-owned and operated veterans cemetery in the State of Iowa. The cemetery was dedicated on July 3, 2008 and the first burials began on July 7. The cemetery serves the veteran population throughout the state and across the country and as future phases of development are completed, it will provide space for up to 80,000 burials.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t34024 Veterans Memorial Dr.<br />Adel, IA 50003<br />Dallas County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.996.9048</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://va.iowa.gov/vetcemetery/index.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Eldora Welcome Center and Railroad Museum",
            "lat": "42.360993",
            "lon": "-93.084554",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-historymuseum-eldorawelcomecenterrailroadmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Eldora Welcome Center and Railroad Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.360993,-93.084554\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in the restored Osawa railroad depot, the Eldora Welcome Center and Railroad Museum features a museum full of railroad memorabilia. Additionally, the welcome center also provides helpful information on local hiking and bike trails, park shelters, deer feeding stations, and play grounds.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1215 Park St.<br />Eldora, IA 50627<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.939.3241</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://eldoraiowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Historic Randleman House",
            "lat": "41.504814",
            "lon": "-93.488676",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-historymuseum-historicrandlemanhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Historic Randleman House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.504814,-93.488676\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1907, the six-bedroom Historic Randleman House features ornamental fretwork. The home has been renovated and is available for tours and special events. It is used as the headquarters for the Carlisle Area Historical Society.  The second floor has a display area showing memorabilia.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t245 Pennsylvania St.<br />Carlisle, IA 50047<br />Warren County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cahs.webs.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Marshall County",
            "lat": "42.031805",
            "lon": "-92.924270",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Marshall County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.031805,-92.924270\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Marshall County Freedom Rock honors local veterans from several wars, starting with World War I soldiers Frank Glick and Frank Fletcher. Glick was born into a prominent Marshalltown family and joined the Marines in 1917. After being handpicked by his captain for his exceptional character, physical fitness and marksmanship, he boarded a ship to fight in France. On June 1, 1917, Glick&#039;s company was near Belleau Wood, northeast of Paris, when the Germans were blasting them with artillery fire. The Americans were advised to retreat, but U.S. Marine Capt. Lloyd Williams refused, and Glick was killed in this pivotal battle. Fletcher was also born in Marshalltown, in 1885, and was appointed in 1902 to the U.S. Naval Academy in Annapolis. He graduated in February 1906, commencing a long and distinguished naval career. He earned the Medal of Honor during the Battle of Veracruz during World War I. His Medal of Honor cites: &quot;He was in charge of the Esperanza and succeeded in getting on board over 350 refugees, many of them after the conflict had commenced. Although the ship was under fire, being struck more than 30 times, he succeeded in getting all the refugees placed in safety. Lt. Fletcher was later placed in charge of the train conveying refugees under a flag of truce. This was a hazardous duty, as it was believed that the track was mined, and a small error in dealing with the Mexican guard of soldiers might readily have caused a conflict, such a conflict at one time being narrowly averted.&quot; Fletcher served in the Navy until 1946 and earned the rank of admiral. He was the operational commander at the Battles of Coral Sea and Midway during World War II. Fletcher died in 1973 and is buried at Arlington National Cemetery in Virginia. The Marshall County (Marshalltown) Freedom Rock was completed in 2016 by artist Ray &quot;Bubba&quot; Sorensen II of Greenfield.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Ingledue St.<br />Legion Memorial Park<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Calkins Nature Area",
            "lat": "42.508947",
            "lon": "-93.333928",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-botany-calkinsnaturearea.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Calkins Nature Area</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.508947,-93.333928\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Calkins Nature Area includes an American Indian and Natural History Museum with live native animal displays. The park also includes scenic timber, prairies, streams, ponds along the Iowa River.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t18335 135th St.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.648.9878</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Leroy R. Willard House",
            "lat": "42.049496",
            "lon": "-92.923261",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-nhr-leroyrwillardhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Leroy R. Willard House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.049496,-92.923261\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Willard House, built in 1910, is significant as a very well preserved example of large Edwardian domestic architecture showing the strong influence of the craftsman style combined with architectural elements of the Georgian Revival style. The original owner, Leroy Randel Willard was a partner in the largest independent oil company in the United States, the Marshall Oil Company. The company was the largest manufacturer of axle grease in the United States, but the principle business was the distribution of “Roseine Kerosene” and “Monarch Gasoline.” It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t609 W Main St.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chicago, Milwaukee and St. Paul Railroad: Jefferson Depot",
            "lat": "42.014989",
            "lon": "-94.368265",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-nhr-chicagomilwaukeestpauldepot.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago, Milwaukee and St. Paul Railroad: Jefferson Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.014989,-94.368265\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chicago, Milwaukee and St. Paul Depot was built around 1906 by the Chicago, Milwaukee and St. Paul Railroad Bridge and Building Department. This is an unaltered example of the standard-plan wooden depots the company was still building during the early twentieth century. Because Jefferson was the county seat, the depot was built with more decorative treatment than the Milwaukee normally added to its stations. It was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t507 E Lincoln Way<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "C. H. Whitehead House",
            "lat": "42.051093",
            "lon": "-92.918196",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-nhr-chwhiteheadhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">C. H. Whitehead House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.051093,-92.918196\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Whitehead House displays a mix of stylistic influences prevalent at the turn of the 20th century. A mix of Queen Anne, Federal/Adamesque, Georgian Revival, and New England Colonial styles are seen in the house. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t108 N 3rd St.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Antique Tractor Showcase",
            "lat": "41.499746",
            "lon": "-93.486267",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-historymuseum-antiquetractormuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Antique Tractor Showcase</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.499746,-93.486267\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Antique Tractor Showcase has a rotating display of more than 20 antique tractors, tractor memorabilia, toy tractors and pedal tractors. The museum also holds tractor showcases during the spring, summer and fall. Tours of the Antique Tractor Showcase are by appointment only.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t55 Main St.<br />Carlisle, IA 50047<br />Warren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.321.9275</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "zoos-and-wildlife.png",
            "title": "Neal Smith National Wildlife Refuge and Prairie Learning and Visitor Center",
            "lat": "41.559069",
            "lon": "-93.280361",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jasper-botany-prairielearningcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/zoos-and-wildlife.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Neal Smith National Wildlife Refuge and Prairie Learning and Visitor Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.559069,-93.280361\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Neal Smith National Wildlife Refuge is a Tallgrass prairie/oak savanna reconstruction project in the heart of Iowa, with several nature trails and an auto tour route through the bison and elk enclosure. The Prairie Learning and Visitor Center offers interactive exhibits, a bookstore and the award winning movie &quot;Return to Wilderness.&quot;</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t9981 Pacific St.<br />Prairie City, IA 50228<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.994.3400</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.fws.gov/refuge/neal_smith/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Carlisle Theater",
            "lat": "41.499142",
            "lon": "-93.486365",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-theater-carlisletheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carlisle Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.499142,-93.486365\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Carlisle Theater, also known as the Palace Theatre, was built in 1913 and used as a theater until 1967. After the theater closed the building became home to the KAJAC recording studio, one of the largest 16-track recording studios between Des Moines and Chicago. Since then, the building has been used for other commercial purposes.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t155 N 1st St.<br />Carlisle, IA 50047<br />Warren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Greene County Historical Society Museum",
            "lat": "42.015123",
            "lon": "-94.372392",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-historymuseum-greencountyhistoricalsocietymuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Greene County Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.015123,-94.372392\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Greene County Historical Museum provides exhibits and information including pre-historic archaeological materials up through and including 1970s memorabilia. The exhibits include Native American artifacts found in Greene County, drainage of the wetlands, a 1900s house, a doctor&#039;s office from the 1930-1950s era, barber shop, bank, and drug store. Individual Greene County citizens are also recognized for their national prominence including Doreen Wilbur, Olympic Gold Medal archery champion and Loren Shriver, NASA astronaut.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t219 E Lincolnway<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.386.8544</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Floyd W. Mahanay Memorial Carillion",
            "lat": "42.015520",
            "lon": "-94.374415",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-uniqueiowa-floydmahanaymemorialcarillion.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Floyd W. Mahanay Memorial Carillion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.015520,-94.374415\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mahanay Memorial Carillion Tower was given to the citizens of Jefferson by Mr. and Mrs. W. F. Mahanay. Mahanay amassed a fortune through his sales skills and purchase of farmland in the 1930s. The tower is 14 stores tall and had 14 cast bells from the world-famous Petit and Fritsen Bell Foundry in the Netherlands. The heaviest bell weighs 5,630 pounds. The bells chime on the hour, quarter and half-hour. Music plays daily, with 50% of the music to be patriotic and sacred music, according to Mahanay&#039;s will. Visitors to the Carillion can see 30 miles and five Iowa counties form the 128-foot high observation deck.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 E Lincolnway<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.386.2155</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "The Lindsey Memorial",
            "lat": "42.015476",
            "lon": "-94.373849",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-monument-lindseymemorial.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Lindsey Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.015476,-94.373849\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lindsey Memorial once stood at the Lindsey Air Station in Wiesbaden, Germany. When the Air Force base was closed in 1993, the monument was returned to Greene County, the home county of Captain Darrell Lindsey. Lindsey was a World War II Congressional Medal of Honor recipient whose B-26 airplane took a direct hit and by his skillful maneuvering, the crew was able to parachute to safety. Captain Lindsey went down with his aircraft on his 46th bombing mission.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 N Chestnut St.<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "RVP 1875 Historical Furniture Shop and Museum/Raccoon River Artisan Colony",
            "lat": "42.014649",
            "lon": "-94.374553",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-historymuseum-historicalfurnitureshopandmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">RVP 1875 Historical Furniture Shop and Museum/Raccoon River Artisan Colony</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.014649,-94.374553\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The RVP 1875 Historical Furniture Shop and Museum is the world’s only producing historical furniture shop and museum. Owner, Robby Pedersen, is a Master Furniture Maker with over 20 years experience. Pedersen has built over 800 pieces of historically accurate furniture using only the tools, techniques and finishes used in 1875 Iowa. On display in the museum, is the largest working set of 19th century woodworking tools in the world. The shop features an 1860s foot-powered lathe, an 1870s hand-crank ripsaw, and over 400 different hand planes. The showroom displays over 100 pieces of furniture, each with a story of historical significance.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 S Wilson<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.975.3083</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://rvp1875.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Jasper County Historical Museum",
            "lat": "41.685519",
            "lon": "-93.076185",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jasper-historymuseum-japsercountyhistoricalmuseum-9-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jasper County Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.685519,-93.076185\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jasper County Historical Museum was dedicated on May 6, 1979. The museum has numerous exhibits and over 8,500 artifacts. There are exhibits about a general store, a Victorian home, a 1930s home and an agricultural barn. A 40-foot bas-relief by Newton artist Herman I. Deaton depicts first settlements, early agriculture, industrial development and the future of the county. There is an exhibit featuring the Maytag collection and military collections that cover the American Civil War, Spanish-American War, World War I, World War II, Korea and Desert Storm.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1700 S 15th Ave. W<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.792.9118</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://jaspercountymuseum.net\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Abraham Lincoln Statue",
            "lat": "42.015414",
            "lon": "-94.374098",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-monument-abrahamlincolnstatue.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Abraham Lincoln Statue</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.015414,-94.374098\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Abraham Lincoln Statue was erected in 1918 as a gift from local resident E. B. Wilson to honor the first highway across the United States. This monument serves to commemorate the Lincoln Highway, which crossed through Jefferson and directly in front of the monument. It was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 N Chestnut St.<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Greene County Courthouse",
            "lat": "42.015755",
            "lon": "-94.374188",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-nhr-greenecountycourthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Greene County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.015755,-94.374188\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Greene County Courthouse was built in 1917 and located in the center of the public square in Jefferson. On the grounds is a statue of Lincoln, erected in 1870, that was meant to commemorate the Lincoln Highway. This is the county&#039;s third courthouse. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 N Chestnut St.<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lincoln Highway Marker I",
            "lat": "42.015458",
            "lon": "-94.374388",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lincoln Highway Marker I</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.015458,-94.374388\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Their Lincoln Highway Association was established in 1913, to plan, promote, and sign the Lincoln Highway, America’s first transcontinental highway. When the US Bureau of Public Roads took over the highway and designated it as a numbered route, the Lincoln Highway Association did one final action. They ordered 3,000 concrete markers, dedicating the highway to the memory of Abraham Lincoln. On September 1, 1928, Boy Scout troops across the country installed the markers. Eventually, 2,436 markers were placed. Some remain in the original position, some were moved, and some are gone forever. This marker, in downtown Jefferson, shows how highways were marked before the uniform highway numbering system. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Lincoln Way<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "George H. Gallup House",
            "lat": "42.007511",
            "lon": "-94.373085",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George H. Gallup House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.007511,-94.373085\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The George H. Gallup House was built in 1902, and is one of 22 octagon houses in Iowa. This is one of the largest and best examples of the octagon style introduced by Orson Squire Fowler in the 1850s, and is probably one of the best preserved of Iowa&#039;s remaining octagon houses. Aside from its architecture, the house is significant as the birthplace and boyhood home of George Horace Gallup, a pioneer in public opinion polling. It was added to the National Register of Historic Places in 1985, and is now available for rent for events, overnight stays, and retreats.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t703 S Chestnut St.<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thegalluphouse.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Sierra Theatre",
            "lat": "42.016414",
            "lon": "-94.372929",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-historictheater-sierratheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sierra Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.016414,-94.372929\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sierra Theatre was constructed in 1884 as a Masonic Hall on the second floor and an opera house on the first floor. The building was converted to a movie theatre by 1930, with a social hall on the second floor.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t212 E State St.<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jefferson Square Commercial Historic District",
            "lat": "42.015538",
            "lon": "-94.374111",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/greene-nhr-jeffersonsquarecommercialhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jefferson Square Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.015538,-94.374111\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jefferson Square District was important in the commerce and community planning and development of Jefferson. The district is the central open square around the courthouse, and the commercial streets that make up the square. Buildings within the historic district represent nearly every phase of downtown history. The striking landmark feature of the square is the Mahanay Memorial Carillion, built in 1966.. It was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 N Chestnut St.<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-hotels.png",
            "title": "Historic Tremont Inn on Main",
            "lat": "42.049033",
            "lon": "-92.914055",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-historichotel-historictremontinn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-hotels.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Historic Tremont Inn on Main</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.049033,-92.914055\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Tremont Building has been a Marshalltown landmark since 1874. Originally a three story walk-up hotel, it was destroyed by fire in 1902 and rebuilt in 1904. Renovated in phases, with care and attention to historic detail, this Main Street anchor boasts two great restaurants, four private condominiums and a small, exclusive boutique hotel.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Main St.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.752.1234</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://tremontonmain.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Riverside Cemetery",
            "lat": "42.058573",
            "lon": "-92.914568",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Riverside Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.058573,-92.914568\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>On April 6, 1863, the newly incorporated Marshalltown Cemetery Association purchased approximately 13 acres of land from Rueben Webster to be used as a cemetery. The heavily wooded land was cleared with assistance from the local Ladies Aid Society, B.B.C. Society and many local pioneers such as Rev. Louis DeLos and Dr. George Glick. The cemetery has remained in use since its incorporation and is the main cemetery for the city of Marshalltown.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t611 N Center St.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Jefferson Telephone Company Museum",
            "lat": "42.014143",
            "lon": "-94.375699",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jefferson Telephone Company Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.014143,-94.375699\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jefferson Telephone Museum opened in 1957 and is one of the only museums in the country dedicated to the history of the telephone. The museum displays all kinds of telephones, switchboards, and other telephone equipment from the 1800s to today.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t105 W Harrison St.<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.386.4141</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Gowrie Depot Historical Museum",
            "lat": "42.283851",
            "lon": "-94.288968",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-historymuseum-gowriedepothistoricalmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gowrie Depot Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.283851,-94.288968\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Gowrie Historical Society is comprised of an eleven member board that is in charge of preserving, protecting and presenting the collection of historical items of early-day Gowrie and surrounding farm area. The collection is housed in an early day railroad train depot that has been restored. It is located in beautiful Laurel Park, just south of the Gowrie Swimming Pool. The depot is full of early day photos and pioneer items of our early history.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1114 N Beek St<br />Laurel Park<br />Gowrie, IA 50543<br />Webster County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.352.3983</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Marshalltown Downtown Historic District",
            "lat": "42.049183",
            "lon": "-92.912124",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-historicdistrict-marshalltowndowntownhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marshalltown Downtown Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.049183,-92.912124\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Marshalltown was incorporated in July 1863. Early community leaders recognized the importance of a rail connection and worked to bring the railroad to town. After the arrival of what’s now known as the Chicago and North Western railroad, the downtown area grew quickly and new commercial buildings were built near the railroad. Trains helped to establish Marshalltown as an important community, but the arrival of the automobile sealed it’s fate. The original route of the Lincoln Highway entered the downtown along East Main Street and turned south at 9th Street. For several years, Marshalltown’s motto proudly related its location on the Lincoln Highway on its municipal stationery: &quot;Marshalltown: On the Main Street of the Nation.&quot; The Marshalltown Downtown Historic District, comprised of the blocks that surround Courthouse Square and five city blocks that extend along Main Street, was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Marshall County Courthouse",
            "lat": "42.048432",
            "lon": "-92.912071",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-nhr-marshallcountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marshall County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.048432,-92.912071\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Marshalltown County Courthouse is an excellent example of the Italian Renaissance Style. It was designed during the mid and late-19th Century by John C. Cochrane, a prominent designer of Italianate, Renaissance, and Classical Revival Style buildings. It is locally significant as the county center of government. It was added to the National Register of Historic Places in 1972.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Thaddeus Binford House",
            "lat": "42.051197",
            "lon": "-92.909904",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-nhr-thaddeusbinfordhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thaddeus Binford House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.051197,-92.909904\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Thaddeus Binford House is a good example of the Italianate stylistic influence, being particularly noteworthy for its ornate paired brackets and modillions which support a broadly projecting eaves line. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 N 2nd Ave.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Glick-Sower House",
            "lat": "42.050157",
            "lon": "-92.909390",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-nhr-glicksowerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Glick-Sower House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.050157,-92.909390\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Glick-Sower House was built in 1859 for Dr. George Glick, the founder of the Marshall Times. Dr. Glick sold the house to the Sower family in 1870, and the Sower&#039;s owned the house until 1952. In 1952, the last member of the Sower household died, and willed the house to the citizens of Marshalltown. The home was added to the National Register of Historic Places in 1993 and is now operated as a museum. The house was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210 E State St.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.752.6664</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://marshallhistory.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Marshall County Historical Museum",
            "lat": "42.048085",
            "lon": "-92.909434",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-historymuseum-marshallcommmunitymuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marshall County Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.048085,-92.909434\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Marshall County Historical Museum is the center for study of significant items of the collections covering numerous areas of the life and history of the area. Some of its featured displays include Geology and Archaeology, Business and Industry, Domestic Life, Early American Glass Club Collection, Community Life, &quot;The General Store&quot;, The Rural Frontier, Medicine, Dentistry, and Nursing, The Frontier Town, Sports and Entertainment, Military History and Government. There is also a historical reference library for use by members and visitors.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t202 E Church St.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.752.6664</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://marshallhistory.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Webster County Museum Association",
            "lat": "42.425289",
            "lon": "-94.146078",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-historymuseum-webstercountymuseumassociation-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Webster County Museum Association</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.425289,-94.146078\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Webster County Museum displays a variety of objects associated with local history including examples of pottery made in area factories during the late 19th and early 20th centuries.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t515 School St.<br />Otho, IA 50569<br />Webster County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.972.4544</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Taylor No. 4 Country School",
            "lat": "42.049856",
            "lon": "-92.909403",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-countryschool-taylorno4.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Taylor No. 4 Country School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.049856,-92.909403\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Taylor #4 Country School is a one-room schoolhouse built in 1913. The school was moved into town and restored to its original appearance by the Marshall County Historical Society. The schoolhouse has desks from the original building, as well as slate writing boards and 20th century school books.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN 2nd Ave.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.752.6664</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://marshallhistory.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Thomas Arthur House",
            "lat": "41.706712",
            "lon": "-93.050237",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-nhr-thomasarthurhouse-1-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thomas Arthur House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.706712,-93.050237\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Arthur house is the only elaborate house built in the Gothic Revival style in Newton. The most distinctive feature of the house is the three-story round tower topped with a conical roof, having three entrances and numerous doors connecting the rooms. The Thomas Arthur house was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t322 N 8th Ave. E<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Orpheum Theater",
            "lat": "42.049223",
            "lon": "-92.908701",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-theater-orpheum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Orpheum Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.049223,-92.908701\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Orpheum was built in 1948 and opened in June 1949. It was the first post-WWII theatre built in the nation by the Radio Keith Orpheum (RKO) Company, a Hollywood giant in the 1940s. The Orpheum is an elegant example of the Arte Moderne architectural style. \r\n\r\nIn 1957, the Orpheum was host to the US premiere of &quot;Saint Joan,&quot; starring Marshalltown native Jean Seberg.\r\n\r\nIt was closed in 2001 and concerned citizens formed a non-profit to save the theatre. \r\n\r\nThe building was added to the National Register of Historic Places in 2002 and after ten years and $3.4 million, the Orpheum was restored and redesigned as the Orpheum Theater Center operated by the Iowa Valley Community College District.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t220 E Main St.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.844.5921</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iavalley.edu/orpheum/index.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hotel Tallcorn",
            "lat": "42.049320",
            "lon": "-92.909834",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-historicsite-thetallcorn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Tallcorn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.049320,-92.909834\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>In the 1920s, Marshalltown was a bustling community, and hub of three railways: the Chicago and Northwestern, the Chicago-Great Western and the Minneapolis and St. Louis. Even so, the town lacked a major amenity — a hotel suitable to serve as a community center for social functions. Seeing this need, the Eppley Hotel Company of Omaha built and operated the Hotel Tallcorn. Completed on October 5, 1928, Hotel Tallcorn was the first hotel of its kind in Marshalltown. It opened with 125 rooms ranging, available for $1.50 to $13.00 per night. At that time, Marshalltown was a town of 20,000 people — but the Hotel Tallcorn was built large enough to support a town of 50,000 people. Hotel Tallcorn showed confidence in the community and eventually a convention hall and theatre were also built. Hotel Tallcorn was completely renovated in 2015, converted from a 128 room hotel to 49 apartments. The building remains an anchor in the Marshalltown Downtown Historic District.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t134 E Main St.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Capitol Theatre",
            "lat": "41.700102",
            "lon": "-93.053497",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jasper-nhr-hotelmaytag-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Capitol Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.700102,-93.053497\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Capitol Theatre is part of the Hotel Maytag Building, which was dedicated on December 21, 1926. The Hotel Maytag was a state-of-the-art facility with a full cafe, grand ballroom and theater. It was built for $1 million and was one of the first commercial buildings in the state to be completely air conditioned. The theatre has been in continuous operation since it opened, and the marquee dates to the 1940s.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t116 1st St. N<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World War I Memorial",
            "lat": "41.699755",
            "lon": "-93.054357",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jasper-monument-worldwar1memorial-11-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World War I Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.699755,-93.054357\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1928, a Veterans&#039; Memorial was installed at the Jasper County Courthouse to honor all the county men who had served in World War 1. By 1992, citizens felt it was in deplorable condition and commissioned the Newton artist Nick Klepinger to create a new bronze memorial. A plaque that was part of the original 1928 memorial was installed behind the new statue, and the new memorial was dedicated on July 4, 1994.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st Ave. W<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jasper County Courthouse",
            "lat": "41.699997",
            "lon": "-93.054298",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-nhr-jaspercountycourthouse-4-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jasper County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.699997,-93.054298\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Jasper County was established in 1846 and Newton incorporated as the county seat the following year. The original town plat was laid out with 29 blocks centered around the courthouse square and since that time the visual character of downtown Newton has been defined by the relationship of its buildings to the courthouse square.\r\n\r\nThe Jasper County Courthouse in Newton was dedicated April 6, 1911. The Beaux-Arts courthouse was designed by the prominent Des Moines architectural firm of Proudfoot, &amp; Bird and built using Bedford (Indiana) limestone at a cost of $140,825.71. At the time of construction it contained many new innovations including the self-winding clock in the tower, which turned the clock lights on and off automatically. The interior features include floors of ceramic tile in mosaic patterns, a rotunda flanked by Doric columns, and four murals by Edgar Cameron of Chicago that depict the history of Jasper County. It was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 1st St. N<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.co.jasper.ia.us/index.aspx?page=57\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "television-and-movie-sites.png",
            "title": "&quot;Twister&quot; Movie House",
            "lat": "42.320762",
            "lon": "-93.020508",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-tvmoviesite-twistermoviehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/television-and-movie-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">&quot;Twister&quot; Movie House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.320762,-93.020508\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This home was built in 1886 by Luther M. Follett, a prominent Wisconsin businessman. It was widely heralded as the grandest home in Hardin County. In the late 1960s, it was sold and boarded up. In the early 1990s, the current owner pitched it as a location for the movie &quot;Twister. It is featured in the last ten minutes of the film.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t26302 Y Ave.<br />Eldora, IA 50627<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Stephen&#039;s Episcopal Church",
            "lat": "41.701247",
            "lon": "-93.050067",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-nhr-ststephensepiscopalchurch-3-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Stephen&#039;s Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.701247,-93.050067\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Stephen’s Episcopal Church is an excellent example of the relatively unusual “Carpenter Gothic” style. Construction began in 1871 and was completed in 1874. St. Stephen&#039;s is the oldest church in the Newton area. The St. Stephen&#039;s Episcopal Church was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t223 E 4th St N<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Emerson Hough Elementary School",
            "lat": "41.703436",
            "lon": "-93.045109",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-emersonhoughelementaryschool-2-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Emerson Hough Elementary School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.703436,-93.045109\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">38mi.</span></div>\n\t\t</div>\n\n\t\t<p>Historically, the Emerson School is significant for its association with the development of the Platoon School educational system in Iowa. The system divided each grade into two &quot;platoons&quot; that each spent on-half of the day learning fundamental subjects and the other half learning specialty subjects such as art. The Emerson Hough Elementary School was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t700 N 4th Ave E<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fred Maytag Park Historic District",
            "lat": "41.688372",
            "lon": "-93.055467",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-nhr-maytagpark-8-3-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fred Maytag Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.688372,-93.055467\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">38.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The park was constructed by Newton industrialist Fredrick L. Maytag as a gift to the residents of Jasper County. The property is locally significant as an example of a privately-funded public park built during the depression. The park includes the Fred Maytag Bowl, a historic bandshell. The Maytag Bowl was renovated in 2013 and is home to many shows held throughout the year. The Fred Maytag Park Historic District was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 S 11th Ave. W<br />Maytag Park<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.791.0859</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://ia-newton.civicplus.com/index.aspx?nid=91\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Slayton Farms Round Barn",
            "lat": "42.514359",
            "lon": "-93.292840",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-slaytonfarmsroundbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Slayton Farms Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.514359,-93.292840\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">38.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Slayton Farms Round Barn is one of sixteen round barns built by Johnson Brothers Clay Works of Fort Dodge, Iowa. The barn was built in 1915, constructed of hollow clay tiles with a gambrel roof and a hay dormer. It was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t20478 135th St.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "August H. Bergman House",
            "lat": "41.699143",
            "lon": "-93.045684",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-nhr-augusthbergmanhouse-4c2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">August H. Bergman House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.699143,-93.045684\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">38.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bergman house is a one storied, Mission style home and is significant for its unique architecture. It is a rare example of Mission style architecture, because the style is mostly used on the West Coast and in the Southwest. The August H. Bergman House was added to the National Register of Historic Places in 1989.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t629 1st Ave. E<br />Newton, IA 50208<br />Jasper County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Wilmer and Rose Johnson House",
            "lat": "42.039210",
            "lon": "-92.900070",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a93d45053647a2847.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wilmer and Rose Johnson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.039210,-92.900070\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">38.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Wilmer (1909-1979) and Rose (1909-2006) were both Marshalltown natives and were heavily involved in the local branch of the NAACP. \r\n\r\nRose Johnson purchased this house around 1940 and the couple resided at the house after their marriage in 1943. They lived in this home at least through 1960.\r\n\r\nRose Johnson led membership campaigns for the NAACP and with her leadership grew the Marshalltown membership from five members in 1936 to 121 members in 1947. \r\n\r\nIn 1940, she was elected as Education Committee Chair of the Iowa NAACP. She served as State President in 1947 and 1948 - the first non-Des Moines resident to serve in that capacity.\r\n\r\nWilmer Johnson became more involved in the local NAACP after his marriage to Rose, eventually serving as local and state president.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t741 May St.<br />Marshalltown, IA 50158<br />Marshall County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Scotch Ridge United Presbyterian Church",
            "lat": "41.473314",
            "lon": "-93.558258",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-nhr-scotchridgeunitedpresbyterianchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Scotch Ridge United Presbyterian Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.473314,-93.558258\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">38.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Scotch Ridge Presbyterian Church was organized in 1853 by Scotch pioneers who brought with them the customs of their native Associate Presbyterian Church. This church building, a well preserved example of early Gothic Revival architecture, was built in 1885. With a belfry, lancet arched windows and door openings and trefoil ornamentation, the church architecture shows that the congregation conformed to the 19th century concept that church designs must be medieval to be “real” churches. This church joins Grant Wood’s American Gothic House in Eldon, Iowa, in representing several such structures throughout the state whose simplicity and starkness against the rural landscapes are eminently picturesque. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t13015 Scotch Ridge Rd<br />Carlisle, IA 50047<br />Warren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.287.2162</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "River Street Bridge",
            "lat": "42.517685",
            "lon": "-93.268266",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-bridge-nhr-riverstreetbridge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">River Street Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.517685,-93.268266\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bridge was built in 1924 by the Welden Brothers Construction Company. The only major change to the original structure was the widening of its deck in 1958 and removal of the original guardrails and electroliers. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRiver St.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "George Reeves Historic Marker",
            "lat": "42.571699",
            "lon": "-93.845870",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Reeves Historic Marker</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.571699,-93.845870\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>George Reeves (1914-1959) was born as George Keefer Brewer in Woolstock. Shortly after his birth, the future actor and his mother re-located to Galesburg, Illinois - but that doesn&#039;t stop Woolstock from noting their native son on a community sign. \r\n\r\nReeves portrayed Superman from 1952-1958 in &quot;Adventures of Superman.&quot;</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. C70 &amp; Alice St.<br />Woolstock, IA 50599<br />Wright County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Washington Avenue Bridge",
            "lat": "42.519637",
            "lon": "-93.270649",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-bridge-nhr-washingtonavenuebridge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Washington Avenue Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.519637,-93.270649\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Washington Avenue Bridge was built in 1934 by the Weldon Brothers Construction Company after it was designed by the Iowa State Highway Commission. It has carried heavy-urban traffic with only maintenance-related repairs since its construction. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWashington Ave.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Metropolitan Opera House",
            "lat": "42.519428",
            "lon": "-93.263633",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-theater-nhr-metropolitanoperahouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Metropolitan Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.519428,-93.263633\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Reopened in 2013, the Metropolitan Theater was originally constructed in 1899 and known as an opera house. Also funded by Eugene Ellsworth, who played a hand in the construction on the Carnegie Ellsworth Library, the theater was beautifully furnished and was considered by some to be even better than the opera house in Des Moines. Today the former opera house now operates as a local movie theater. It was added to the National Register of Historic Places in 1975.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t513 Washington Ave.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ellsworth-Jones Building",
            "lat": "42.519481",
            "lon": "-93.263531",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-ellsworthjonesbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ellsworth-Jones Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.519481,-93.263531\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ellsworth-Jones building was built in 1902. Eugene Ellsworth was a land broker, town developer, and philanthropist of immense success. The firm of Ellsworth and Jones purchased and sold land throughout the state of Iowa and across the Midwest. Ellsworth also worked to endow Ellsworth College. This building was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t511 Washington Ave.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First National Bank",
            "lat": "42.519471",
            "lon": "-93.264364",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-firstnationalbank.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First National Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.519471,-93.264364\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First National Bank was designed by the Lytle Company from Sioux City, which specialized in bank designs and favored the Neo-classical style. It was built in 1918 and played a key role in the commercial growth of the community. It was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 Washington Ave.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "McClanahan Block",
            "lat": "42.519496",
            "lon": "-93.264847",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-mcclanahanblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McClanahan Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.519496,-93.264847\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction on the McClanahan Block began around 1913. It serves as an example of the simplified commercial design that became popular after in 1910 and illustrates the continued commercial development In Iowa Falls as the automobile grew in popularity. It was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t613 Washington Ave.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Princess Sweet Shop",
            "lat": "42.519495",
            "lon": "-93.264591",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-princesssweetshop.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Princess Sweet Shop</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.519495,-93.264591\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Princess-Sweet Shop was designed by L.L. Kippel and built by J.J. Sprague in 1935. It was opened by Greek immigrants who commonly established candy shops around the country. The Princess remained in business until 1987, and was purchased by the present owners in 1990. While most of the original fixtures remain, not enough of the candy making equipment could be found, so handmade candy from Des Moines is sold here instead. It was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t607 Washington Ave.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sentinel Block",
            "lat": "42.519763",
            "lon": "-93.265634",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-sentinelblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sentinel Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.519763,-93.265634\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sentinel Block was built in 1905, and was the last home of Iowa Falls&#039; first newspaper. It&#039;s prominence illustrates the important position held by community newspapers during the late 19th and early 20th centuries. It was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t702 Washington Ave.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Matthew&#039;s by the Bridge Episcopal Church",
            "lat": "42.518582",
            "lon": "-93.263325",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-stmatthewsbridgeepiscopalchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Matthew&#039;s by the Bridge Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.518582,-93.263325\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Matthew&#039;s by the Bridge Episcopal Church was designed by Robert Layton and built in 1913, in a quiet, simplified style. The church was built around the same time that the first Oak Street Bridge was built to connect the two sides of the town. The church was located to serve people from both parts of the community. It was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t501 Railroad St.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Women&#039;s Relief Corps Hall",
            "lat": "42.519766",
            "lon": "-93.265951",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-womensreliefcorpshall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Women&#039;s Relief Corps Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.519766,-93.265951\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Women&#039;s Relief Corps was organized nationally in 1883, and was one of at least three women&#039;s organizations created to serve the country&#039;s veterans. The WRC Hall has also been called the American Legion Hall. It was built in 1898, and added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t710 Washington Ave.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Washington Avenue Historic Commercial District",
            "lat": "42.519637",
            "lon": "-93.264191",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-washingtonavenuehistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Washington Avenue Historic Commercial District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.519637,-93.264191\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Washington Avenue Historic Commercial District illustrates the commercial development of a community that was not a county seat from. Construction on the district began in 1857, and these buildings housed the vital goods and services necessary to the community as well as entertainment venues like the Metropolitan Opera House and the Rex Theater. The district was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t518 Washington Ave.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Scenic City Empress Boat Club",
            "lat": "42.523907",
            "lon": "-93.270913",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-heritagearea-sceniccityempressboatclub.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Scenic City Empress Boat Club</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.523907,-93.270913\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Empress Boat Club, a 1937 log cabin, is situated on the Iowa River and is home to the Empress Riverboat. Enjoy a public cruise or book a private event. Soak in the beautiful scenery of the limestone bluffs while listening to the captain&#039;s monologue. From agriculture to industry, you will be entertained by the Iowa River interpretation!</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1113 Union St.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.873.1936</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iafalls.com/empress_new/home.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Estes Park Band Shell",
            "lat": "42.520713",
            "lon": "-93.264783",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-estesparkbandshell.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Estes Park Band Shell</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.520713,-93.264783\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Estes Park Band Shell was designed by L.L. Kippel and built in 1931. It continues to be a focal point of community activities and was added to the national Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tEstes St.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Federal Building (U.S. Post Office)",
            "lat": "42.520772",
            "lon": "-93.265715",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-federalbuildingpostoffice.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Federal Building (U.S. Post Office)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.520772,-93.265715\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Post Office was built in 1914 by Thayer and Thayer, during the time that the U.S. Government was increasing its efforts to construct buildings in communities to house federal services such as courtrooms and post offices. It has retained a high level of historic integrity since its construction. It was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 Main St.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Edgewood",
            "lat": "42.523854",
            "lon": "-93.268311",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-edgewoodschoolofdomesticart.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Edgewood</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.523854,-93.268311\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Edgewood, originally built in 1909 as the &quot;Edgewood School of Domestic Art&quot; was a school for young women. The school was founded by Eva Harrington Simplot and expressed several elements of the social reform movement of the time: individual philanthropy, concern for the status and condition of women, and courses of instruction designed to &quot;help people help themselves.&quot; The school closed nearly 30 years later in 1937. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t719 River St.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Carnegie Ellsworth Building",
            "lat": "42.521709",
            "lon": "-93.263811",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-historymuseum-nhr-ellsworthcarnegiepubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carnegie Ellsworth Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.521709,-93.263811\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1904, the Carnegie Ellsworth Public Library is one of twenty-two public libraries in Iowa constructed under the 1903 Carnegie grants. Additionally, Eugene S. Ellsworth also made a donation to the construction of the building, hence the name Carnegie Ellsworth. The library is one of the more elaborate buildings constructed under the grant, with beautiful Ionic columns framing a pavilioned entrance. The library is open to the public year round.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t520 Rocksylvania Ave.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.648.4017</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Iowa Falls Historical Dow House",
            "lat": "42.521954",
            "lon": "-93.264464",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-historymuseum-dowhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Falls Historical Dow House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.521954,-93.264464\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dow House was built in the early 1900s is headquarters of the Iowa Falls Historical Society. The house features a unique combination of period furnishings and décor, including a petit point collection and early photos from the Iowa Falls community. The house is open May through August, just in time to highlight the beautiful period style garden.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t519 Stevens St.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.648.4017</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowa Falls Union Depot",
            "lat": "42.521196",
            "lon": "-93.256491",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-iowafallsuniondepot.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Falls Union Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.521196,-93.256491\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Falls Union Depot was built in 1902 by the Illinois Central Railroad. It is a modest but graceful example of the brick passenger stations that the Illinois Central began building in the early 20th century. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Rocksylvania Ave.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Steamboat Rock Community School",
            "lat": "42.408012",
            "lon": "-93.065199",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-steamboatrockcommunityschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Steamboat Rock Community School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.408012,-93.065199\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Steamboat Rock school building was built by Harry Reimer and Glen Ralston in 1928. It represents one of the few successful rural school consolidations in the mid to late 1920s, and was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t306 W Market St.<br />Steamboat Rock, IA 50672<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Steamboat Rock Historical Society",
            "lat": "42.408569",
            "lon": "-93.066791",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-historymuseum-steamboatrockhistoricalsociety.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Steamboat Rock Historical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.408569,-93.066791\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in what used to be a bank, Masonic Lodge, and telephone company, the Steamboat Rock Historical Society is hard at work preserving the long and unique history of Steamboat and Hardin County. The museum operated by the historical society explores the history of the building and more broadly of the town in which it came to be located in. The museum is open every Saturday Memorial Day through Labor Day.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t409 W Market St.<br />Steamboat Rock, IA 50672<br />Hardin County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.steamboat-rock-historical-society.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Union Cemetery &amp; Gardener&#039;s Cottage",
            "lat": "42.528121",
            "lon": "-93.270245",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Union Cemetery &amp; Gardener&#039;s Cottage</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.528121,-93.270245\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Gardener&#039;s Cottage in Union Cemetery was built in 1918 by W.L. Peddicord under a contract issued by the Ladies Social Gathering. This group of women has owned and operated Union Cemetery since it was established in 1859. It was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCedar St.<br />Union Cemetery<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mills Tower Historic District",
            "lat": "42.522695",
            "lon": "-93.248609",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-nhr-millstowerhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mills Tower Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.522695,-93.248609\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction on the Mills Tower district began around 1909 by the Illinois Central Railroad. The Mills Tower is one of the last physical reminders of the events that lead to the state&#039;s only major north-south passenger line, the &quot;Spine Line.&quot; It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW 2nd St.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Eagle City Winery",
            "lat": "42.470347",
            "lon": "-93.147984",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Eagle City Winery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.470347,-93.147984\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in the heart of the Iowa River Greenbelt, Eagle City Winery produces an assortment of award winning wines. Visitors can tour the vineyard to see the different varieties of grapes, sample free wine daily in the tasting room or buy a bottle to take home. The Eagle City Winery is a Silos and Smokestacks National Heritage Area.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t28536 160th St.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.648.3669</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.eaglecitywinery.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "J. G. and Regina Long House",
            "lat": "41.551877",
            "lon": "-93.198673",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J. G. and Regina Long House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.551877,-93.198673\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">40mi.</span></div>\n\t\t</div>\n\n\t\t<p>The J.G. and Regina Long House was built just east of Monroe, at Maple Grove Hill Farm, in the 1865. The Longs had moved to Iowa from Pennsylvania, raised cattle and planted maple trees. The home is an outstanding embodiment of Victorian residential architecture embellished with rich detailing. The J.G. and Regina Long House was added to the National Register of Historic Places in 1997, and in 2012 it was threatened with demolition. Sherri Meeker, of Stockton, Missouri, launched a campaign to save the home and worked with the property owner to save the home. She had it moved to a site similar to the site it was moved from – on the north side of an east-west road – so the home could remain on the National Register of Historic Places. The J.G. and Regina Long House was moved to its new site in February 2013 and re-listed on the National Register of Historic Places in 2014.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t8628 S 104th Ave. W<br />Prairie City, IA 50228<br />Jasper County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lincoln Highway: Raccoon River Rural Segment",
            "lat": "42.012254",
            "lon": "-94.430161",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lincoln Highway: Raccoon River Rural Segment</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.012254,-94.430161\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">40.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction on this segment of the Lincoln Highway lasted from 1912 to 1928. It shows the evolution of highway engineering standards during its construction. It was modified in 1920 when the jog at Danger Hill was realigned. It was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t237th St.<br />Jefferson, IA 50129<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Yale High School Gymnasium",
            "lat": "41.774326",
            "lon": "-94.357452",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Yale High School Gymnasium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.774326,-94.357452\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">40.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>It was built in 1932 as Iowa&#039;s first roundhouse of rebounds. Today, it&#039;s one of the state&#039;s most treasured historic buildings. The Yale High School Gymnasium, with its distinctive round architectural design, is listed on the the National Register of Historic Places. In its heyday, it was home to the Yale Bulldogs boys and girls basketball teams and hosted band concerts, commencements, plays and banquets – even the Harlem Globetrotters – until 1961. Located in Guthrie County, the gymnasium&#039;s historic significance is tied to its use for team sports (1932-1961) and its association with Halver R. Straight, who received a degree in mechanical engineering from the University of Illinois in 1907 and spent his career in the ceramics industry. An inventor as well as an engineer, he held 87 patents for tools and instruments used in clay manufacturing. His collection of 1,500 minerals and 600 fossils and artifacts is on permanent loan to Drake University. The curving clay tile block used to build the gymnasium is the same type used in silo construction, and it was a major product of the Adel Clay Products Company that Straight purchased in 1907 and sold in 1926. Smooth, slightly-curving blocks were used in silos because they eliminated angled corners that caught and held silage. The glazed tiles also helped keep silage from sticking and reduced moisture absorption. The city of Yale selected the gymnasium&#039;s unique design as a way to raise the town&#039;s status in regional sports and as a source of community pride, the nomination form said. But Halver most likely pitched the design to give him an opportunity to stretch his engineering design skills. When it was finished, the gymnasium included a stage and bleachers in addition to the small court that measured about 65-by-30 feet – NBA courts measure 94-by-50 feet. Its corners were rounded off and the walls were considered out-of-bounds. The gymnasium was the first building of its kind in the state, but some people have claimed the Dexter Community House came first because it was built in 1916-17. The Dexter structure, however, was not built as a gymnasium and has an elliptical ground plan with a dome-shaped roof. Another contender, the New Providence School Gymnasium, closely resembles the Yale gymnasium but it has a rectangular pavilion entrance and was built in 1935-36. With its first-in-the-state status firmly secured, the Yale gymnasium hosted its inaugural basketball games on March 24, 1932, a boys-girls doubleheader between Yale and Panora. Later, the Harlem Globetrotters came to town and played in the tiny, intimate space, according to the nomination form. The gymnasium hosted its last basketball game in 1961 when Yale merged with schools in Jamaica and Bagley to form the Yale-Jamaica-Bagley Raiders. The new consolidated school existed from 1961 until 1989 when it merged with Panora-Linden to form the Panorama Panthers.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t414 Lincoln St.<br />Yale, IA 50277<br />Guthrie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "The Garden Barn",
            "lat": "41.438686",
            "lon": "-93.580103",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-barn-thegardenbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Garden Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.438686,-93.580103\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">40.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Garden Barn was built in 1886 in the post and beam construction method. The barn and surrounding gardens are open seasonally from April through Christmas.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t11879 G 24 Hwy<br />Indianola, IA 50125<br />Warren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.962.0024</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thegardenbarn.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Grand Army of the Republic Museum",
            "lat": "41.590752",
            "lon": "-94.195495",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand Army of the Republic Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590752,-94.195495\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">41.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grand Army of the Republic (GAR) Lodge was built in the 1880s and is the only remaining building left from the original town of Redfield, due to a fire that destroyed the downtown area in 1900. The Marshall Post of the GAR met in the building to honor those killed in the Civil War and discuss community events such as charity efforts and other projects supporting the community. The post assisted the families of soldiers who died or were seriously injured in the war. Over the years the building fell into disrepair and was saved by a local family who purchased the building and donated it to the Dallas County Conservation Board to be restored to its 1880s appearance. Today, a museum commemorating the post is housed in the building and is open to the public various times throughout the year and by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1213 Thomas St.<br />Redfield, IA 50233<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Chicago, Milwaukee, St. Paul and Pacific Railroad: Redfield Depot",
            "lat": "41.587699",
            "lon": "-94.195459",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-undergroundrailroad-chicagomilwaukeestpaulandpacificrailroadredfielddepot.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago, Milwaukee, St. Paul and Pacific Railroad: Redfield Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587699,-94.195459\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">41.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>A sign at the Depot trailhead on the Raccoon River Valley Trail in Redfield commemorates the role Redfield played in the Underground Railroad. Johnathan M. Murray, an abolitionist from Maine, lived just over a mile east of Redfield and was active in assisting runaway slaves to freedom. This is stop #7 on the Freedom Trail tour: On February 16, 1859, John Brown and his group arrived at Murray’s house and rested here overnight before continuing east the next day.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t636 1st St.<br />Redfield, IA 50233<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Heritage Hall Museum",
            "lat": "42.224757",
            "lon": "-92.872566",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Heritage Hall Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.224757,-92.872566\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">41.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Conrad&#039;s Heritage Hall Museum, located at City Hall, documents the history of Conrad&#039;s war veterans, railroad, commercial businesses, medical practices and more. Open by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t204 E Center St.<br />Conrad, IA 50621<br />Grundy County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.366.2300</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Herman Wood Round Barn",
            "lat": "42.558094",
            "lon": "-93.249945",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Herman Wood Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.558094,-93.249945\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">41.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Herman Wood Round Barn was designed by Matt L. King and built in 1916 by the owner, Herman Wood. It was constructed of clay tile and has a unique structure, measuring 122 feet around with a 20 foot silo extending out of a flat roof. It was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1342 Hardin Rd.<br />Iowa Falls, IA 50126<br />Franklin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Oleson Park Music Pavilion (Karl King Bandshell)",
            "lat": "42.488983",
            "lon": "-94.172430",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-nhr-olsesonparkbandshell.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oleson Park Music Pavilion (Karl King Bandshell)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.488983,-94.172430\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">41.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Oleson Park Music Pavilion was the home base of bandmaster, Karl King, from its construction in 1938 until his death in 1971. King was a prolific composer of music for concert and military bands known the world over. The project to built the pavilion was championed by King with the help of State Senator Edward Breen and Walter Engelbart, who helped fund 85% of the cost as a Works Progress Administration (WPA) project. The Oleson Park Music Pavilion was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1400 Oleson Park Ave.<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Olaf Martin Oleson Monument",
            "lat": "42.488747",
            "lon": "-94.172029",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-monument-olafoleson.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Olaf Martin Oleson Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.488747,-94.172029\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">41.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Olaf Martin Oleson was born in Norway and emigrated to the United States in 1870, finding employment on a farm near Fort Dodge. Oleson attended the Philadelphia College of Pharmacy and later returned to Iowa and established the Oleson Drug Company, a retail and wholesale drug business. Oleson founded numerous organizations in Fort Dodge including the Fort Dodge Light and Power Company, Fort Dodge Telephone Company, Fort Dodge Hotel Company and Oleson Land Company. Oleson was also a successful botanist and his plant collection was adopted as a model for the collection at Iowa State University. He was elected state senator and represented his district in the upper house of the general assembly from 1891-1895. Oleson donated the property for the park that bears his name.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1400 Oleson Park Ave.<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Saint Patrick&#039;s Irish Settlement",
            "lat": "41.427669",
            "lon": "-93.792875",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-saintpatricksirishsettlement.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Saint Patrick&#039;s Irish Settlement</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.427669,-93.792875\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">42.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Saint Patrick&#039;s Irish Settlement was founded by Father Timothy Mullen who came to Polk County in 1850 at the direction of Bishop Mathias Loras of Dubuque to minister to the Catholic community around Fort Des Moines and to purchase land for the establishment of a colony in the central Iowa area. This new settlement was located southwest of Des Moines and was first cited in 1850. Over the next decade, the Irish Settlement extended over four townships in two counties, with 40 families located in Madison County. In 1868 a new church was built under the leadership of Father John F. Brazil, and this remained the focal point of the area’s Irish-American religious life until 1884, when the parish was divided at the North River with all members south of the river associated with a new parish at Churchville in Warren County. St. Patrick’s Irish Settlement was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3392 155th St.<br />Cumming, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Palmyra Methodist Episcopal Church",
            "lat": "41.434366",
            "lon": "-93.435072",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-nhr-palmyramethodistepiscopalchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Palmyra Methodist Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.434366,-93.435072\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">42.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Palmyra Methodist Episcopal Church was built between 1867 and 1870, making it the oldest religious structure in the county. It stands in a rural area with about 20 houses nearby, the remains of the town of Palmyra. The church served as a social and cultural center for the surrounding rural area through at least 1918. The bell tower was added in 1914.  The church has not been home to a congregation for some years, and the land is held by township trustees. Local sentiment is dividing between preserving and removing the church. Artist P. Buckley Moss has used the church in some of her paintings. The Palmyra Methodist Episcopal Church was added to the National Register of Historic Places in 1979</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. G24<br />Carlisle, IA 50047<br />Warren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Fort Museum and Frontier Village",
            "lat": "42.488008",
            "lon": "-94.199220",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-historymuseum-fortmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fort Museum and Frontier Village</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.488008,-94.199220\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">42.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fort Museum and Frontier Village is dedicated to the history of Fort Dodge. Fort Dodge was originally named Fort Clarke, but was changed to Fort Dodge in 1851. The soldiers operated the fort until 1853 when the troops were ordered to be sent north to fight the Sioux tribe. William Williams, the post Sutler, or civilian storekeeper, purchased the fort and buildings and in 1854 and plotted the town of Fort Dodge. The Fort Museum and Frontier Village chronicles the military history of the fort, as well as the growth of the city, and the frontier area of Fort Dodge.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBus. Hwy 20 and Museum Rd.<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.573.4231</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.fortmuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John Wilson House",
            "lat": "41.507061",
            "lon": "-94.093067",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-nhr-johnwilsonhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Wilson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.507061,-94.093067\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">42.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1861, the John Wilson house is a significant local example of stone construction in a simple, traditional form. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t19866 365th St.<br />Earlham, IA 50072<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "McBroom-Hargis Barn",
            "lat": "41.471450",
            "lon": "-94.017357",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-barn-mcbroomhargisbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McBroom-Hargis Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.471450,-94.017357\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">42.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn was constructed in the mid-1880s and was designed by I.F. Carter of De Soto. When it was built, the barn was described in the local newspaper as the largest barn in the area. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1218 US Hwy. 169<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Wilson Barn",
            "lat": "41.471386",
            "lon": "-94.018446",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-barn-wilsonbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wilson Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.471386,-94.018446\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">42.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This is a pegged horse barn that was built around 1883. It features a full floor and a limestone foundation.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1217 US Hwy. 169<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Beeler Barn",
            "lat": "41.445792",
            "lon": "-93.942586",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-barn-beelerbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Beeler Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.445792,-93.942586\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Beeler barn is located in an area that was once a strong German settlement. The barn’s construction date is unknown, but it is believed to have been built by the Berger family.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2569 140th St.<br />Van Meter, IA 50261<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Martens Barn",
            "lat": "41.474971",
            "lon": "-94.032116",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-barn-martensbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Martens Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.474971,-94.032116\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Martens Barn was built in the 1870s, possibly by A.M. Peters who settled the property in 1868. The Martens family purchased the farm in 1915. The north barn was the cattle barn and crib; the south barn was used for horses. A manure bucket system runs on an S-curve track around the basement of this barn. At some time, an old homesteader&#039;s claim shack was moved between the two barns for additional storage.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2091 120th St.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Ringland-Smeltzer House",
            "lat": "42.502841",
            "lon": "-94.183342",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-nhr-ringlandsmeltzerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ringland-Smeltzer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.502841,-94.183342\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ringland Smeltzer House was built by George Ringland, an entrepreneur whose patent for the improvement of plaster contributed to the growth of the gypsum industry and the creation of the U.S. Gypsum Company. Ringland&#039;s daughter Jeannie married Charles Smeltzer and together they lived most of their married life in the home. Mrs. Smeltzer was a highly talented pianist, composer and teacher of music. She and her husband donated the property for the construction of the Blanden Memorial Art Museum in 1932. Mr. and Mrs. Smeltzer&#039;s daughter, Anna was greatly interested in the arts and her art acquisitions eventually became the basis for the Blanden Art Museum’s fine collection of early twentieth century artists.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1020 3rd Ave S<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.573.2229</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://smeltzertrust.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Miller Barn (Madison County)",
            "lat": "41.474993",
            "lon": "-94.029229",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-barn-millerbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Miller Barn (Madison County)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.474993,-94.029229\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Miller Barn in Madison County was built in the teens or twenties. This early twentieth century barn has center hay storage from ground to roof. The Miller Barn was featured on the Historic Spring Barn Tour in 2013. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2107 120th St.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Oak Hill Historic District",
            "lat": "42.502464",
            "lon": "-94.183954",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-nhr-oakhillhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oak Hill Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.502464,-94.183954\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Oak Hill Historic District consists of 15 homes which together reflect the changing architectural styles of the post Civil War period, 1870-1910, and the prosperity and optimism which dominated in Fort Dodge during its golden era. The variety of artistic expressions, when keyed to dates of construction, provide clear examples of the architectural styles which followed one another swiftly through the latter 19th and early 20th centuries, from Italianate and Second Empire to the long lines of Frank Lloyd Wright’s Prairie School styles. Collectively, these residences reflect the taste and cultural vitality of the community’s leading citizens during a time that spanned the transition from town growth to urban maturity. The Oak Hill Historic District was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tFort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Webb Vincent House",
            "lat": "42.502484",
            "lon": "-94.185662",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-nhr-webbvincenthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Webb Vincent House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.502484,-94.185662\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Webb Vincent family moved into this home October 17, 1879, and it was occupied continuously by the Vincent family until the death of Mrs. Anne R. Vincent, November 1, 1969. Mr. Webb Vincent was one of the first early promoters of the gypsum industry in Fort Dodge which has the largest deposit of gypsum in the world. The Webb Vincent House was added to the National Register of Historic Places in 1973.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t824 3rd Ave S<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wahkonsa Hotel",
            "lat": "42.505173",
            "lon": "-94.184948",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-nhr-wahkonsahotel.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wahkonsa Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.505173,-94.184948\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The early 1900s saw the downtown central business district of Fort Dodge booming. The town was accessible to four major railroads and was receiving on average, 1,900 visitors per day. The construction of a first-class hotel was believed to lead directly to improvements of all aspects of life in Fort Dodge. The Wahkonsa Hotel, named for the city&#039;s pioneer hotel Wahkonsa House, held its grand opening in September 1910. The hotel was designed by prominent Iowa architects Liebbe, Nourse &amp; Rasmussen and resulted in accolades and praise during the opening year. The Wahkonsa Hotel was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t927 Central Ave.<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First National Bank Building (Fort Dodge)",
            "lat": "42.504673",
            "lon": "-94.188886",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-nhr-firstnationalbank-fortdodge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First National Bank Building (Fort Dodge)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.504673,-94.188886\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First National Bank was the most prominent financial institution in Fort Dodge and the six-story building, completed in 1908, marked the entrance of the skyscraper era in Fort Dodge. Bank president at the time, Webb Vincent, hired one Liebbe, Nourse and Rasmussen, of Des Moines, one of the state&#039;s most prestigious architectural firms. The upper floors provided office space and it immediately became home to many of the city&#039;s lawyers, doctors, realtors, accountants and gypsum companies. In December 1930 the institution had been reorganized as the First State Bank and Trust Company. A few years later, in the midst of the Great Depression, the bank failed - its $8 million in deposits had plummeted to only $355,000. It was placed under state receivership and in July 1934 closed altogether, and a new institution, the State Bank, opened in the original First National Bank building. The building was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t629 Central Ave.<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fort Dodge Downtown Historic District",
            "lat": "42.504910",
            "lon": "-94.188811",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-nhr-fortdodgedowntownhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fort Dodge Downtown Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.504910,-94.188811\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Downtown Historic District is representative of the continuum of commercial development beginning in 1854 and continuing through 1964. Contributing structures in the district include the Garmoe Building (516 Central Ave.), Fort Dodge Municipal Building (819 1st Ave. S), Masonic Temple (1021 1st Ave. N), Warden Plaza (908 1st Ave. S), Beh Building (629 Central Ave.), Boston Centre (809 Central Ave.) and Carver Building (1003 Central Ave.). The district was listed on the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tFort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Webster County Courthouse",
            "lat": "42.504870",
            "lon": "-94.188384",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-nhr-webstercountycourthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Webster County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.504870,-94.188384\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The current courthouse is Webster County&#039;s third, the first being at Homer, the first county seat. A vote on April 7, 1856 made Fort Dodge the new county seat and it took another five years until a plain two-story building was ready in 1861. The need for a new courthouse that could keep up with the growth of the county was approved on November 7, 1899 and the  current Webster County Courthouse was formally dedicated on September 12, 1902. It was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t701 Central Ave<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-ballrooms.png",
            "title": "Laramar Ballroom",
            "lat": "42.506109",
            "lon": "-94.188490",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-historicballroom-laramar.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-ballrooms.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Laramar Ballroom</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.506109,-94.188490\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Laramar Ballroom building was built in 1904 as the National Guard Armory facility for Company G, 56th Infantry. The armory served as the regimental band&#039;s (Quist Band) rehearsal hall until the end of 1910 when the band severed their relationship with the National Guard. The armory building survives today as the Laramar Ballroom.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t710 1st Ave. N<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Webster County Historical and Genealogical Society",
            "lat": "42.504462",
            "lon": "-94.192185",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-historicalsociety-webstercountyhistoricalandgenealogical.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Webster County Historical and Genealogical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.504462,-94.192185\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Webster County Historical Society was founded in 1971. The non-profit organization is dedicated to the preservation of the heritage of the county and surrounding area and the promotion of interest in local history. Headquartered at the Fort Dodge Public Library, the society maintains a library and historical archives, encourages publications, and holds monthly informative meetings on topics of local interest.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t424 Central Ave<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Kellogg Historical Museum",
            "lat": "41.715848",
            "lon": "-92.906766",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kellogg Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.715848,-92.906766\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kellogg Historical Museum is housed in several different downtown buildings to preserve the historical significance of Kellogg. Most of Kellogg&#039;s downtown area was burned down in 1908, therefore most of the buildings date from 1909 to the present. The main museum building, originally the Simpson Hotel, has a research library and exhibits. The Midwest-One Minute Factory and Kellogg Savings Bank Building are also part of the museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t218 High St.<br />Kellogg, IA 50135<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.526.3430</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Corpus Christi Church",
            "lat": "42.508839",
            "lon": "-94.188937",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-nhr-corpuschristichurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Corpus Christi Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.508839,-94.188937\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Corpus Christi Church can trace its beginnings to a Mass that was held in the home of Michael Collins in 1855. At the time the Fort Dodge area was a part of the Diocese of Dubuque, which covered the state of Iowa. The parish was founded the following year and the Rev. John Vahey was sent as its first pastor. It was the first parish founded in what would become the Diocese of Sioux City. The first church and rectory were built on the property the same year. The stone for the current church was quarried starting in 1879 with construction starting the following year. It was completed in 1881. The church was built in the Romanesque Revival style for $37,892.59. The convent, rectory and central heating plant were built between the years 1909 and 1932. The Church also operated a Parochial School until 1958. The Corpus Christi Church was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t416 N 8th St.<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Webster County",
            "lat": "42.500468",
            "lon": "-94.207884",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-monument-freedomrockwebstercounty-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Webster County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.500468,-94.207884\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Webster County Freedom Rock® in Fort Dodge is dedicated to those suffering from PTSD and it side effects and to those who do their best everyday to help warriors with their struggles. The artwork depicts a nurse with her hand on the shoulder of a soldier struggling with memories of battle and shows what some of those memories may be. Below that shows the soldier struggling later in life and clutching the medals he received in service.\r\n\r\nOn the back side are two local aviators and medal recipients. The first is Darrell Lindsey who was born in Jefferson, Iowa. He enlisted as an aviation cadet at Fort Des Moines on January 16, 1942. His medal citation reads: &quot;On August 9, 1944, Capt. Lindsey led a formation of 30 B-26 medium bombers in a hazardous mission to destroy the strategic enemy held L&#039;Isle Adam railroad bridge over the Seine in occupied France. With most of the bridges over the Seine destroyed, the heavily fortified L&#039;Isle Adam bridge was of inestimable value to the enemy in moving troops, supplies, and equipment to Paris. Capt. Lindsey was fully aware of the fierce resistance that would be encountered. Shortly after reaching enemy territory, the formation was buffeted with heavy and accurate antiaircraft fire. By skillful evasive action, Capt. Lindsey was able to elude much of the enemy flak, but just before entering the bombing run his B-26 was peppered with holes. During the bombing run, the enemy fire was even more intense, and Capt. Lindsey&#039;s right engine received a direct hit and burst into flames. Despite the fact that his ship was hurled out of formation by the violence of the concussion, he brilliantly maneuvered back into the lead position without disrupting the flight. Fully aware that the gasoline tanks might explode at any moment, Capt. Lindsey gallantly elected to continue the perilous bombing run. With fire streaming from his right engine and his right wing half enveloped in flames, he led his formation over the target upon which the bombs were dropped with telling effect. Immediately after the objective was attacked, Capt. Lindsey gave the order for the crew to parachute from the doomed aircraft. With magnificent coolness and superb piloting, and without regard for his own life, he held the swiftly descending airplane in a steady glide until the members of the crew could jump to safety. With the right wing completely enveloped in flames and an explosion of the gasoline tank imminent, Capt. Lindsey still remained unperturbed. The last man to leave the stricken plane was the bombardier, who offered to lower the wheels so that Capt. Lindsey might escape from the nose. Realizing that this might throw the aircraft into an uncontrollable spin and jeopardize the bombardier&#039;s chances to escape, Capt. Lindsey refused the offer. Immediately after the bombardier had bailed out, and before Capt. Lindsey was able to follow, the right gasoline tank exploded. The aircraft sheathed in fire, went into a steep dive and was seen to explode as it crashed. All who are living today from this plane owe their lives to the fact that Capt. Lindsey remained cool and showed supreme courage in this emergency.&quot;\r\n\r\nThe other pilot, Willis Moeller, a lifetime resident of Fort Dodge, was born April 19, 1922. Willie graduated Fort Dodge High School in 1940, received pilot training in Clarion, primary training in Pasco, Washington, instrument and gunnery training in Corpus Christi, Texas and operational training in Deland, Florida. He went overseas with a fighter pilot replacement group in Nov 1944. In 1945 he was assigned to the USS Hancock in the South Pacific. Willie earned the Distinguished Flying Cross as a result of rescuing a downed pilot during during the battle of Kagoshima Bay.\r\n\r\nThe final piece is a nod to the Fort Dodge Dragoons. The 1st U. S. Dragoons, the country&#039;s first mounted infantry unit marched in the summer of 1835, to scout Iowa after the Black Hawk Purchase of 1832 put the area under U.S. control. The march lead to the establishment of outposts from present-day Fort Dodge and Webster City, as well as, Des Moines to Pella and Knoxville. One man in particular, Dr. Bill Ryan, an Army volunteer himself, was very active in the Fort Dodge community and in particular held the rank of Colonel in the Dragoons. \r\n\r\nThe Webster County (Fort Dodge) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2016.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t129 A St.<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Oakland Cemetery",
            "lat": "42.521115",
            "lon": "-94.180657",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-nhr-oaklandcemetery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oakland Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.521115,-94.180657\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Oakland Cemetery, laid out in 1859, is situated on the rolling hills overlooking Soldier Creek. On the high ground of the cemetery stands a monument to the unknown soldiers of the Civil War. Nearby, at the northwest corner of Section D are the grave sites of two African American Civil War soldiers, Joseph Kinner and Joseph A. Palmer. Unique tree stump grave markers belonging to Peter and Elizabeth Simmons can be found in Section G. These grave markers symbolize a life cut short, Peter having died during the Civil War and his wife twenty years later. The potter&#039;s field sits on the south side of the cemetery on the lowland near Soldier Creek. Potter&#039;s field contains nearly 500 burials, of which about 10% are marked. Burial in the potter&#039;s field was, and still is, based on inability to pay for the burial. Graves of many notable citizens of Fort Dodge including, Gov. Cyrus Carpenter, Major William Williams, Dr. Thomas Fitzhugh Grayson and William Kenyon are located throughout the cemetery. The Oakland Cemetery was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1600 N 15th St.<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Gov. Cyrus Carpenter Gravesite",
            "lat": "42.521903",
            "lon": "-94.181474",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-govgravesite-cyruscarpenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Cyrus Carpenter Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.521903,-94.181474\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Cyrus Clay Carpenter (November 24, 1829 – May 29, 1898) served as the 8th Governor of Iowa from 1872-1876. He died in Fort Dodge and is buried at Oakland Cemetery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1600 N 15th St.<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Civil War Monument: Webster County",
            "lat": "42.521991",
            "lon": "-94.179798",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-monument-civilwarsoldiers-oaklandcemetery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Civil War Monument: Webster County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.521991,-94.179798\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">43.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>On the high ground of Oakland Cemetery, in section D, stands a monument dedicated to the unknown soldiers of the Civil War. The monument was created in 1900 by local sculptor William Pollock, who was a Civil War soldier himself. The red granite sculpture takes the form of a Civil War soldier on a high pedestal with his rifle at parade rest. The inscription reads, &quot;Erected in memory of unknown soldiers of the Union Army, 1861-65, By Fort Donelson Post No. 236 Fort Dodge and citizens of Webster County, Iowa, Unveiled May 30, 1900.&quot;</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1600 N 15th St.<br />Oakland Cemetery<br />Fort Dodge, IA 50501<br />Webster County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Guthrie County Historical Village",
            "lat": "41.687637",
            "lon": "-94.366498",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/guthrie-historicsites-guthriecountyhistoricalvillage.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Guthrie County Historical Village</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.687637,-94.366498\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">44mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Guthrie County Historical Village features 12 historical buildings that date from 1851 through the early 1900s. Historical buildings on site include a log cabin, train depot with a restored caboose, law office and the Cass No. 7 School.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 W South St.<br />Panora, IA 50216<br />Guthrie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.755.2989</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://panora.org/museum\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Beaman Heritage Center",
            "lat": "42.220333",
            "lon": "-92.823778",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Beaman Heritage Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.220333,-92.823778\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">44.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Beaman Heritage Center is located at the public library at houses various genealogy research materials as well as local artifacts. On view outside of the center is a Howitzer Model 1908 World War I cannon brought to Beaman from Des Moines by the American Legion Auxiliary Weatherman Walter Unit 131.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t223 Main St.<br />Beaman, IA 50609<br />Grundy County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.366.2912</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "LeGrande Bridge",
            "lat": "42.027448",
            "lon": "-92.783250",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marshall-bridge-legrandbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">LeGrande Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.027448,-92.783250\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">44.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>An exhaustive study sponsored by the Iowa Department of Transportation evaluated the history, structure and evolution of Iowa highway bridges from 1868 through 1945. Of more than 8,400 bridges studied, only about 200 were eligible for nomination and 150 were accepted. Bridges which are unique or rare examples of important construction types or which have exceptional historical value were scored higher than bridges of common structural types or which had been altered.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. T37<br />Over Iowa River Backwater<br />Le Grand, IA 50142<br />Marshall County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Vernon Township No. 5 School",
            "lat": "42.656846",
            "lon": "-93.499509",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-historicschool-vernonschool.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vernon Township No. 5 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.656846,-93.499509\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">44.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Vernon Township No. 5 School was built in 1887 and is a typical one-room country school. It was moved from its original location in Vernon Township in to Dows and was restored and furnished with original desks, blackboards, and books.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 E Ellsworth St.<br />Dows, IA 50071<br />Wright County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.852.3595</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://dowsiowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Dows Depot Welcome Center",
            "lat": "42.657621",
            "lon": "-93.499622",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-nhr-dowsdepotwelcomecenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dows Depot Welcome Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.657621,-93.499622\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">44.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dows Depot Welcome Center was built in 1896 as a passenger depot for the Burlington, Cedar Rapids and Northern Railroad. The building, with its large rounded arches, compact plan, and low and predominant roof supported by large brackets, is the best extant example of Richardsonian Romanesque design influence in Dows. The welcome center and museum houses railroad memorabilia and local history displays. It was added to the National Register of Historic Places on Jan. 7, 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1896 Railroad St.<br />Dows, IA 50071<br />Wright County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.852.3595</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://dowsiowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fillmore Block",
            "lat": "42.656378",
            "lon": "-93.500009",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-nhr-fillmoreblock.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fillmore Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.656378,-93.500009\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">44.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fillmore Block, also known as the Dows Mercantile, was a hub of commercial business activity in Dows. It was the largest of 17 commercial buildings built following a disastrous fire that destroyed the commercial area in 1894. It was built for David H. Fillmore, a Civil War veteran, whose family was prominent in business and community activities. The building served as a mercantile selling clothing, dress goods, shoes, notions, groceries, hardware and more. It was added to the National Register of Historic Places on Nov. 20, 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t122 E Ellsworth St.<br />Dows, IA 50071<br />Wright County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Wright County",
            "lat": "42.656430",
            "lon": "-93.499255",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Wright County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.656430,-93.499255\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">44.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wright County Freedom Rock® has a unique, “lava rock” texture. One side of the rock features a Civil War veteran and an Iraq/Afghanistan veteran – book-ending the service of area veterans. The Civil War veteran pictured also connects with “To Preserve the Union,” the Civil War themed rest area nearby on I-35. President John F. Kennedy’s quote: “As we express our gratitude, we must never forget that the highest appreciation is not to utter words, but to live by them.” The back side of the rock honors Vietnam War veterans and has a few Huey helicopters in honor of a local veteran who served on and was wounded on one. The Wright County (Dows) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t296 E Ellsworth St<br />Dows, IA 50071<br />Wright County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Quasdorf Blacksmith and Wagon Shop Museum",
            "lat": "42.657621",
            "lon": "-93.500090",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-nhr-quasdorfblacksmith.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Quasdorf Blacksmith and Wagon Shop Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.657621,-93.500090\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">44.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Quasdorf Blacksmith and Wagon Museum was built in 1899 and served the people of Dows for more than 90 years. George F. Quasdorf operated the shop from 1899 until his death in 1933. Thereafter, his son Frank operated it as a blacksmith and welding business until 1990. The Dows Historical Society received the historic shop in 1990 through the will of owner Frank Quasdorf. One of the best equipped blacksmith shops in this part of the country, displays include a forge and bellows, blacksmith and welding equipment, tools, and wagon wheels. Visit the Dows Depot Welcome Center across the street to gain entry to the Quasdorf Blacksmith and Wagon Museum. The blacksmith shop was added to the National Register of Historic Places on Jan. 21, 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1896 Railroad St.<br />Dows, IA 50071<br />Wright County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.852.3595</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://dowsiowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Evans Little Prairie House",
            "lat": "42.658103",
            "lon": "-93.500148",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-historymuseum-evanslittleprairiehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Evans Little Prairie House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.658103,-93.500148\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">44.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This restored 14-foot by 16-foot, two room farm home was built in 1889, the home of Ingebret and Gudbjør (Olsdatter) Evans. The family emigrated from Norway in 1887 and joined Mr. Evans&#039; family near Dows, Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tAntique Alley<br />Dows, IA 50071<br />Wright County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.852.3595</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Hockett House Museum",
            "lat": "41.492292",
            "lon": "-94.121804",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-historymuseum-hocketthousemuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hockett House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.492292,-94.121804\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">44.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Earlham&#039;s history is lovingly preserved in the original 1860s home of founder, David and Mary Hockett. The Hockett House is a typical small settler home with a dining room, kitchen and two small bedrooms added over time. The museum is furnished with early settler furniture, including a daybed from Earlham&#039;s first furniture store. The surrounding flowerbeds are representative of late 19th century Iowa gardens. Hockett family members have lived in the house for much of its history. The house was updated in the 1940s by David Hockett&#039;s granddaughter, Gertrude Hockett Walton. The museum is operated by the Earlham Historical Society.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 NE Sycamore Ave.<br />Earlham, IA 50072<br />Madison County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.758.2006</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Earlham Public School",
            "lat": "41.491932",
            "lon": "-94.121141",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-earlhampublicschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Earlham Public School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.491932,-94.121141\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">44.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Earlham Public School is a striking reminder of the town&#039;s early commitment to quality education and its aspirations to become a major college town and educational center. Built with local limestone and brick in 1871, the school opened that fall with J.W. Johnson as principal and teacher for the upper grades and his wife as teacher for the primary grades. The Earlham Public School was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t205 NE Sycamore Ave.<br />Earlham, IA 50072<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Cunningham Bridge",
            "lat": "41.401844",
            "lon": "-93.861285",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cunningham Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.401844,-93.861285\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">44.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cunningham Bridge was built in 1886 by the George E. King Bridge Company of Des Moines to carry wagon traffic over the North River, approximately 5 miles northwest of Bevington. It is an early example of all-iron truss construction and one of the few substantial nineteenth-century wagon bridges remaining in Madison County. The Cunningham Bridge was added to the National Register of Historic Places in 1998 and was relocated to a pedestrian trail in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUpland Trl.<br />Bevington, IA 50033<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "National Balloon Museum and U.S. Ballooning Hall of Fame",
            "lat": "41.376346",
            "lon": "-93.559413",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-historymuseum-nationalballoonmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">National Balloon Museum and U.S. Ballooning Hall of Fame</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.376346,-93.559413\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">45.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The National Balloon Museum was established in Indianola because early National Hot Air Balloon Championships were hosted there. Through the 1970s, displays of baloon memorabilia were set up in various places around town. In 1986, ground was broken for a permanent museum and in 1988 National Balloon Museum, showcasing the history of ballooning, was dedicated. A 4,400 square foot addition was constructed in 2003 and in 2004 a Children&#039;s Learning Center was established.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1601 N Jefferson Way<br />Indianola, IA 50125<br />Warren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.961.3714</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://nationalballoonmuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Springbrook State Park",
            "lat": "41.776767",
            "lon": "-94.465463",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Springbrook State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.776767,-94.465463\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">45.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Land for Springbrook State Park was acquired in 1926, and construction lasted from 1935-1942. Work was done by the Civilian Conservation Corps, which was a New Deal Program designed to provide manual labor jobs for young men while implementing a natural resource conservation program in every state and territory. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2437 160th Rd.<br />Guthrie Center, IA 50115<br />Guthrie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "McDonald Barn",
            "lat": "41.970918",
            "lon": "-94.533531",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McDonald Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.970918,-94.533531\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">45.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>There are two historic barns on this beautiful farm. The original barn was built in 1876, but a storm blew the barn across the road in 1898. The family picked up the barn&#039;s pieces and rebuilt in 1903. The barn has 12x12-foot mortise and peg boards.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1756 F Ave.<br />Scranton, IA 51462<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Science Hall",
            "lat": "41.365099",
            "lon": "-93.562953",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-nhr-sciencehall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Science Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.365099,-93.562953\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">45.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Science Hall, designed and built in 1888, is the earliest known extant building in Iowa designed by Proudfoot and Bird, the architectural firm that ranked as one of the state&#039;s leading firms in the late 19th and early 20th centuries. Materials for the building were obtained locally, with the Warren County Coal, Brick and Tile Company providing 500,000 bricks for the building provided he could use $3,000.00 in endowment money for a year. Building contractor, Elias E. Proudfoot, was a well-known Indianola carpenter, and father of the architect, Willis Proudfoot. In addition to it’s architectural significance, Science Hall has historical significance. George Washington Carver studied art in the attic classroom from 1890-1891, before turning his focus from arts to science and transferring to Iowa State College at Ames. Later the building was re-named Wallace Hall, in honor of Henry A. Wallace. The building was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Buxton St<br />Simpson College<br />Indianola, IA 50125<br />Warren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Former Indianola High School",
            "lat": "41.362885",
            "lon": "-93.562748",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-nhr-formerindianolahighschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Former Indianola High School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.362885,-93.562748\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46mi.</span></div>\n\t\t</div>\n\n\t\t<p>The former Indianola High School was built in 1925 as the community was outgrowing current school buildings. The high school was built to accommodate grades 1-6 and 9-12 with grades 7-9 at the old high school. The building is historically significant for its association with the development of independent schools in Indianola and as an excellent architectural example of the Late Gothic Revival style. It was designed by the Minneapolis firm of Grahn and Rathurst. The building was typical of an independent high school in a small town – a high style building located in a prominent part of town with auditorium facilities that are used by the community. The former Indianola High School now serves as the Warren County Administration Building and was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 N Buxton St.<br />Indianola, IA 50125<br />Warren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Soldier&#039;s Monument",
            "lat": "42.663949",
            "lon": "-93.901480",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Soldier&#039;s Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.663949,-93.901480\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Soldiers and Sailors Monument is carved with a relief of a World War I soldier, walking and holding his rifle. The monument also has an eagle and markers of Gold Star soldiers and Red Cross nurses. The monument was dedicated at a ceremony on Aug. 7, 1921, where the main speaker was the Rev. H. Fay Tyler, a man the Eagle Grove Eagle described as a &quot;warm blooded American and patriot&quot; in a report several days later. Tyler praised the Women&#039;s Relief Corps for constructing the monument to honor the veterans and declared that America has too few such memorials. At the time of its dedication, the monument was in Northwestern Park, but that area has since been developed. Veterans Memorial Park was developed in 2000 and sits directly west of the Soldiers and Sailors Monument.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Broadway St. and S Park Ave.<br />Across from Veterans Memorial Park<br />Eagle Grove, IA 50533<br />Wright County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Ihde Barn",
            "lat": "41.774052",
            "lon": "-92.814924",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jasper-barn-ihdebarn-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ihde Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.774052,-92.814924\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn was designed to make Angus cattle appear to have larger body size relative to the height of the barn.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6647 E 136th St. N<br />Grinnell, IA 50112<br />Jasper County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Dodd Barn",
            "lat": "42.586736",
            "lon": "-93.155830",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/franklin-barn-doddbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dodd Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.586736,-93.155830\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn was built by Ernest Aldinger, one of three Aldinger brothers who built farms within a mile of each other. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1854 40th St.<br />Ackley, IA 50601<br />Franklin County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Tomahawk Theatre",
            "lat": "41.361231",
            "lon": "-93.562437",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-theater-tomahawktheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tomahawk Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.361231,-93.562437\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The former Tomahawk Theatre is one of the newest buildings on the Indianola Square. In 1936, the old Empress Theatre was torn down and a new Empress Theatre was constructed. Will J. Eddy built the Empress in 1936 and operated it until 1974. That year, the Empress was sold to Jack VanderLinden who re-named it the Tomahawk Theatre. The Tomahawk closed in 1988 and since then the building has been re-used for commercial purposes.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t127 N Buxton St.<br />Indianola, IA 50125<br />Warren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Eagle Grove Carnegie Library Museum",
            "lat": "42.664320",
            "lon": "-93.906175",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Eagle Grove Carnegie Library Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.664320,-93.906175\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Eagle Grove Carnegie Library Museum is housed in the old Carnegie Library. The library was built in 1903, and was constructed using grant money from Andrew Carnegie, who built public libraries all around the country. The Eagle Grove library is an excellent example of Carnegie library architecture, its plan typical for the time. The exterior, in detail and planning, exhibits strong Beaux-Arts influences. The balance of function is reflected in the balanced composition. Like many small-town Carnegies, this structure is an architectural landmark in the community. The building functioned solely as a library until around 1970, when a new public library was built. The Carnegie Library was converted to a museum around the same time, and offers exhibits on railroad memorabilia, early 20th century tools, farm equipment and more. It was added to the National Register of Historic Places on Nov. 22, 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 W Broadway St.<br />Eagle Grove, IA 50533<br />Wright County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Warren County Courthouse",
            "lat": "41.360822",
            "lon": "-93.561606",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-nhr-warrencountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Warren County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.360822,-93.561606\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Warren County Courthouse is one of ten county courthouses built in Iowa during the New Deal Era and partially funded by the Public Works Administration and its successor agencies. The cornerstone of the building was laid on December 3, 1938; it was officially dedicated on August 24, 1939 with a crowd of around 18,000 was on hand to celebrate the completion. The 65-foot x 113-foot building is constructed of brick and Bedford stone, supplied by the Swenson Stone Company of Bloomington, Indiana. In 1988, an addition to the rear of the courthouse was built to improve and enlarge the jail and add more office space. The Warren County Courthouse was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 N Howard Ave.<br />Indianola, IA 50125<br />Warren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Dexter Museum",
            "lat": "41.516548",
            "lon": "-94.227976",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-historymuseum-dextermuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dexter Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.516548,-94.227976\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dexter Museum is the historical hub for the city of Dexter. The museum holds many unique artifacts including the original scoreboard from the 1948 Plowing Match, the Dexfield Park, the Barrow Gang Shootout, and many others.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMarshall St.<br />Dexter, IA 50070<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Warren County Historical Museum and Library",
            "lat": "41.357274",
            "lon": "-93.577752",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-historymuseum-warrencountyhistoricalmuseumandlibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Warren County Historical Museum and Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.357274,-93.577752\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Warren County Historical Society maintains a museum, a historical and genealogical library and a seven building Heritage Village at the Warren County Fairgrounds. The Heritage Village includes a log cabin, a pioneer church, a country store, a machinery shed, the Mount Hope School, the South River Quaker Meeting House and the George Washington Carver Museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1400 W 2nd Ave.<br />IA Hwy. 92<br />Indianola, IA 50125<br />Warren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.961.8085</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://warrencountyhistory.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dexter Community House",
            "lat": "41.517329",
            "lon": "-94.229327",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-nhr-dextercommunityhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dexter Community House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.517329,-94.229327\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dexter Community House, built in 1917, is an unusual elliptical brick building with domed roof and internal steel girders. The building was designed as a multi-purpose facility to serve the social and recreational needs of the community and included a box office, a fully-equipped stage, and a large auditorium. The Dexter Community house was added to the National Register of Historic Places in 1975 and continues to be a popular site for a variety of community functions, including religious services, political and social gatherings, entertainment, sports activities, dances, reunions, and club meetings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t707 Dallas St.<br />Dexter, IA 50070<br />Dallas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Neessen House",
            "lat": "42.434330",
            "lon": "-92.924858",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Neessen House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.434330,-92.924858\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Neessen House, built in 1916, is a well-preserved Prairie School style home, inspired by Frank Lloyd Wright. Christopher Neessen came to the United States from Germany in 1880. He was a prominent citizen in the community. He owned a large farm and was founder and president of the Farmers&#039; and Merchants&#039; Savings Bank. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 E 4th St.<br />Wellsburg, IA 50680<br />Grundy County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Robert Blue Gravesite",
            "lat": "42.661586",
            "lon": "-93.930272",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Robert Blue Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.661586,-93.930272\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Robert Donald Blue (September 24, 1898 - December 13, 1989) served as the 30th Governor of Iowa from 1945-1949. His gravesite is located in his hometown of Eagle Grove at Rose Hill Cemetery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCemetery Dr.<br />Eagle Grove, IA 50533<br />Wright County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Marland Acres",
            "lat": "42.007664",
            "lon": "-94.546621",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marland Acres</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.007664,-94.546621\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This weathered barn was built sometime around 1890 and was put together with wooden pegs.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t527 240th St.<br />Scranton, IA 51462<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "James Allen Stone Barn",
            "lat": "41.448895",
            "lon": "-94.105714",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-barn-jamesallenstonebarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James Allen Stone Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.448895,-94.105714\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">46.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>James Allen obtained 280 acres of farmland in Madison County in 1855. This stone barn was built for draft stallions and had 4 stalls to house them. The one and one half story structure measures 22 x 22 feet and is constructed from locally-quarried limestone. The James Allen Stone Barn was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1715 137th St.<br />Earlham, IA 50072<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "W. T. Ford House",
            "lat": "41.453479",
            "lon": "-94.135155",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-wtfordhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">W. T. Ford House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.453479,-94.135155\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">47mi.</span></div>\n\t\t</div>\n\n\t\t<p>The W.T. Ford house was most likely built by the property’s previous owner, George Francis. Francis was one of the first settlers in Madison County when he bought 880 acres of land in 1855. The house was constructed of locally-quarried limestone and its architectural characteristics suggest that it was probably built by local stone mason Caleb Clark. In 1868, Francis sold the property to W.T. Ford, who came to Madison County from New York and purchased about 2,000 acres of land. Ford contracted with J.G. Parkins, owner of a local quarry, to build three additions onto the original house around 1870. The W.T. Ford House was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1561 135th St.<br />Earlham, IA 50072<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George and Susan Guiberson Armstrong House",
            "lat": "41.388289",
            "lon": "-93.973886",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-georgeandsusanguibersonarmstronghouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George and Susan Guiberson Armstrong House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.388289,-93.973886\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">47.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>George and Susan Guiberson Armstrong were among the early settlers of Madison County, arriving in 1853. Two years later, they obtained 40 acres of farmland to make their home. The farmhouse was built from local limestone, and its simple design and construction may indicate that George Armstrong built it himself. The interior of the house has one room with a dirt floor, a sleeping loft, and a fireplace with an arched opening. The George and Susan Guiberson Armstrong House was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2401 Osage Trl.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Hardin County",
            "lat": "42.554272",
            "lon": "-93.054923",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Hardin County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.554272,-93.054923\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">47.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hardin County Freedom Rock® depicts a World War II veteran visiting the cemetery in Normandy, representing a Hardin County veteran who parachuted into Normandy and lost a good friend. This side of the rock shows the price of battle and how emotional wounds can stay with servicemen and women for their entire lives. Portrayed on the northwest side of the rock is the USS Indianapolis, which sank with 300 sailors on board, including a Hardin County native. This sinking was the greatest single loss of life at sea in the history of the US Navy. The north and northeast sides of the rock are based on POW stories from Hardin County veterans including a B-17 tail gunner who was shot down and taken prisoner and a Korean War veteran who was taken prisoner. The dark sky represents the black of the POW/MIA Flag and the darkness of their imprisonment. The Hardin County (Ackley) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t517 Main St.<br />Ackley, IA 50601<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Ackley Heritage Center",
            "lat": "42.555132",
            "lon": "-93.052319",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-historymuseum-nhr-ackleyheritagecenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ackley Heritage Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.555132,-93.052319\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">47.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ackley Heritage Center&#039;s purpose is to preserve, interpret and exhibit the history of Ackley, its people and agricultural heritage through exhibits, photographs and local and family research. The main center is housed in the historic Illinois Central Railroad Depot that was built in 1926 by J.H. Scott of the Illinois Central Railroad and Coomer and Small Construction Company from Sioux City. This was the second depot for Ackley, replacing two existing depots. The Illinois Central Railroad replaced several depots between the 1890s and 1920s. Brick depots like this one were built in place of the earlier wood frame buildings and the Ackley depot was one of the last replacement stations designed before the Great Depression. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t120 State St.<br />Ackley, IA 50601<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.847.2201</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.ackleyheritagecenter.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Patrick&#039;s Catholic Church",
            "lat": "42.159314",
            "lon": "-94.551607",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Patrick&#039;s Catholic Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.159314,-94.551607\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">47.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Patrick&#039;s Catholic Church was designed by William LeBarthe Steele and built by C.F. Mayer and Company in 1915. St. Patrick&#039;s became the hub of social and religious activities of Irish families in the area. It was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Ave.<br />Churdan, IA 50050<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Settlement of the Prairie Park",
            "lat": "42.556322",
            "lon": "-93.046921",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Settlement of the Prairie Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.556322,-93.046921\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">47.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Settlement of the Prairie Park and Museum (part of the Ackey Heritage Center&#039;s historic sites) tells the story of the many people who came to Iowa to settle on the prairie. These pioneers, primarily from Germany, tilled the land, and built farms, schools and churches. Visitors will experience pioneer history through the 1870 Limburg I-House, Clutterville Country School and a rebuilt prairie barn that houses displays exhibiting the history of agriculture. The Settlement is open by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t108 Butler St.<br />Ackley, IA 50601<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.847.2201</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.ackleyheritagecenter.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "North River Stone Schoolhouse (Bennett School)",
            "lat": "41.402733",
            "lon": "-94.042313",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-northriverstoneschoolhouse-bennettschool.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">North River Stone Schoolhouse (Bennett School)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.402733,-94.042313\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">47.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The North River Stone Schoolhouse was built in 1874 by local stone mason David Harris and was in continual use as a schoolhouse until 1945. It is one of at least 17 stone schoolhouses that were once present in Madison County. It was renovated and restored from 1962-1973 and is furnished as a usable schoolroom. The school is open to the public and administered by the Madison County Historical Society, serving as a reminder of the educational heritage of rural Iowa. The North River Stone Schoolhouse was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN. River School St.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Prairie Bridges Park",
            "lat": "42.564345",
            "lon": "-93.057298",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prairie Bridges Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.564345,-93.057298\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">47.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>With 101 acres of wildlife, woodlands and prairie, the park offers opportunities for visitor to enjoy nature at its best. Camping with electrical hookups, fishing in six ponds, three miles of trails for walking, biking or driving, disc golf course, restrooms, showers and shelter house provide a fun family experience.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310 N Franklin Ave.<br />Ackley, IA 50601<br />Franklin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.485.1623</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.ackleyiowa.net\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lincoln Highway: West Greene County Rural Segment",
            "lat": "42.049108",
            "lon": "-94.590881",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lincoln Highway: West Greene County Rural Segment</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.049108,-94.590881\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">48.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction on this segment of Lincoln Highway began around 1913. Since its construction, the route has remained the same through Greene County, and the only major change to the highway has been the addition of an asphalt overlay. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1298 D Ave.<br />Scranton, IA 51462<br />Greene County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Rock Island Depot Railroad Museum",
            "lat": "42.729846",
            "lon": "-93.733478",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-nhr-rockislanddepot.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rock Island Depot Railroad Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.729846,-93.733478\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">48.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rock Island Depot Railroad Museum was completed on December 21, 1898 as a passenger depot for the Burlington, Cedar Rapids and Northern Railway. At one time, 14 mail and passenger trains arrived and left Clarion daily. During the early decades of the 20th century, the Burlington, Cedar Rapids and Northern Railway servied Clarion&#039;s needs, bringing in produce and retail supplies. Produce and livestock were also herded into town by local farmers and loaded in box cars traveling to Chicago markets. The building was restored in 1984 and serves as a local history museum. It was added to the National Register of Historic Places on May 16, 1988.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t302 S Main St.<br />Clarion, IA 50525<br />Wright County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.532.2256</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.clarioniowa.com/pages/Museums/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Matchstick Marvels Museum",
            "lat": "42.187677",
            "lon": "-92.716562",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-historicunique-matchstickmarvels.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Matchstick Marvels Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.187677,-92.716562\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">48.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Matchstick Marvels Museum is dedicated to the art work of Iowa artist Patrick Acton. The museum features Acton&#039;s matchstick models of famous buildings and modes of transportation. The sculptures are made entirely out of matchsticks, and he can use up to 200,000 matchsticks in one piece. His most famous sculptures include a 13&#039; scale model of the USS Iowa, a 12&#039; model of the United States Capitol, and a re-creation of the space shuttle Challenger and its launch station.  Many of Acton&#039;s creations are featured at Ripley&#039;s Believe It or Not Museums, and a permanent collection is on display at Matchstick Marvels.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t319 2nd St.<br />Gladbrook, IA 50635<br />Tama County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.473.2410</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://matchstickmarvels.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Hogback Covered Bridge",
            "lat": "41.386536",
            "lon": "-94.047532",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-hogbackcoveredbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hogback Covered Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.386536,-94.047532\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">48.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hogback Covered Bridge was built in 1884 and remains in its original location in a valley north of Winterset. The bridge gets its name from a limestone ridge that forms the west end of the valley. It was originally one of 19 covered bridges in Madison County, but now only six remain. Four of these covered bridges, including the Hogback Bridge, were constructed by H.P. Jones. Jones’ bridges were innovative in design, particularly in the elimination of the traditional high pitched roof in favor of a very low pitched, almost flat roof. The bridge is constructed of native lumber planks held together with metal bolts. The Hogback Covered Bridge was added to the National Register of Historic Places in 1976 and was renovated in 1992.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHogback Bridge Rd.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Cedar Covered Bridge",
            "lat": "41.365780",
            "lon": "-93.990890",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-bridge-cedarcoveredbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cedar Covered Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.365780,-93.990890\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">49mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cedar Covered Bridge has become an iconic Iowa landmark, featured on the cover of Robert James Waller&#039;s novel The Bridges of Madison County, which was adapted into a feature film in 1995 and a live musical in 2013. The bridge was built in 1883 by Benton Jones and was moved to its current location in 1921 to accommodate US Highway 169. In 2002 the Cedar Covered Bridge was destroyed by arson, but it was replaced 2 years later with replica built to the original specifications, using authentic materials and construction techniques.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCedar Bridge Trl. and Lakeside Ln.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wright County Courthouse",
            "lat": "42.732078",
            "lon": "-93.732124",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-nhr-wrightcountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wright County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.732078,-93.732124\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">49mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wright County Courthouse was built in 1892 and the architecture combines medieval elements with bracketed eaves and gable ends with very slight cornice returns. The first courthouse in Wright County was a log cabin built in 1855. The county seat was later moved to Liberty, Iowa where a two-story frame building was built. The county seat moved again to Clarion in 1866 and another courthouse was constructed. The third courthouse structure was incorporated into the Avondale Hotel after the present courthouse was built. The 1892 courthouse was added to the National Register of Historic Places on July 2, 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 N Main St.<br />Clarion, IA 50525<br />Wright County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Clarion Theatre",
            "lat": "42.732666",
            "lon": "-93.732134",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-historictheater-clariontheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clarion Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.732666,-93.732134\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">49mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clarion Theatre opened in 1941 with 480 seats and has remained in operation since. It is one of the longest running theaters in the state.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 1st Ave. NE<br />Clarion, IA 50525<br />Wright County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.602.6606</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.clariontheatre.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Peter and Isabella McCulloch McQuie Milk House",
            "lat": "41.430993",
            "lon": "-94.159902",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-peterandisabellamccullochmcquiemilkhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Peter and Isabella McCulloch McQuie Milk House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.430993,-94.159902\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">49mi.</span></div>\n\t\t</div>\n\n\t\t<p>Peter and Isabelle McQuie came to the United States from Scotland in 1857. They moved to Madison County in 1871 and bought a 320 acre farm, constructing many fine buildings on the property. The family became well established in the area, eventually owning a total of 680 acres of land. The milk house is a small structure built of locally-quarried limestone, and was used to store milk before it was transported to market. When the milk house was functional, water ran through the two stone bunkers along the west wall to cool the milk. The Peter and Isabelle McCulloch McQuie Milk House was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1434 165th St.<br />Earlham, IA 50072<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Heartland Museum",
            "lat": "42.731340",
            "lon": "-93.743922",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-historymuseum-heartlandmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Heartland Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.731340,-93.743922\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">49mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Heartland Museum presents Iowa&#039;s agriculture and rural life through its displays of farm machinery, equipment and scale models. Other exhibits include the Hat Parlor, Streetscapes and the Teddy Bear Reunion. The museum also houses the Wright County Historical Society and Research Library and the Clarion Historical Society. The library includes family histories, records, photos, tax lists, maps, school annuals and more.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t119 9th St. SW<br />Clarion, IA 50525<br />Wright County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.602.6000</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://heartlandmuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "4-H School House Museum",
            "lat": "42.731849",
            "lon": "-93.734663",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-historicschool-4hschoolhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">4-H School House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.731849,-93.734663\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">49mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lake Township No. 6 one-room schoolhouse was built in 1907 and is now a museum showcasing 4-H memorabilia and other county history. In the early 1900s, 4-H clubs began throughout the United States to engage youth in &quot;learning by doing&quot; for a better agricultural education. Wright County is the birthplace of the nationally recognized 4-H four-leaf clover emblem.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 W Central Ave.<br />Gazebo Park<br />Clarion, IA 50525<br />Wright County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.532.3453</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.clarioniowa.com/pages/Museums/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Hamann Barn",
            "lat": "42.362706",
            "lon": "-92.798680",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hamann Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.362706,-92.798680\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">49.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This distinguished landmark barn was built in 1907 and served for years as the Worthwhile Frost Dairy Farm. It has dowel or wooden pin type construction on the upper beams and cross members. It has post and beam construction. The silo was constructed after the top window and roofed structure were completed.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t21461 240th St.<br />Grundy Center, IA 50638<br />Grundy County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Tama County",
            "lat": "42.181562",
            "lon": "-92.706459",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Tama County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.181562,-92.706459\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">49.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Tama County Freedom Rock® in Gladbrook features a thank you to Meskwaki Code Talkers. Meskwaki men were trained to use their native language to provide secure battlefield communication during World War II. The Code Talkers served in Algeria, Tunisia and Italy. The logo of the Sac and Fox Tribe of the Mississippi in Iowa is also on the rock. In 2013, the Meskwaki Code Talkers were posthumously awarded the Congressional Gold Medal. The road facing side of the rock features soldiers from the Civil War through today. The Tama County (Gladbrook) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA Hwy. 96<br />Gladbrook, IA 50635<br />Tama County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Duff Barn",
            "lat": "41.367581",
            "lon": "-94.014739",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-duffbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Duff Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.367581,-94.014739\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">49.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Duff Barn is one of only 5 stone barns known to have existed in Madison County. Samuel W. and Jeannie McDonald Duff purchased a parcel of land from Samuel&#039;s brother, Robert Duff, in 1870. The barn was constructed around this time, but it is unclear which brother commissioned it. Both Duff brothers passed away by 1876, but Jeannie Duff remained on the property until around 1900. The barn is a one and a half story structure built form locally-quarried limestone, with two subsequent wooden additions. The Duff Barn was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1939 US Hwy. 169<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Gary Richardson Barn",
            "lat": "41.704668",
            "lon": "-92.780305",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jasper-barn-garyrichardsonbarn-2-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gary Richardson Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.704668,-92.780305\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">49.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn was built in the mid-1940s and the majority wood used in the interior was from wood cut when clearing the land. The barn is located on a Minimum Maintenance Road, but is visible from Jacob Avenue. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t624 E 150th St. N<br />Grinnell, IA 50112<br />Jasper County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Maysville School House",
            "lat": "42.666750",
            "lon": "-93.199019",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Maysville School House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.666750,-93.199019\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">49.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Maysville Schoolhouse, built by Civil War veterans around 1867, is the only remaining structure from Franklin County&#039;s first town of Maysville. Maysville was established in 1856 and had a hotel, two blacksmith shops, two stores, and a steam saw mill, in addition to the schoolhouse. The town had a population of about 150, but it became a ghost town after 1890. The Maysville Schoolhouse was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1539 95th St.<br />Hampton, IA 50441<br />Franklin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.456.2027</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Herbert Quick Schoolhouse",
            "lat": "42.361053",
            "lon": "-92.781531",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/grundy-historicschool-herbertquickschoolhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Herbert Quick Schoolhouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.361053,-92.781531\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">49.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Herbert Quick Schoolhouse (Colfax Township No. 9 School) was attended by teacher and author Herbert Quick in the late 1860s and early 1870s. Quick wrote three well-known fiction books, &quot;Vandemark&#039;s Folly&quot;, &quot;The Hawkeye&quot; and &quot;The Invisible Woman&quot; that are based on the prairie life in Grundy County, Iowa. Quick attended the Teacher&#039;s Institute at Grundy Center and began teaching in 1877, at age 16, in Shiloh Township. After his marriage he moved to Sioux City, Iowa where he practiced law and served as mayor of the city. On display at the schoolhouse, which was moved to Orion Park in 1933, is Quick&#039;s school master desk, personal memorabilia and various county school artifacts. Open by appointment.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tOrion Park<br />Grundy Center, IA 50638<br />Grundy County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.825.3838</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Hoosier Row School",
            "lat": "41.304040",
            "lon": "-93.617268",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-countryschool-hoosierrowschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hoosier Row School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.304040,-93.617268\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">49.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Hoosier Row School takes it&#039;s name from the early settlers in the area. In 1851 and 1852 a goup of people traveled from Indiana to Warren County, Iowa. Since people from Indiana were called Hoosiers they named their new settlement area Hoosier Row. The first Hoosier Row School was built in 1852 and was used until 1900 when local residents determined a new building was necessary. This Hoosier Row School was built in 1900 and used as a school until 1958 when it was closed due to lack of enrollment. In 1902, there were 138 one-room schools in Warren County. Only three of those rural schools remain in usable condition, and of those three Hoosier Row School is the most original, as it is unaltered and remains in it&#039;s original location. Hoosier Row School was added the National Register of Historic Places on March 8, 2011.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t15246 Co. Rd. R63<br />Indianola, IA 50125<br />Warren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "All Saints Catholic Church",
            "lat": "41.507029",
            "lon": "-94.317300",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/guthrie-nhr-allsaintscatholicchurch.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">All Saints Catholic Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.507029,-94.317300\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">49.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The All Saints Catholic Church was built in 1910 by Maginnis and Walsh. It exhibits a rare architectural style not commonly seen in Iowa, featuring elements of Italian Renaissance Revival and Byzantine design. The church was an initiative of Bishop James Davis of the Davenport Catholic Diocese. In 1995, an arsonist set fire to the church which left the interior gutted except for a few precious items. These were saved for the restoration. It was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t420 N Fremont St.<br />Stuart, IA 50250<br />Guthrie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Masonic Temple Building",
            "lat": "41.505103",
            "lon": "-94.318870",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/guthrie-nhr-masonictemplestuarttheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Masonic Temple Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.505103,-94.318870\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Masonic Temple was built in 1894 by Merrill and Smith. At the time it was built, Stuart was an important station on the Rock Island Railroad. The building was designed as a multi-use commercial structure. It was used as the Stuart Theater from 1908 through 1969.  It was added to the National Register of Historic Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1311 NW 2nd St.<br />Stuart, IA 50250<br />Guthrie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chicago, Rock Island and Pacific Railroad: Stuart Passenger Station",
            "lat": "41.503413",
            "lon": "-94.316774",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-nhr-chicagorockislandandpacificstuartpassengerstation.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago, Rock Island and Pacific Railroad: Stuart Passenger Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.503413,-94.316774\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Captain Charles Stuart, a veteran of the Civil War and founder of Stuart, worked with officials from the Rock Island Railroad to ensure that his town would be the site of the division station and machine shops. It was the only large shop on the Rock Island line between Silvis, Illinois, and Omaha, Nebraska. After the Panic of 1893, the division station and machine shop was moved to Valley Junction - which later became West Des Moines. The Chicago, Rock Island and Pacific Railroad Stuart Passenger Station, added to the National Register of Historic Places in 1980, is the only structure remaining to mark the community’s history as a division point on the Rock Island Railroad.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tFront St.<br />Stuart, IA 50250<br />Adair County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Grundy County Courthouse",
            "lat": "42.360984",
            "lon": "-92.773218",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/grundy-nhr-grundycountycourthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grundy County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.360984,-92.773218\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grundy County Courthouse, added to the National Register of Historic Places in 1981, was built in 1891 in the Romanesque Revival architectural style. The contractor who won the bid realized midway through construction that his bid was much too low. Remaining honest and dedicated to his commitment, he continued using the best materials and craftsmanship and went bankrupt as a result. It was the second courthouse built in Grundy County, the first being built in 1857 and was unlike any other courthouse in Iowa. Often referred to as the &quot;Old Cheese Box&quot; it was a two-story structure and octagonal in shape with a octagonal cupola mounted in the center of its flat roof. It was located immediately west of where the current courthouse stands where a gazebo has been placed.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t700 G Ave.<br />Grundy Center, IA 50638<br />Grundy County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Reeve Electrical Association Plant Museum",
            "lat": "42.687353",
            "lon": "-93.233023",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Reeve Electrical Association Plant Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.687353,-93.233023\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Reeve Electrical Association Plant was built in 1936 by the C.M. Stanley Engineering Company and the Weldon Brothers. It is one of the earliest electrical companies in Iowa, and was part of the Rural Electrification Administration. In the first 15 years of the program, the number of farms electrified by central station service in the United States increased from about 11 percent to 77 percent. Now a museum, it depicts before-and-after eras of electricity in rural areas and is open by appointment. The Reeve plant was added to the National Register of Historic Places in 1989.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1450 110th St.<br />Hampton, IA 50441<br />Franklin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Center Theater",
            "lat": "42.362354",
            "lon": "-92.772361",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/grundy-theater-centertheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Center Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.362354,-92.772361\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This theater opened in the early 1930s as the Grundy Theatre and was renamed the New Grundy Theatre approximately a decade later. It was purchased and remodeled by Peterson Theaters of Waverly, Iowa in 1967 and operated it as the Center Theater until the mid-1980s. Shortly thereafter, the community took over the theater and continues to show first-run movies today.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t602 7th St.<br />Grundy Center, IA 50638<br />Grundy County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "underground-railroad.png",
            "title": "Cornwall Dickinson Farm (I-80 Rest Area)",
            "lat": "41.694191",
            "lon": "-92.773182",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/underground-railroad.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cornwall Dickinson Farm (I-80 Rest Area)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.694191,-92.773182\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This rest stop sits on land once occupied by the farm of the Cornwall Dickinson family in the 1800s. Dickinson had come from Ashtabula County, Ohio, known for its strong antislavery attitudes, and he brought these beliefs with him to his new home in Iowa. His farm served as a stop on the Underground Railroad during the late 1850s. This is stop #10 on the Freedom Trail tour: John Brown and his party arrived at the Dickinson farm on February 19, 1859. They rested here overnight and continued to the town of Grinnell the next day.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tInterstate Hwy. 80 Eastbound<br />Mile Post 181 Rest Area<br />Grinnell, IA 50112<br />Jasper County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William Anzi Nichols House",
            "lat": "41.344880",
            "lon": "-93.999429",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-williamanzinicholshouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William Anzi Nichols House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.344880,-93.999429\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>William Anzi Nichols bought this 80-acre farm in 1855, and this stone farm house was probably built around 1856. The one and one half story house was constructed of locally-quarried limestone and its design and craftsmanship suggest that it was built by local master stone mason David Harris. The house measures 18 by 28 feet and features a square stone chimney at the peak of the south gable. Nichols owned the property until his death in 1867. The William Anzi Nichols House was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1217 IA Hwy. 92<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Guthrie County",
            "lat": "41.676801",
            "lon": "-94.508247",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Guthrie County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.676801,-94.508247\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Guthrie County Freedom Rock® located in Guthrie Center is based on the stories of local veterans. The front side depicts a Guthrie County veteran who received the Silver Star in the M-39 tank for rescuing five soldiers from a burning tank on a battlefield in Korea before being blown up and wounded himself. Also, a soldier from this county crawled a mile through darkness to blow a hole through the dragons teeth to allow Patton&#039;s tanks to roll into Germany for the first time. He received the Bronze Star. The east side of the rock depicts the story of a Guthrie County man who stood the gun mount of the tiny USS Hoel firing on the world&#039;s biggest battleship (the Japanese Yamato) before being sunk and killed. The Yamato retreated only moments after the Hoel sunk, saving the lives of thousands of U.S. soldiers on a nearby beachhead. Below, the European cemetery represents the soldiers who were buried in Europe, receiving the Purple Heart. On the north side, the B-24s and B-17s represent Guthrie County veterans, two who survived shoot downs and one killed in action, and their Air Medals and Purple Hearts. The F/A-18 was the jet of a Guthrie County veteran who flew many successful missions and helped in gathering the stories of his fellow veterans for this Freedom Rock. The Guthrie County (Guthrie Center) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW State St.<br />Guthrie Center, IA 50115<br />Guthrie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Baker No. 2 School",
            "lat": "41.673782",
            "lon": "-94.509466",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/guthrie-countryschool-bakerno2school.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Baker No. 2 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.673782,-94.509466\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Baker No.2 School was built in 1906 and functioned until 1956. The school was one of many in Guthrie County and includes many wood desks, slate writing boards and other school amenities preserved as artifacts. The school is open during the Guthrie County Fair.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 N 1st St.<br />Guthrie County Fairgrounds<br />Guthrie Center, IA 50115<br />Guthrie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Josiah B. Grinnell Gravesite",
            "lat": "41.738715",
            "lon": "-92.734673",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-cemetery-josiahbgrinnell-gravesite.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Josiah B. Grinnell Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.738715,-92.734673\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This is the final resting place of Josiah Bushnell Grinnell: Congregational minister, co-founder of the town that bears his name, member of the U.S. House of Representatives, and passionate abolitionist. As an active participant of the Underground Railroad, he used his influence as well as his home and barn to aid slaves in their quest for freedom. He welcomed John Brown and his party to Grinnell as Brown crossed Iowa on his flight from Kansas in 1859. In 1862 the Iowa City Press declared that, &#039;No man in America more fully embodies the whole juice and spirit of rampant abolitionism in its present sense, than does J.B. Grinnell&#039;. Follow the directional signage from the main entrance to the grave site.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 1st Ave.<br />Hazelwood Cemetery<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Spaulding Manufacturing Company",
            "lat": "41.742960",
            "lon": "-92.728913",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-spauldingmanufacturingofiowa.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spaulding Manufacturing Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.742960,-92.728913\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>H.W. Spaulding came to Grinnell from Vermont in 1876 and opened a blacksmith and wagon repair shop. Throughout the late 1800s, Spaulding entered in to partnerships with other local businessmen and saw modest success with his wagon business. In 1890, Spaulding moved his business to this site near the railroad tracks and the company produced carriages and wagons. By 1909, they had begun producing the wooden Spaulding Automobile. Each year, they turned out nearly 1000 &quot;motor cars,&quot; with new models annually. Even with this high production number, Spaulding still focused on manufacturing wagons and buggies.  By the end of World War I, this technology was obsolete and Spaulding was unable to transition to focusing on modern automobiles. The entire Spaulding operation closed after the economic crash of 1929. The building was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tSpring St. and 4th Ave.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.236.9860</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowatransportationmuseum.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Meskwaki Tribal Museum",
            "lat": "41.988172",
            "lon": "-92.652802",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-historymuseum-meskwakiculturalcenterandmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Meskwaki Tribal Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.988172,-92.652802\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Meskwaki have strived to maintain their cultural and historical inheritance for many years. The development of a tribal museum helps showcase the unique qualities of the Meskwaki. While promoting the tribe to the general public, the museum also complements services of the tribe and its businesses. Come and learn the past and present of the Meskwaki Nation, or &quot;People of the Red Earth,&quot; and experience history from a unique perspective. The tribe is happy to share their fascinating story of endurance and perseverance, right in the heart of the United States.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t349 Meskwaki Rd.<br />Tama, IA 52339<br />Tama County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.484.2335</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Lake Ahquabi State Park",
            "lat": "41.290000",
            "lon": "-93.590333",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-nhr-lakeahquabistatepark-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lake Ahquabi State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.290000,-93.590333\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lake Ahquabi State Park is a 773 acre park, named for the Sauk and Fox native word meaning “resting place.” Many of the park buildings were constructed by the Civilian Conservation Corps (CCC), a public works program during the Great Depression. CCC crews erected facilities, built in the rustic landscape architecture style, which complemented the natural park setting. The CCC worked at Lake Ahquabi from 1934 to 1937, constructing numerous buildings including the bathhouse, a picnic area, and a park lodge. These buildings were added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. G58<br />Indianola, IA 50125<br />Warren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Benjamin Ricker House",
            "lat": "41.752409",
            "lon": "-92.723793",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-benjaminrickerhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Benjamin Ricker House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.752409,-92.723793\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Benjamin Ricker house is a significant early work of architect Walter Burley Griffin and ranks as one of the preeminent examples of the Prairie School of Architecture in the state of Iowa. Construction began in 1911, but millwork and labor problems delayed completion until 1912. The exterior of the house has a strong horizontal emphasis, contrasted with vertical detailing on the second story. Interior details include oak woodwork, cove lighting, and recessed bookcases. The Ricker house was added to the National Register of Historic Places in 1979 and acquired by Grinnell College in 2000.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1510 Broad St.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles H. Spencer House",
            "lat": "41.746368",
            "lon": "-92.728320",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-charleshspencerhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles H. Spencer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.746368,-92.728320\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built around 1860, this house is architecturally significant because of its singular visual character, featuring picturesque treatment of the gable ends and a pointed false gable on the front suggestive of Downing&#039;s Gothic cottage detail. Local residents and historical accounts identify Charles H. Spencer as the original owner of the house, which was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t611 6th Ave.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Pioneer Oil Company",
            "lat": "41.743035",
            "lon": "-92.727641",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-pioneeroilcompany.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pioneer Oil Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.743035,-92.727641\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pioneer Oil Company is a well-preserved example of a custom-built filling station and conforms with two major trends on service station design: an emphasis on a horizontal massing and ornamentation, and an emphasis on the distinction between the office and service bay sections of the building. It is one of only three historic service stations left in Grinnell and was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t831 West St.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "North Grinnell Historic District",
            "lat": "41.749521",
            "lon": "-92.724795",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-historicdistrict-northgrinnellhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">North Grinnell Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.749521,-92.724795\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51mi.</span></div>\n\t\t</div>\n\n\t\t<p>The North Grinnell Historic District, bounded by Park Street, 11th Avenue, West Street and 6th Avenue, is made up of large-scale, very well-preserved residences that would be the envy of any major city. Within its boundaries, there are 157 historic homes built between 1867 and 1958 in a variety of architectural styles. Throughout its history, this area has been home to many prominent citizens of Grinnell, including manufacturers, merchants, attorneys, and doctors. The district was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t8th Ave.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Grinnell Historical Museum",
            "lat": "41.747005",
            "lon": "-92.724509",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-historymuseum-grinnellhistoricalmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grinnell Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.747005,-92.724509\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51mi.</span></div>\n\t\t</div>\n\n\t\t<p>On July 30, 1958 the Grinnell Historical Museum Society was formally incorporated in the State of Iowa as a not-for-profit organization to promote the study of the history of the State of Iowa and, particularly, the City of Grinnell and Poweshiek County, to gather objects of historical interest and importance and to preserve them for cultural and educational purposes for present and future generations. The museum has many different exhibits including a kitchen that holds an electric refrigerator made by the Grinnell Washing Machine Company, one of the first 50 made in 1932. There is a military exhibit with uniforms from the Civil War to the Vietnam War. The Carriage House holds several horse-drawn vehicles built by the Spaulding Carriage Factory in Grinnell.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1125 Broad St.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.236.7827</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.grinnellhistoricalmuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Grinnell Historic Commercial District",
            "lat": "41.744043",
            "lon": "-92.724114",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-historicdistrict-grinnellhistoriccommercialdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grinnell Historic Commercial District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.744043,-92.724114\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grinnell Historic Commercial District, bounded by Main Street, 6th Avenue, Broad Street, Park Street and the railroad is unusual in that it illustrates the growth of a pan-county market center independent of the advantages conferred by county seat status. It showcases the city&#039;s commercial growth and economic development and continues to serve as the core of Grinnell&#039;s modern Central Business District. The area also has an unusually high level of architectural continuity within its boundaries. Most of the development in this district occurred between 1875 and 1940, and it was added to the National Register of Historic Places in 1989.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBroad St.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Emily Hornback House",
            "lat": "41.339454",
            "lon": "-94.013140",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-emilyhornbackhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Emily Hornback House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.339454,-94.013140\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hornbacks were early settlers of Winterset and one of the new town&#039;s most prominent families. The family owned a wagon building business operated by brothers George and James Hornback and their father. Emily Hornback purchased the land on which this house was built in the mid-1850s, and the house was completed around 1857. The house was built from locally-quarried limestone and may be one of the first Winterset homes built by David Harris, a local master stone mason. Harris constructed a number of buildings around Madison County during the last half of the 19th century, creating a distinct and recognizable architectural style in the area. The Emily Hornback House was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t605 N John Wayne Dr.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Grinnell Herald Building",
            "lat": "41.744811",
            "lon": "-92.725064",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-grinnellheraldbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grinnell Herald Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.744811,-92.725064\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grinnell Herald was established in 1868 as the Poweshiek County Herald. By 1872, the name of the paper had changed to Grinnell Herald and it has far and away the largest circulation in the county. The Grinnell Herald Building was designed in 1916 by Proudfoot, Bird and Rawson, Des Moines-based architects. The building is Neo-Classical and was built with a solid, trustworthy appearance. The first floor of the building is raised above street level to create an extra tall basement to house heavy printing equipment. Large plate glass windows provided natural light for employees, but in the early 1950s opaque glass block replaced the single-paned plate glass. In the winter, the glass conducted cold and ice formed several inches thick on the windows, and in the summer, the sun made the offices almost uninhabitable. The glass block was considered a state-of-the-art solution in the 1950s. Proudfoot, Bird and Rawson designed more buildings for Grinnell than any other town in Iowa except Des Moines. The Grinnell Herald Building was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t813 5th Ave.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Interior Telephone Company Building",
            "lat": "41.744809",
            "lon": "-92.724848",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-interiortelephonebuilding.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Interior Telephone Company Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.744809,-92.724848\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Interior Telephone Company building was erected in 1916 and illustrates the expansion of Grinnell&#039;s central business district into 5th Avenue, along with the Grinnell Herald building and the Grinnell Armory. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t815 5th Ave.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bowers and McDonald Office Building",
            "lat": "41.742337",
            "lon": "-92.724847",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-bowersandmcdonaldofficebuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bowers and McDonald Office Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.742337,-92.724847\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bowers and McDonald Office Building was constructed in 1896. It is situated on Commercial Street, in an area of Grinnell&#039;s central business district that was leveled by a disastrous fire in 1889. The stone building is architecturally significant as an example of the Romanesque Revival style and was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t816 Commercial St.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Goodnow Hall",
            "lat": "41.746925",
            "lon": "-92.722025",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-goodnowhall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Goodnow Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.746925,-92.722025\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Designed by Stephen E. Earle of Worcester, Massachusetts in 1884, Goodnow Hall is the oldest remaining building on the Grinnell College campus. It was the first building on the campus that was built with a gift from a single person- Edward A. Goodnow, a manufacturer and philanthropist. The Romanesque style building originally served as the college&#039;s library and observatory, but now houses classrooms and faculty offices. Goodnow Hall was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1118 Park St.<br />Grinnell College<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.grinnell.edu/about/visit/spaces/goodnow-hall\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Levi P. Grinnell House",
            "lat": "41.744891",
            "lon": "-92.722203",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-levigrinnellhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Levi P. Grinnell House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.744891,-92.722203\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built around 1860, this house is locally significant as a fairly well-preserved example of temple-form Greek Revival residential architecture, and is perhaps the oldest extant structure in Grinnell. It was build by Levi P. Grinnell, who owned the property from 1857 to 1863. The house was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1002 Park St.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Merchant&#039;s National Bank",
            "lat": "41.743351",
            "lon": "-92.724359",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-merchantsbank.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Merchant&#039;s National Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.743351,-92.724359\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1914 by prominent American architect Louis Sullivan, the Merchants&#039; National Bank in Grinnell is one of his three best preserved banks. The bank is one of Sullivan&#039;s trademark Victorian Banks, with very simple designs for the building structure, surrounded by very ornate structures for the windows and doors. It retains most of its original ornament and glass, and most notably, its unique exterior remains as Sullivan designed it. The bank was added to the National Register of Historic Places and designated as a National Historic Landmark in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t833 4th Ave.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chicago, Rock Island and Pacific Railroad: Grinnell Passenger Station",
            "lat": "41.741352",
            "lon": "-92.721578",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-chicagorockislandpacificrailroadstation.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago, Rock Island and Pacific Railroad: Grinnell Passenger Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.741352,-92.721578\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grinnell Passenger Station was built in 1892-92 by a Marshalltown contractor and the building was added to the National Register of Historic Places in 1976. It is an atypical example of railroad architecture built in a modified Queen Anne style with a tower at the southeast end, and retains a certain dignity of style not often found in small-town depots. The first rail line to reach Grinnell was the Chicago and Rock Island from the east in 1863, and the need for a station became evident by the 1880s when the Mississippi and Missouri railroads intersected at Grinnell. The original building contained two waiting rooms, a baggage room, a lunch counter, and offices. Passenger service to Grinnell was discontinued in 1970, and the station was restored in 1993 and reopened as a restaurant in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1014 3rd Ave.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mears Hall",
            "lat": "41.746777",
            "lon": "-92.718649",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-mearshall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mears Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.746777,-92.718649\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Mears Hall was built in 1888 in honor of Mary Grinnell Mears, with funds donated by Edward A. Goodnow. It was originally designed to provide housing for 28 female students located a &quot;proper&quot; distance from the quarters for male students. It was enlarged in 1904 and remained a women&#039;s residence until 1978. The following year, the building was added to the National Register of Historic Places. After an extensive renovation, the building reopened in 1986 as a classroom and faculty office facility.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1213 6th Ave.<br />Grinnell College<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.grinnell.edu/about/visit/spaces/mears-cottage\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "underground-railroad.png",
            "title": "Grinnell Central Park",
            "lat": "41.742180",
            "lon": "-92.722695",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-undergroundrailroad-grinnellcentralpark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/underground-railroad.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grinnell Central Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.742180,-92.722695\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>During the 1850s, the town of Grinnell, which had only 500 residents at the time, became known as an antislavery stronghold and a safe harbor for freedom seekers. Rev. Josiah B. Grinnell led many of these efforts and hosted freedom seekers in his home as they made their way across Iowa. A stone marker in Grinnell’s Central Park stands across the street from the former location of J.B. Grinnell’s house and illustrates its history as a stop along the Freedom Trail. This is stop #11 on the Freedom Trail tour: John Brown’s group arrived in the village of Grinnell on February 20, 1859, and rested here for two nights. When word got out that J.B. Grinnell and other townsmen gave shelter to Brown and those fleeing slavery, newspaper editors attacked Grinnell for glorifying John Brown and aiding those engaged in murder and theft.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tPark St.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Holliwell Covered Bridge",
            "lat": "41.322807",
            "lon": "-93.959387",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-holliwellcoveredbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Holliwell Covered Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.322807,-93.959387\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Holliwell Covered Bridge, built in 1880, is one of four in Madison County built by H.P. Jones. Jones’ bridges were innovative in design, particularly in the elimination of the traditional high pitched roof in favor of a very low pitched, almost flat roof. This is the longest covered bridge in Madison County, measuring 122 feet. Approaches to the bridge on each end add to an overall crossing of approximately 170 feet. The bridge was renovated in 1995, but remains in its original site over the Middle River southeast of Winterset. The Holliwell Covered Bridge was added to the National Register of Historic Places in 1976, and was featured in the film adaptation of the novel The Bridges of Madison County.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHolliwell Bridge Rd.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Miller Bridge",
            "lat": "41.322136",
            "lon": "-93.957799",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-millerbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Miller Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.322136,-93.957799\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Miller Bridge carries McBride Trail over an unnamed stream approximately seven miles northeast of Winterset. The bridge is a five-panel, pin-connected Pratt pony truss and was completed in 1884. The 82-foot iron truss was constructed by the King and Twiss bridge company of Des Moines, and local contractors H.P. Jones and G.K. Foster built the iron tube substructure and erected the truss at the bridge site. This is one of Iowa’s earliest documented Pratt pony trusses that remains intact. The Miller Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHolliwell Bridge Rd.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Leander Reeve House (Old Stone House)",
            "lat": "42.679616",
            "lon": "-93.165604",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Leander Reeve House (Old Stone House)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.679616,-93.165604\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Leander Reeve House, also called the Old Stone House, was built around 1855, and it is believed to be one of the oldest houses in Franklin County. Reeve came to Franklin County in 1853 after his brother had moved there the previous year. He and his wife soon returned to Ohio. The house was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1789 105th St.<br />Geneva, IA 50441<br />Franklin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.456.5777</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John and Elizabeth McMurn Early House",
            "lat": "41.389338",
            "lon": "-94.158000",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-johnandelizabethmcmurnearlyhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John and Elizabeth McMurn Early House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.389338,-94.158000\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>John and Elizabeth Early were among the earliest settlers in Madison County, arriving in 1855. John Early was a shorthorn cattle breeder and farmer from Ohio, and upon arriving in Iowa he purchased 160 acres of land to establish a farm with his wife, Elizabeth McMurn Early. This house was probably the second built on the Early farm and was completed around 1865. It was constructed of locally-quarried limestone and features a gable roof and a raised basement. Elizabeth Early died in 1872 and John died the following year, leaving the house and land to their son, James Early, who owned the property until 1896. The John and Elizabeth McMurn Early House was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1786 Elmwood Ave.<br />Earlham, IA 50072<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Madison County Courthouse",
            "lat": "41.334918",
            "lon": "-94.013884",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-madisoncountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Madison County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.334918,-94.013884\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Although Madison County was established in 1849, it was not until 1868 that the county had a stone building to replace the original log courthouse. When that second courthouse was destroyed by fire in 1875, the county board of supervisors, under the leadership of W.H. Lewis, elected to rebuild on the foundation of the burned out structure. The third and present building was a near duplication of the second courthouse, designed by A.H. Piquenard, one of the architects of the state capitol in Des Moines. Construction began in the spring of 1876 and was completed in 1877. The Madison County Courthouse was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t112 N John Wayne Dr.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William R. and Martha Foster Shriver House",
            "lat": "41.334234",
            "lon": "-94.006933",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-williamrandmarthafostershriverhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William R. and Martha Foster Shriver House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.334234,-94.006933\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>William R. Shriver was born in Columbiana County, Ohio, in 1830 and moved to Jefferson County, Iowa, at the age of 18. He moved to Madison County around 1853 and set up a wagon-making business in Winterset. In 1858, he married Martha Foster. When the Civil War erupted in 1861, Shriver was one of the first in town to enlist, serving as a lieutenant in the First Iowa Cavalry until mid-1864. He returned to Winterset, where he resumed his business and began purchasing land. The Shriver house was built sometime between 1865 and 1869, most likely by local master stone mason David Harris, based on its design and high level of craftsmanship. It was constructed from locally-quarried limestone and features stylistic details that are absent from many of the other stone houses around Madison County, including two octagonal stone chimneys and the decorative use of orange-colored rubble in the stonework. The William R. and Martha Foster Shriver House was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t616 E Court Ave.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Jasper County",
            "lat": "41.578583",
            "lon": "-92.846372",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-monument-sullyfreedomrock-1.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Jasper County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.578583,-92.846372\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jasper County Freedom Rock® in Sully features a unique illustration of a Revolutionary War hero, Sgt. William Jasper. Under attack by the British and low on ammunition, Sgt. Jasper and the 2nd South Carolina Regiment only fired when ships closed in on their fort. The liberty flag they were fighting under, designed by Col. Moultrie at the behest of the colonial government, was shot down and fell to the bottom of the ditch on the outside of the fort. Leaping from an opening, Jasper recovered the flag, which he tied to a sponge staff where he supported it under intense enemy fire until a permanent flag staff had been procured and installed. With this rallying point, the colonists held out until sunset, forcing the British to retreat. Jasper was offered an officers commission, but turned it down because he felt it would be an embarrassment since he couldn&#039;t read or write. He was later killed in battle, but not before he could move his regiment&#039;s colors to a place of safety before he died. On the west side of the rock is an eagle carrying a purple heart and silver star, those medals earned by heroic Jasper County residents. It also features a farmer and soldier crouched, almost as one, signifying the citizen soldier with a quote from President Washington: &quot;When we assumed the soldier, we did not lay aside the citizen.&quot; The Jasper County (Sully) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t380 7th Ave.<br />Sully City Park<br />Sully, IA 50251<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Iowa Theater, Winterset",
            "lat": "41.335259",
            "lon": "-94.013216",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-theater-iowatheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Theater, Winterset</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.335259,-94.013216\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Since 1912, there has been a theater at this site on the Winterset Town Square. The Iowa Theatre was built in the 1920s and the exterior was updated in 1938. The front of the building features a historic Art Deco style marquee that spans the full width of the façade. The Iowa Theatre has been used as a movie theatre since it was constructed, however it has been open and closed many times. Marianne and Rebecca Fons purchased the theatre in July 2015 and completed a project to rehabilitate, restore and upgrade the space to create a multi-use performance center for the community. In September 2017, the iconic marquee was re-lit with modern LED lights.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t121 John Wayne Dr.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.the-iowa.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "television-and-movie-sites.png",
            "title": "Northside Café",
            "lat": "41.335532",
            "lon": "-94.014006",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-tvmoviesite-northsidecafe.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/television-and-movie-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Northside Café</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.335532,-94.014006\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Northside Cafe is located in a historic building on the north side of the Winterset town square, across the street from the Madison County Courthouse. Bridges of Madison county was written from its window seat booth, and was featured in the 1995 film &quot;The Bridges of Madison County&quot;, based on Robert James Waller’s novel of the same name. In the film, the cafe is where Robert Kincaid (Clint Eastwood) meets Lucy Redfield (Michelle Benes). The cafe has been part of the presidential candidate circuit going back decades, and its upstairs has served as City Hall and Opera house in the 1800s.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t61 E. Jefferson St.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.462.1523</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.northsidecafe.us/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "John Wayne Birthplace and Museum",
            "lat": "41.333187",
            "lon": "-94.012936",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-notableiowan-johnwaynebirthplace.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Wayne Birthplace and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.333187,-94.012936\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Movie cowboy John Wayne was born as Marion Robert Morrison in a modest four-room house in Winterset, on the corner of East South Street and South Second Street, on May 26, 1907. The home has been restored to reflect its appearance at the time of his birth. In addition, the John Wayne Birthplace Museum has an impressive collection of John Wayne memorabilia on display, including photographs, letters, and props from Wayne&#039;s career.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2015 S John Wayne Dr.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 877.462.1044</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://johnwaynebirthplace.museum/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Iowa Quilt Museum",
            "lat": "41.334316",
            "lon": "-94.014373",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-artmuseum-iowaquiltmuseum-1.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Quilt Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.334316,-94.014373\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Quilt Museum is located in Winterset&#039;s historic town square and displays vintage and contemporary quilts with exhibits that rotate every four months.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t68 E Court<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Cutler-Donahoe Covered Bridge",
            "lat": "41.331071",
            "lon": "-94.004734",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-bridge-cutlerdonahuebridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cutler-Donahoe Covered Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.331071,-94.004734\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cutler-Donahoe Covered Bridge is one of the oldest bridges in Madison County. It was built in 1870 by Eli Cox and features a pitched roof, a design element borrowed from eastern artisans of the early 19th century. Originally located over the North River near Bevington, the bridge was relocated to its present site in 1970 and placed on steel abutments spanning a natural ravine just inside the entrance to the Winterset City Park. The Cutler-Donahoe Covered Bridge was added to the National Regster of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS 9th St.<br />Winterset City Park<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry C. Wallace House",
            "lat": "41.335243",
            "lon": "-94.019113",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-henrycwallacehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry C. Wallace House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.335243,-94.019113\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Henry C. Wallace and his wife Nanie Cantwell Wallace lived in this house from 1882-1891, an important transitional period in Wallace’s life and career. The family moved to Winterset from Morning Sun, Iowa, and bought a significant amount of farmland east of the town. Wallace developed a steer farm, a dairy farm, and a hog farm, and devoted his efforts to improving farming and livestock practices. He began to write agriculture articles for local newspapers, serving as editor for both the Winterset Chronicle and the Winterset Madisonian in the early 1880s. In 1883, he became involved with the Iowa Homestead Magazine of Des Moines and became editor of that publication two years later. After leaving Winterset, Wallace acquired the Ames Farm and Dairy magazine with his sons, Henry and John. The magazine became Wallace’s Farmer and grew to be one of the leading agriculture publications in the United States. The time Wallace spent in this home in Winterset and on his nearby farms transformed him into an influential voice in agriculture journalism. The Henry C. Wallace House was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t422 W Jefferson St.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sprague, Brown and Knowlton Store",
            "lat": "41.334328",
            "lon": "-94.014393",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-spraguebrownandknowltonstore.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sprague, Brown and Knowlton Store</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.334328,-94.014393\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>William Knowlton built this stone commercial building in 1866 to house the Sprague, Brown, and Knowlton dry goods store. It was constructed of locally-quarried limestone and may have been the work of local master stone mason David Harris. The building is a large rectangular structure with two stories and a flat roof. The Sprague, Brown, and Knowlton Store was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t52 E Court Ave.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "White, Munger and Company Store",
            "lat": "41.334352",
            "lon": "-94.014707",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-whitemungerandcompanystore.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">White, Munger and Company Store</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.334352,-94.014707\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>White, Munger, and Company operated a woolen mill east of Winterset, and this building housed their retail store. The building was constructed around 1861, made from locally-quarried limestone. The two-story rectangular building features a false front to conceal the gable roof. The White, Munger, and Company Store was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 W Court Ave.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "E. A. and Rebecca Marsh House",
            "lat": "41.742834",
            "lon": "-92.717966",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-earebeccamarshhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">E. A. and Rebecca Marsh House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.742834,-92.717966\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1892-1893 as the residence for one of Grinnell&#039;s leading merchants, jeweler E.A. Marsh, this house is significant as one of the best examples of Queen Anne architecture found in Grinnell. It was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t833 East St.<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Conant&#039;s Cabin and Park",
            "lat": "42.177009",
            "lon": "-92.658690",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-nhr-conantscabinandpark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Conant&#039;s Cabin and Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.177009,-92.658690\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Conant Cabin and Park is significant in the context of the beginnings of the State Parks system in the United States and Iowa’s development of a state park system. The cabin was a memorial to George Conant’s pioneer father. Conant Cabin and Park were added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA Hwy. 96<br />Gladbrook, IA 50635<br />Tama County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Imes Covered Bridge",
            "lat": "41.289069",
            "lon": "-93.800906",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-bridge-imesbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Imes Covered Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.289069,-93.800906\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Imes Covered Bridge was built in 1870 and is the oldest covered bridge in Madison County. It is one of two bridges in the area built by J.P. Clark. The Imes Covered Bridge was originally located over the Middle River, west of Patterson. It has been relocated twice, first in 1887 and again in 1977, when it was moved to its current location over a natural ravine just east of St. Charles. The bridge was constructed from native lumber in a Town lattice design, with a metal pitched roof. The Imes Covered Bridge was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. G50<br />Covered Bridge Park<br />Saint Charles, IA 50240<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "J. G. and Elizabeth S. Vawter House",
            "lat": "41.332748",
            "lon": "-94.013071",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-jgandelizavethvawterhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J. G. and Elizabeth S. Vawter House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.332748,-94.013071\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was owned by Elizabeth S. Vawter, wife of J.G. Vawter. J.G. Vawter was one of the earliest merchants in Winterset, arriving in 1854. He built a large, two-story store building shortly after arriving, and the Vawter house was likely completed before 1857. The house was built by Caleb Clark and is an example of an early stone mansion, constructed from locally-quarried limestone. Notable design features include two stone chimneys, one octagonal and one square, large windows, and a distinctive arched doorway. The Elizabeth S. and J.G. Vawter House was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t223 S John Wayne Dr.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "McDonald House",
            "lat": "41.358963",
            "lon": "-94.092103",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McDonald House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.358963,-94.092103\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>William S. McDonald came to Madison County during the Civil War, and moved to this property with his wife, Barbary Combs McDonald during the early 1870s. The McDonalds owned the property for over 50 years, and probably built the house between 1869 and 1875. The house was constructed of locally-quarried limestone toward the end of the stone building era in Madison County. It was likely built by David Harris, one of the few master stone masons still in business in the county during the 1870s. The McDonald House was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1786 200th St.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Miller Richard and Mary Fisher Tidrick House",
            "lat": "41.333650",
            "lon": "-94.018516",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-millerrichardandmaryfishertidrickhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Miller Richard and Mary Fisher Tidrick House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.333650,-94.018516\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Miller Richard Tidrick, a native of Guernsey County, Ohio, came to Des Moines in 1852 at the age of 17. In the spring of 1853, he went west to California, spending five years working in the mining camps as an oxen teamster. Tidrick returned to Iowa in 1858, settling in Winterset where his two brothers, Dr. L.M. Tidrick, a physician, and Isaac L. Tidrick, a druggist, owned businesses. Miller R. Tidrick was working as a clerk in his brother’s drug store when the Civil War erupted. He was one of the first men to enlist from Madison County when he joined the Third Iowa Volunteer Infantry, but he served only one year before he was discharged for unknown health reasons. Tidrick returned to Iowa and married Mary A. Fisher in July 1862. Later that year, he established a grocery business in Winterset and soon brought his brother Isaac in as a partner. Tidrick and his wife purchased this property in January 1863 and constructed the stone house around 1865. The one and one half story house was built from locally-quarried limestone, probably by local master stone mason David Harris. The Tidrick family remained in this home until 1882. The Miller Richard and Mary Fisher Tidrick House was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t122 S 4th Ave.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "W. J. and Nettie J. Cornell House",
            "lat": "41.334192",
            "lon": "-94.020905",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-wjandnettiejcornellhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">W. J. and Nettie J. Cornell House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.334192,-94.020905\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>W.J. Cornell was a banker in Winterset. In 1893, he announced his intention to build a home for he and his wife Nettie in Winterset’s West Addition. This addition had been developed as “the choicest location for residences in the City of Winterset.” The home was built over three years, from 1893 to 1896 at a cost of $3,500. Fred Lewis, the same contractor-builder, who supervised the construction of the Madison County Courthouse, built the home. The Cornells lived in their new Queen Anne style home for only three years before selling it Samuel G. Ruby, a Madison County lawyer, for $5,000. They built a fine brick home in Winterset, eventually left town and reportedly later lost their money. The W.J. and Nettie J. Cornell House was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t602 W Court Ave.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Delicious Apple Tree Marker",
            "lat": "41.329989",
            "lon": "-94.003207",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-monument-deliciousapple.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Delicious Apple Tree Marker</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.329989,-94.003207\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Jesse Hiatt was a Madison County farmer who discovered an unusual seedling in his apple orchard in 1872. He carefully nurtured the tree and found its first fruit to be of a remarkable flavor. Originally named Hiatt&#039;s Hawkeye, the apple was entered in the Missouri State Fair in 1893. Upon biting into the apple, one judge proclaimed it delicious and that name stuck. A descendant of the original Delicious apple tree still stands in the field just north of Peru, and residents celebrate each year with an Apple Days Festival.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS 9th St.<br />Winterset City Park<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "St. Charles Welcome Center: Gateway to the Covered Bridges",
            "lat": "41.288250",
            "lon": "-93.804432",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-historicsite-stcharleswelcomecenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Charles Welcome Center: Gateway to the Covered Bridges</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.288250,-93.804432\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The St. Charles Welcome Center is a beautifully restored early 20th century church with unique stained glass windows. Inside, the welcome center features a selection of antiques and crafts for purchase, and outside there is a walking path that leads to the historic Imes Covered Bridge.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t202 E Main St.<br />Co. Rd. G50<br />St. Charles, IA 50240<br />Madison County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.396.2102</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Winterset World War I Memorial",
            "lat": "41.329929",
            "lon": "-94.009321",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-monument-wintersetworldwar1memorial-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Winterset World War I Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.329929,-94.009321\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Madison County soldiers who sacrificed their lives in World War I are memorialized around a tall, granite marker topped by a statue of a soldier. The monument is inscribed: &quot;Erected by the people of Madison County, Iowa, as a grateful tribute to the memory of its soldiers and sailors.&quot; It stands on a plot of ground that the Winterset Cemetery Association donated to the War Memorial Association, whose members dedicated the monument on Veterans Day in 1920.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS 4th St.<br />Winterset Cemetery<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Guiberson House",
            "lat": "41.332348",
            "lon": "-94.018282",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-guibersonhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Guiberson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.332348,-94.018282\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built for Edwin R. Guiberson, who came to Winterset in the late 1840s. Guiberson was a prominent and influential member of the community, working as the lot agent for the sale of property when Winterset was first platted in 1849 and later being elected as County Judge in 1859. The house was built in the early 1860s by Caleb Clark, a local stone mason. It is constructed from locally-quarried limestone and features a simple form without embellishments, similar to many other stone residences built throughout Madison County in the mid-19th century noted for their simplicity and craftsmanship. The Guiberson House was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t302 S 4th Ave.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hogan and Martha A. Runkle Queen House",
            "lat": "41.301557",
            "lon": "-93.897709",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-hoganandmarthaarunklequeenhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hogan and Martha A. Runkle Queen House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.301557,-93.897709\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Hogan Queen came to Madison County in 1853 and began buying land, acquiring 900 acres by 1855 and eventually increasing his holdings to 1420 acres. Queen worked as a farmer and livestock dealer, and he also operated a stage coach shop out of his two and one half story stone farm house. The house was built around 1856 and was constructed from limestone that was probably quarried on Queen’s own land. Notable architectural features include cut out barge boards, a protruding water table and lintel course, an octagonal stone chimney, and another stone chimney with four rounded sides. The Hogan and Martha A. Runkle Queen House was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2793 St. Charles Rd.<br />Co. Rd. G50<br />Saint Charles, IA 50218<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Madison County Historical Complex",
            "lat": "41.327298",
            "lon": "-94.014488",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-historymuseum-madisoncountyhistoricalsociety.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Madison County Historical Complex</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.327298,-94.014488\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Madison County Historical Complex is a 18 acre plot with 14 historic Madison County buildings. The complex includes the Log School, the Tusha School, Pleasant View Post Office, 1871 Winterset Railroad Depot, McKee Barn and the 1881 Zion Church. Also on site is the Bevington-Kaser Mansion, dating to 1856. Charles Bevington went to California during the 1849 Gold Rush and settled in Winterset in 1853. He owned over 4,000 acres of land in Madison County and also owned a local brickyard. The home contains nine rooms and all have walnut woodwork, cut from local trees. The Bevington House and Stone Barn were added to the National Register of Historic Places in 1976. Later, in 1987, the C.D. Bevington Stone Privy, noted for the six-foot deep stone vault beneath the entire privy, was also added to the National Register of Historic Places.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t815 S 2nd Ave.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.462.2134</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://historyonthehill.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Morgan Bridge",
            "lat": "41.328138",
            "lon": "-94.013055",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Morgan Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.328138,-94.013055\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Morgan Bridge spans a branch of Clanton Creek about four miles southeast of Peru, Iowa, in rural Madison County. It was built in 1891 by Winterset contractor Benton Jones, using a wrought iron superstructure fabricated by the King Iron Bridge Company of Cleveland, Ohio. The bridge is a relatively early example of a Pratt pony truss, which was the bridge of choice for short-span applications in the late 19th century. The Morgan Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMadison County Historical Complex<br />815 S 2nd Ave.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Lang Barn",
            "lat": "41.745639",
            "lon": "-92.697584",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-barn-langbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lang Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.745639,-92.697584\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">52.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This early 20th century brick barn is a landmark in Grinnell.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUS Hwy. 6<br />Grinnell, IA 50112<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John M. Duncan House",
            "lat": "41.319981",
            "lon": "-94.016762",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-johnmduncanhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John M. Duncan House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.319981,-94.016762\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">52.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>John M. Duncan purchased the land for his 40 acre farm in 1866, and this house was constructed by 1875. It is a one story gabled house and was built from locally-quarried limestone. Notable features include the use of very large unsquared rubble and uncoarsed broken bond, which give an almost wave-like appearance to the grapevine joints. The John M. Duncan House was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS 4th Ave.<br />Co. Rd. P69<br />Winterset, IA 50240<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry and Elizabeth Adkinson Evans House",
            "lat": "41.311728",
            "lon": "-93.992658",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-henryandelizabethadkinsonevanshouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry and Elizabeth Adkinson Evans House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.311728,-93.992658\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">52.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Henry Evans came to the United States with his mother when he was 14 years old. They settled near Buffalo, Iowa, where they farmed 175 acres of land. After his mother’s death in 1875, Henry Evans inherited 100 acres. He opened a quarry to cut the limestone to build this house, which was completed around 1885. This is the latest stone farm residence built from native limestone by a local builder. The Henry and Elizabeth Adkinson Evans House was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tSt. Charles Rd.<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Polled Hereford Breed Origin Site",
            "lat": "41.260575",
            "lon": "-93.683194",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Polled Hereford Breed Origin Site</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.260575,-93.683194\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">52.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>On this site, at the turn of the 20th century, the Polled Hereford cattle breed was originated by Warren Gammon. Occasionally a purebred Hereford would fail to develop horns and several attempts were made to produce a &quot;polled&quot;, or natually hornless, purebred breed of this type, without success. Gammon and his son conducted numerous experiments and hit upon the right combination which led to the Polled Hereford breed.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1820 65th Ave.<br />St Charles, IA 50240<br />Warren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Cornelia Lake Bridge",
            "lat": "42.792663",
            "lon": "-93.690002",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-nhr-cordelialakebridge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cornelia Lake Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.792663,-93.690002\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">53mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cornelia Lake Bridge (also called Berry Bridge) was built in 1877 by A. S. Leonard and the Wrought Iron Bridge Co. of Canton, Ohio. The bridge was built over the Iowa River in Section 24 of Grant Township. It was moved in 1987 over an inlet of Cornelia Lake on the Lake Cornelia Path. Although, it has been removed from its original location, this pony truss is Wright County&#039;s oldest steel truss. It was added to the National Register of Historic Places on May 15, 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tLake Cornelia Path<br />Clarion, IA 50525<br />Wright County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Octagon Barn",
            "lat": "41.268140",
            "lon": "-93.443252",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Octagon Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.268140,-93.443252\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">53.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Octagon Barn in Otter Township is one of at least seven round barns of this type that were built on Iowa farms. This barn is a close relative to a nine-sided barn in Ringgold County and a twelve-sided model that once stood in Cedar County. The one story shed roofed wing surrounding the two story central section characterizes this barn as an encircling wing type. The barn was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t190th Ave.<br />Otter Township<br />Milo, IA 50166<br />Warren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "McBurney Barn",
            "lat": "42.679956",
            "lon": "-94.205635",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McBurney Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.679956,-94.205635\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">53.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Stephen Taft, who founded Springvale which became Humboldt, owned the land on which this barn stands. In 1874 he sold the land to Lorbeers who built the house and barn in 1890. It was later sold to the grandfather of Gladys McBurney, who with her husband Harold, restored the barn with help from the Iowa Barn Foundation. McBurney grew up working the farm and along with her husband took over the dairy business from her parents when they retired. The barn has two silos that were used to store chopped corn, a horse pen on the lower level and stalls to hold 35 dairy cows. The farmstead is a century farm and has been in the family for more than 100 years.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2550 Gotch Park Rd.<br />Humboldt, IA 50548<br />Humboldt County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Bennett Barn",
            "lat": "42.784008",
            "lon": "-93.420043",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/franklin-barn-bennettbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bennett Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.784008,-93.420043\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">53.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bennett Barn was built in 1950 by the Henning Construction Company of Latimer, Iowa with clay tile and a round laminated rafter roof. Built for a dairy herd, the barn&#039;s cow stanchions had drinking cups and a chain lift manure carrier. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1664 Eagle Ave.<br />Latimer, IA 50452<br />Franklin County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Whiterock Conservancy",
            "lat": "41.855357",
            "lon": "-94.661061",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/guthrie-botany-whiterockconservancy.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Whiterock Conservancy</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.855357,-94.661061\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">53.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Whiterock Conservancy is a is a non-profit land trust stewarding seven square miles of land along the Raccoon River. They protect and restore the area&#039;s natural resources and wild beauty, to provide people of all ages with safe, meaningful and unique outdoor recreation and education experiences, and to demonstrate and promote sustainable agriculture practices that respect the land, clean the water and improve the soil.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1390 Hwy. 141<br />Coon Rapids, IA 50058<br />Guthrie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.684.2697</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://whiterockconservancy.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "John S. and Elizabeth Beem Holmes Barn",
            "lat": "41.283489",
            "lon": "-93.953987",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-johnsandelizabethbeemholmesbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John S. and Elizabeth Beem Holmes Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.283489,-93.953987\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">53.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>John S. and Elizabeth Beem Holmes were early settlers in Madison County, moving here from Indiana in 1854. They purchased a 40-acre farm, which they gradually expanded to 350 acres. John S. Holmes worked as a farmer and stock raiser, while also serving as a community leader and holding several local offices. The Holmes Barn was built in 1875 and constructed of locally-quarried limestone. It is one of only a few remaining stone agricultural buildings in the area and is the largest of these by far, measuring 39 by 52.5 feet and standing as tall as a three-story building. Aside from its size, the barn’s most notable features are the large arched doors at each gable end. The John S. and Elizabeth Beem Holmes Barn was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2504 250th Ln.<br />East Peru, IA 50222<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Grandpa&#039;s Farm and Pleasant Hill Town",
            "lat": "42.740362",
            "lon": "-93.220089",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grandpa&#039;s Farm and Pleasant Hill Town</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.740362,-93.220089\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">53.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Franklin County Fair is home to Grandpa&#039;s Farm and the Pleasant Hill Town. At Grandpa&#039;s Farm visitors can watch old time farming demonstrations with vintage equipment powered by draft horses, steam engines and antique tractors. The Pleasant Hill village is an early 1900s town built on the fairgrounds with demonstrations, craftsmen and entertainment. The town includes the Fairview country school that dates to the early 1900s.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1008 Central Ave. W<br />Franklin County Fairgrounds<br />Hampton, IA 50441<br />Franklin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.456.2049</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.franklincountyfair.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Franklin County Historical Society Museum",
            "lat": "42.741604",
            "lon": "-93.219438",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Franklin County Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.741604,-93.219438\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54mi.</span></div>\n\t\t</div>\n\n\t\t<p>The museum&#039;s farm machinery collection, covering 150 years, shows the advancement of farm technology. The &quot;Sheffield Brick and Tile&quot; exhibit explains the manufacture of drainage pipe used to improve crop production. The photo collection captures the activities of farm work and rural living, the production and processing of hemp during World War II and the Ferris Nursery production of evergreen windbreak trees. Military exhibits include a homage to Hampton native and Five-Star Fleet Admiral William Daniel Leahy. Visit the nearby Civil War Memorial Hall for more military history.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1008 Central Ave. W<br />Franklin County Fairgrounds<br />Hampton, IA 50441<br />Franklin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.456.5777</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.fchsmuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dr. O. B. Harriman House",
            "lat": "42.742616",
            "lon": "-93.220690",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. O. B. Harriman House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.742616,-93.220690\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dr. O.B. Harriman House was built around 1881. Dr. Harriman was a local physician and community leader in Hampton, operating a medical practice that served the town and surrounding areas for over 50 years. His home was added to the National Register of Historic Places in 1989.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t26 10th St. NW<br />Hampton, IA 50441<br />Franklin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Roswell and Elizabeth Garst Farmstead",
            "lat": "41.860219",
            "lon": "-94.670430",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/guthrie-nhr-roswellandelizabethgarstfarmsteadhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Roswell and Elizabeth Garst Farmstead</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.860219,-94.670430\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Roswell and Elizabeth Garst Farmstead Historic District is a farm in Guthrie County near Coon Rapids. It was the home of Roswell Garst, who played a key role in the marketing of hybrid seed corn and other agricultural innovations. On September 23, 1959, the farm was visited by Soviet premier Nikita Krushchev, and this visit influenced his decision to attempt an overhaul of the Soviet agricultural system. The main farmhouse currently serves as the office for the Whiterock Conservancy. The property was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1390 Hwy. 141<br />Whiterock Conservancy<br />Coon Rapids, IA 50058<br />Guthrie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.684.2964</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.whiterockconservancy.org/lodging.html#BB\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wagaman Mill and Museum",
            "lat": "41.580688",
            "lon": "-92.782615",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/jasper-nhr-wagamanmill-3-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wagaman Mill and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.580688,-92.782615\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54mi.</span></div>\n\t\t</div>\n\n\t\t<p>Wagaman Mill was built in 1846 by John R. Sparks as a paddle wheel saw mill on the North Skunk River. In 1848, the mill was converted into a grist mill with the construction of a wooden dam across the river. The 1868 addition of a hydraulic turbine allowed for a year-long operation and the mill has since been utilized to produce flour, animal feed, meal and electric power. The mill and dam were added to the National Register of Historic Places in 1977.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 East St.<br />Lynnville, IA 50153<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.527.2766</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://jaspercountyconservation.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hampton Double Square Historic District",
            "lat": "42.741773",
            "lon": "-93.208023",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hampton Double Square Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.741773,-93.208023\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction of Hampton&#039;s Double Square began in 1856 headed by Liebbe, Norse, and Rasmussen. The double square is a rare design for Iowa town squares, covering two blocks rather than the single-block courthouse square typical of Iowa county seats. It was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st Ave. NW<br />Hampton, IA 50441<br />Franklin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Franklin County Courthouse",
            "lat": "42.742288",
            "lon": "-93.208044",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/franklin-nhr-franklincountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Franklin County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.742288,-93.208044\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Franklin County Courthouse was built in 1891 by T.D. Allen. It was designed in the Romanesque Revival style of the late 19th century, with decorative touches in brick and carved stone. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t12 1st Ave. NW<br />Hampton, IA 50441<br />Franklin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "H. E. Boehmler House",
            "lat": "42.740646",
            "lon": "-93.205191",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">H. E. Boehmler House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.740646,-93.205191\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The H.E. Boehmler house was built in 1915 by J.H. Jeffers and Einar Broaten. It is a good example of the Prairie School design inspired by Frank Lloyd Wright. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t105 2nd St. SE<br />Hampton, IA 50441<br />Franklin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Grundy County Heritage Museum",
            "lat": "42.341836",
            "lon": "-92.674560",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/grundy-historymuseum-grundycountyheritagemuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grundy County Heritage Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.341836,-92.674560\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grundy County Museum displays a wide variety of artifacts from Grundy County&#039;s past and includes natural history displays of wildlife mounts and aquariums, including an interactive underwater mural. Also located on the museum grounds is the Colfax Township No. 3 School, Peck Log Cabin (the first built in the county), and railroad exhibit.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t204 4th St.<br />Morrison, IA 50669<br />Grundy County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.345.2688</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Windsor Theatre",
            "lat": "42.742957",
            "lon": "-93.207170",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/franklin-theater-windsortheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Windsor Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.742957,-93.207170\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Windsor Theatre was built in 1913 and is still showing movies today. It has been listed on the national historic register since 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t103 Federal St. N<br />Hampton, IA 50441<br />Franklin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.456.4389</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.windsortheatre.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Armour Creameries Poultry House",
            "lat": "41.869067",
            "lon": "-94.677835",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/carroll-nhr-armourcreameriespoultryhouse-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Armour Creameries Poultry House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.869067,-94.677835\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Armour Creameries Poultry House is an excellent example of the ever-increasing economic and social ties that linked small Iowa hinterland towns to bigger urban centers such as Chicago, here reflected over the three decades from the eve of the Great Depression through the golden economic years that followed World War II - 1928 to about 1958. The Coon Rapids Armour facility is not only a small chapter in the meatpacking giant&#039;s modern corporate history, it also reflects what happens at the local level when a large corporation comes to town and sets up shop. It was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t218 5th Ave. S<br />Coon Rapids, IA 50058<br />Carroll County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Franklin County G.A.R. Soldiers&#039; Memorial Hall",
            "lat": "42.742036",
            "lon": "-93.207036",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/franklin-nhr-franklincountygarsoldiersmemorialhall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Franklin County G.A.R. Soldiers&#039; Memorial Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.742036,-93.207036\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Franklin County G.A.R. Soldiers&#039; Memorial Hall was built in 1889 by Edward Carl Keifer. It is one of the few examples of this type of architectural style in the area—a memorial chapel with a cross-shaped plan topped by an octagonal cupola with a dedicatory figure on top. It was the first G.A.R. Memorial Hall built in Iowa, dedicated solely to honor Civil War veterans. It was added to the National Register of Historic Places in 1988.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3 Federal St. N<br />Hampton, IA 50441<br />Franklin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Franklin County Sheriff&#039;s Residence and Jail",
            "lat": "42.742048",
            "lon": "-93.206626",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Franklin County Sheriff&#039;s Residence and Jail</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.742048,-93.206626\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Franklin County Sheriff&#039;s Residence and Jail were built around 1880 by P.J. Pauly and Bro. and D.W. Dow. The county sheriff was charged with maintaining all felons committed by the county court in a jail facility. In the early years of Iowa history, this often meant a single room within the sheriff&#039;s own residence. Originally the local jails were primarily places for detention prior to trial and for debtors. However, as times changed, the county jails became the location of prisoners convicted of misdemeanors and other minor crimes who were serving terms of less than one year, and the need for larger jails became apparent. At that time the counties began building proper jail facilities. These were almost always located in the county seat community within a few blocks of the county courthouse. The Franklin County Sherriff&#039;s Residence and Jail were added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t18 Central Ave. E<br />Hampton, IA 50441<br />Franklin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hiram C. Smith House and Milking Shed",
            "lat": "41.329774",
            "lon": "-94.141656",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-hiramcsmithmilkingshed.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hiram C. Smith House and Milking Shed</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.329774,-94.141656\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Hiram C. Smith was one of the earliest settlers of Lincoln Township in Madison County. He purchased 280 acres of farmland in the mid-1850s, and purchased additional land for a limestone quarry in 1858 to obtain the stone necessary to build the house, milking shed, and the bottom story of the barn. The house is one of the simplest and most roughly constructed residences in the county, most likely built by Smith himself rather than a hired stone mason. It is a one-story home that measures 12 x 20 feet. The milking shed is a one-story, rectangular structure measuring 18 x 48 feet, constructed in the same simple form as the house. The Hiram C. Smith House and Milking Shed were added to the National Historic Register in 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1488 IA Hwy. 92<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Hinderaker Barn",
            "lat": "41.615587",
            "lon": "-94.549913",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/guthrie-barn-hinderakerbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hinderaker Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.615587,-94.549913\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The original barn at the Hinderaker Farm was built at the turn of the century. When it burned down in 1931, this barn was built. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2698 Jaguar Trl.<br />Guthrie Center, IA 50115<br />Guthrie County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hope Fire Company Engine House",
            "lat": "41.994940",
            "lon": "-92.578140",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-nhr-hopefirecompanyenginehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hope Fire Company Engine House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.994940,-92.578140\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Toledo Hope Fire Company organized in 1876 as a volunteer organization and was originally housed in a simple two-story frame engine house, built in 1883. This engine house was their second building. It was built in late 1887 by Andrew A. Jones who in 1910 was considered as “prominently known in Toledo as a contractor and builder.” The Hope Fire Company Engine House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t109 S Broadway<br />Toledo, IA 52342<br />Tama County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Vos Barn",
            "lat": "41.444570",
            "lon": "-92.924384",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-barn-vosbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vos Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.444570,-92.924384\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Vos family barn was built in 1929 by the De Kock family of Pella. It was constructed with commercial milled lumber, round nails, and factory-made windows-modern materials at the time. The barn featured a 10-stanchion milking parlor with cement gutter, stalls for four draft horse teams, and a large hayloft. The barn was purchased in 1992 by Rob and Teri Vos. The barn was featured on the Iowa Barn Foundation&#039;s 2004 tour of barns in Marion and Mahaska counties.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t541 IA Hwy. T14<br />Pella, IA 50219<br />Marion County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Tama County Historical Museum and Genealogy Library",
            "lat": "41.996859",
            "lon": "-92.578116",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-historymuseum-tamacountyhistoricalmuseumandgenealogylibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tama County Historical Museum and Genealogy Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.996859,-92.578116\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Tama County Historical Museum and Genealogical Society opened in 1974. The museum is housed in a former jail, built in 1870. Although the county was originated in 1853, there was no sentiment to build a jail and prisoners of the county were lodged in jails in neighboring counties. The completion of a new courthouse in Toledo in 1865 was probably the chief factor leading to the erection of a county lockup. Exhibits at the museum include Native American and pioneer artifacts, an extensive genealogical library, an 1800s Bohemian cabin and 1870 one-room schoolhouse. The Tama County Jail was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 N Broadway St.<br />Toledo, IA 52342<br />Tama County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.484.6767</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wieting Theatre",
            "lat": "41.995349",
            "lon": "-92.576719",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-theater-wietingtheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wieting Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.995349,-92.576719\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wieting Theatre opened in 1912. It is built in the Colonial Revival style, which was unusual in small towns. The Wieting was one of three, possibly identical, opera houses funded by Ella W. Wieting as memorials to her husband. The Wieting Theatre was added to the National Register of Historic Places in 1979 and was recently renovated. Movies are now shown there, in addition to it being a live theatre venue.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 S Church St.<br />Toledo, IA 52342<br />Tama County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Coal Ridge Baptist Church and Cemetery",
            "lat": "41.378246",
            "lon": "-93.023511",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-nhr-coalridgebaptistchurchandcemetery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Coal Ridge Baptist Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.378246,-93.023511\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">55mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1909, the Coal Ridge Baptist Church and Cemetery is significant on the local level because of the social history. The church became a gathering place in the 20th Century for the unincorporated “Down on the Ridge” community of Coalport and Coal Ridge. The Church is the last remaining building of this historic community. The architecture of the exterior of the chury blends the influences of Neo-Classical and late Gothic Revival styling together in a design of striking simplicity, while the interior shows a careful regard for practicality thus providing the church with significance as well. It was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1034 Co. Rd. S71<br />Knoxville, IA 50138<br />Marion County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Beed&#039;s Lake State Park",
            "lat": "42.768915",
            "lon": "-93.243429",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Beed&#039;s Lake State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.768915,-93.243429\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">55.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Beeds Lake State Park was built around 1934 by the Civilian Conservation Corps (CCC)—a federal program during the Depression Era. The CCC was designed to provide manual labor jobs for young men while implementing a natural resource conservation program in every state and territory. Beeds Lake State Park was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1422 165th St.<br />Hampton, IA 50441<br />Franklin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.456.2047</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610145\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Fobes Octagon Barn",
            "lat": "42.136207",
            "lon": "-94.708805",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fobes Octagon Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.136207,-94.708805\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">55.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fobes Octagon barn is one of, at most, fourteen 19th century octagon barns known to exist in Iowa. It is included in “Iowa Round Barns: The Sixty-Year Experiment” and was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t286 Lanesboro<br />Lanesboro, IA 51451<br />Carroll County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "National Sprint Car Hall of Fame and Museum",
            "lat": "41.327626",
            "lon": "-93.110126",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-historymuseum-nationalsprintcarhalloffameandmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">National Sprint Car Hall of Fame and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.327626,-93.110126\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">55.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The National Sprint Car Hall of Fame and Museum is located next to the famous half-mile dirt track Knoxville Raceway, home of the Knoxville Nationals. The museum opened in 1992 and preserves the history of the sport of sprint car racing and honoring the sport&#039;s legends. Visitors to the museum will see trophies, racing uniforms and sprint cars.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1 Sprint Capital Pl.<br />Knoxville, IA 50138<br />Marion County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 1.800.874.4488</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.sprintcarhof.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. William Stone Gravesite",
            "lat": "41.320640",
            "lon": "-93.119374",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-govgravesite-governorwilliamstonegravesite.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. William Stone Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.320640,-93.119374\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">55.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>William Milo Stone (October 14, 1827 – July 18, 1893) served as the 6th Governor of Iowa from 1864 - 1868. He died in Oklahoma and is buried at Graceland Cemetery in Knoxville.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWillets Dr. and W Pleasant St.<br />Graceland Cemetery<br />Knoxville, IA 50138<br />Marion County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Cecil Gillespie Barn",
            "lat": "41.331032",
            "lon": "-94.191771",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-barn-cecilgillespiebarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cecil Gillespie Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.331032,-94.191771\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">55.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This unique barn was built in 1874 by W.W. George. It is located on Old Bluff Road, a route that was traveled by many early settlers on their way to Council Bluffs. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1257 IA Hwy. 92<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Rockwell City Bridge",
            "lat": "42.398904",
            "lon": "-94.607351",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/calhoun-bridge-nhr-rockwellcitybridge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rockwell City Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.398904,-94.607351\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">55.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rockwell City Bridge was designed by James B. Marsh from Des Moines. It was built by the Iowa Bridge Company, also from Des Moines, in 1915. The bridge carried a county road until it was later incorporated as part of U.S. Highway 20. It carried relatively heavy traffic until it was replaced in a highway re-alignment in 1981. The bridge still stands in unaltered condition. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t270th St.<br />Rockwell City, IA 50579<br />Calhoun County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Lincoln Highway Bridge",
            "lat": "41.963799",
            "lon": "-92.562263",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-bridge-lincolnhighwaybridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lincoln Highway Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.963799,-92.562263\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">55.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This, bridge, quite aptly named Lincoln Highway Bridge, was built in 1915. It was based off a bridge design by the Iowa Highway Commission, but Bridge Contractor Paul N. Kingsley made the bridge unique by carving LINCOLN HIGHWAY in to the side rails. The decorative railing was paid for by local boosters, as a way to advertise Tama’s location on the newly designated transcontinental route. In July 1919, the Lincoln Highway Forum paid special attention to Tama&#039;s bridge: &quot;...a good example of up-to-date highway advertising. Tourists over this section of the famous road cannot fail to be impressed with the advertising value as well as the pleasing and distinctive appearance of this unique feature of bridge construction...Such enduring construction &#039;nails down&#039; the Lincoln Highway in the most pleasing and ornamental fashion.&quot; The Lincoln Highway Bridge was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5th St.<br />West of Bus. US Hwy. 30<br />Tama, IA 52339<br />Tama County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.484.6661</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://tamatoledo.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Humboldt County Mill Farm and Historical Museum",
            "lat": "42.722591",
            "lon": "-94.191494",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Humboldt County Mill Farm and Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.722591,-94.191494\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">55.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Humboldt County Historical Museum is located at the former home of Corydon Brown, which is listed on the National Register of Historic Places. Brown purchased the property known as the &quot;Mill Farm&quot; (named for the flour mill located on the property) in 1877 and began construction on the house the following year. In addition to his milling activities, Brown was a local merchant and introduced the Shorthorn cattle breed to Humboldt County. At the museum you can also explore a pioneer log cabin, kettle shed, the Norway No. 6 Country Schoolhouse and Hardy Methodist Church. In the new addition visitors can view fire fighting equipment and Sherman Silbaugh’s 1934 Diamond REO fire engine.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st Ave. N<br />Dakota City, IA 50548<br />Humboldt County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.332.5280</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://humboldtiowahistory.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Marion County",
            "lat": "41.322574",
            "lon": "-93.111909",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-artpublic-marioncountyfreedomrock-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Marion County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.322574,-93.111909\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">55.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Marion County Freedom Rock tells two local stories and is one of just a few Freedom Rocks to feature a woman. When the United States entered World War I in 1917, Iowa had no state flag for the Iowa-based regiments to carry. So a local woman named Dixie Cornell Gebhardt (featured on the front of the rock) designed a flag and submitted it to the governor, and it became the official state flag in 1921. William M. Stone (on the back of the rock) served in the Civil War and was captured twice. He became Iowa&#039;s sixth governor soon after and was good friends with President Abraham Lincoln. Some evidence suggests that Stone was at Ford&#039;s Theater when Lincoln was assassinated and may have helped carry the president across the street to the Petersen House, where he died. The Marion County Freedom Rock was completed by artist Ray &quot;Bubba&quot; Sorensen II of Greenfield in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Lincoln St.<br />Knoxville, IA 50138<br />Marion County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Marion County Historical Village and Museum",
            "lat": "41.316601",
            "lon": "-93.120838",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-historymuseum-marioncountyhistoricalvillageandmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marion County Historical Village and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.316601,-93.120838\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Marion County Historical Village and Museum consists of eight buildings that provide a glimpse into life in Marion County in the late 19th and early 20th centuries. The museum displays artifacts, photographs and also includes a research library. The buildings on the campus include the Pleasant Ridge Schoolhouse, Samuel Caffrey Log Cabin, Machine Annex, Bussey Train Depot, General Store, Stage Coach Inn and Valley Chapel Church. The site is run by the Marion County Historical Society.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t306 Willetts Dr.<br />Marion County Park<br />Knoxville, IA 50138<br />Marion County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.204.9143</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.marioncountyhistory.com/Default.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Humboldt County Courthouse",
            "lat": "42.721780",
            "lon": "-94.204936",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Humboldt County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.721780,-94.204936\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dakota City was established as the county seat of Humboldt County in 1857 and a two-story brick courthouse was built in 1872 on the site of the current courthouse. The current Humboldt County Courthouse is one of ten county courthouses built in Iowa during the New Deal Era as part of the federal Public Works Administration.  It&#039;s design was common of public building architecture developed during the 1930s and 1940s, blending Art Deco and Art Moderne elements. It was added to the National Register of Historic Places in 2003.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t203 Main St.<br />Dakota City, IA 50529<br />Humboldt County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "underground-railroad.png",
            "title": "Dalmanutha Townsite",
            "lat": "41.585107",
            "lon": "-94.558741",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/guthrie-historicsite-dalmanuthatownsite.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/underground-railroad.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dalmanutha Townsite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585107,-94.558741\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The settlement at Dalmanutha was located on the Des Moines – Council Bluffs route of the Western Stage Company as it crossed through southern Guthrie County. It was a small hamlet, consisting of only 10 dwellings. John Porter owned a local tavern/hotel and was an active abolitionist. This is stop #6 on the Freedom Trail tour: John Brown and his group arrived at Dalmanutha on February 15, 1859. They rested overnight at Porter’s hotel before setting out for Redfield the following day.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1945 Lost Trail<br />Casey, IA 50048<br />Guthrie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Humota Theater",
            "lat": "42.721343",
            "lon": "-94.215191",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Humota Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.721343,-94.215191\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Humota Theater was built in 1929 and was operated by Wayne B. Franke until 1951. The Franke family resided in the upstairs apartment and Mr. Franke hired  children to distribute handbills advertising the theater in exchange for free admission. Fridley Theaters purchased the theater in 1985 and renovated it in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t515 Sumner Ave.<br />Humboldt, IA 50548<br />Humboldt County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Smith Barn",
            "lat": "41.244318",
            "lon": "-93.946466",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-barn-smithbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Smith Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.244318,-93.946466\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Smith Barn is a pegged barn that was built around 1920. Bark still remains on some of the interior lumber.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2797 Pioneer Ave.<br />Peru, IA 50222<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Humboldt Public Library",
            "lat": "42.721938",
            "lon": "-94.216511",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Humboldt Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.721938,-94.216511\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Humboldt Public Library was built in 1909 with a $10,000 grant from the Carnegie Foundation. It was constructed of limestone from the nearby Taft Park area, which was an rare choice for a building of this type. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t30 6th St. N<br />Humboldt, IA 50548<br />Humboldt County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Stephen Harris Taft House",
            "lat": "42.722303",
            "lon": "-94.220238",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stephen Harris Taft House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.722303,-94.220238\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was the home of Stephen Taft, founder of Springvale (now Humboldt). Built in 1864, it is one of the earliest existing houses from the time of Humboldt&#039;s settlement. The house was built by Taft using coursed, irregularly shaped limestone rock on three sides with a cedar clapboard covered wood frame on the front. The home inspired Humboldt&#039;s tradition of limestone architecture. It was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t809 1st Ave. N<br />Humboldt, IA 50548<br />Humboldt County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Merle Hay Memorial",
            "lat": "42.064230",
            "lon": "-94.740600",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Merle Hay Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.064230,-94.740600\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This memorial to Merle David Hay was erected by the State of Iowa in 1930 and features a drawing by the famous newspaper cartoonist Ding Darling. Hay was born on a farm near old Carrollton, Iowa, on July 30, 1896, before the family moved to a farm near Glidden. He voluntarily enlisted in the Army on May 3, 1917, a month after Congress declared war on Germany. Tragically, he made headlines six months later when Germans cut off a small detachment of Gen. John Pershing&#039;s men, including Hay, who was killed in action on November 3, 1917. Hay was one of the first three Americans to die in France during World War I. He was buried at Bathelemont, France, and in 1921 his remains were reinterred at the West Lawn Cemetery in Glidden. That same year, the road into Camp Dodge in Des Moines was named Merle Hay Road in his honor.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t28185 US Hwy. 30<br />West Lawn Cemetery<br />Glidden, IA 51443<br />Carroll County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Marion County Veterans Memorial",
            "lat": "41.318738",
            "lon": "-93.096891",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-monument-veteransmemorial-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marion County Veterans Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.318738,-93.096891\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Marion County Veterans Memorial on the grounds of the county courthouse in Knoxville lists local casualties from World War I, World War II, Korea and Vietnam. The memorial was erected by veterans service organizations across the county, including the American Legion, the Amvets, the Disabled American Veterans and the Veterans of Foreign Wars.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Main St.<br />Knoxville, IA 50138<br />Marion County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Dixie Cornell Gebhardt Site",
            "lat": "41.318188",
            "lon": "-93.096797",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-historicmarker-dixiecornellgebhardtsite.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dixie Cornell Gebhardt Site</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.318188,-93.096797\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>A memorial to Dixie Cornell Gebhardt, creator of the Iowa flag in 1907, is located in the Marion County Courthouse Courtyard.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Robinson St.<br />Marion County Courthouse Square<br />Knoxville, IA 50219<br />Marion County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Grand Theater",
            "lat": "41.317801",
            "lon": "-93.097008",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-theater-grandtheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.317801,-93.097008\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Grand Theater was built in the 1920s, after a massive fire destroyed most of the south side of the square. The building was constructed specifically for showing movies, rather than hosting live performances. Numerous families operated the Grand through the years and made updates, including renaming it the Village Theater and &quot;twinning&quot; it to a two-screen cinema. Des Moines-based Fridley Theaters purchased the theater in 2008. They operated the theater for nearly a decade, but closed it and donated the building to a local non-profit group, dedicated to restoring the theater. The restored Grand will host live performances, community functions, first-run digital films and more!</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t212 E Robinson St.<br />Knoxville, IA 50138<br />Marion County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock",
            "lat": "41.474908",
            "lon": "-94.452231",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-artpublic-freedomrock.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.474908,-94.452231\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Freedom Rock® is a large (approximately 60 tons) boulder located in rural Adair County. Every year since 1999, Greenfield-based artist Ray &quot;Bubba&quot; Sorensen II paints the rock with a new thank you to the nations veterans. The painting is always completed by Memorial Day. Sorensen is working to paint a local Freedom Rock in each of Iowa&#039;s 99 counties, similar to the original Freedom Rock. In 2015, the north side of the Freedom Rock features Carlos &quot;White Feather&quot; Hathcock, a Marine Corps sniper with a service record of 93 confirmed kills. Hathcock was most famous for shooting an enemy sniper through the enemy&#039;s own rifle scope, hitting him in the eye and killing him. After returning from active duty, Hathcock helped to establish the Marine Corps Scout Sniper School at Quantico, Virginia.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1199 IA Hwy. 25<br />Menlo, IA 50164<br />Adair County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Holland Theater",
            "lat": "41.408085",
            "lon": "-92.918726",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-theater-hollandtheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Holland Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.408085,-92.918726\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Holland Theater was originally built in 1855 as a single family dwelling with a wood front porch. The property was divided into two flats in 1910. The Pella Historical Society later bought the building and operated it as a museum and offices until 1965, when Central College bought the property. Central College built the CMU auditorium addition to the rear of the building in 1965 and turned it into the Holland Theater. The Holland Theater operated from 1965-2001, with major renovations occurring in the 1970s and 1980s.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t810 Washington St.<br />Pella, IA 50219<br />Marion County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Lyric Theater",
            "lat": "42.846094",
            "lon": "-93.612127",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-theater-lyrictheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lyric Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.846094,-93.612127\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lyric Theater opened in 1921 as the Belmond Theatre and the name was changed to the Lyric Theater in the late 1930s. The theater operated until the late 1980s and was closed until 1992, when it reopened with a volunteer staff. It was remodeled in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t431 E Main St.<br />Belmond, IA 50421<br />Wright County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Klousia Barn",
            "lat": "42.767947",
            "lon": "-93.168505",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Klousia Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.767947,-93.168505\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Klousia Barn was built in 1888 and styled after a Wisconsin dairy barn using peg construction.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1766 165th St.<br />Hampton, IA 50441<br />Franklin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Belmond Historical Society Museum",
            "lat": "42.846052",
            "lon": "-93.614815",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-historymuseum-belmondmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Belmond Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.846052,-93.614815\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Belmond Historical Society Museum is the largest collection of historical artifacts in the Belmond area. There are exhibits showcasing the impact of the sugar beet industry on the community a hundred years ago and the sacrifices of Belmond&#039;s veterans during peace and war. Revisit the devastating 1966 tornado, or just experience the simpler times in every day life exhibits.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t223 E Main St.<br />Belmond, IA 50421<br />Wright County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.571.3264</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Calhoun County Historical Museum",
            "lat": "42.399349",
            "lon": "-94.631609",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/calhoun-historymuseum-calhouncountymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Calhoun County Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.399349,-94.631609\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Calhoun County Museum is housed in the old school building. There are displays of antique furnishings, birds, animals, vintage clothing and a military display. There is also an old time post office, a bank, a general store and a dentist&#039;s office.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t218 Wabash St.<br />Rockwell City, IA 50551<br />Calhoun County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.297.8139</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Scholte House Museum",
            "lat": "41.408285",
            "lon": "-92.917712",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-historymuseum-scholtehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Scholte House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.408285,-92.917712\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Scholte House was built in 1848 by Dominie Hendrik Pieter Scholte. He built the house for his wife saying that the home would be as beautiful as the one they left in Holland when they moves to Pella. This historic home sits quietly surrounded by award winning flower gardens and is located on the north side of the historic downtown Square. Many of the Scholte’s fine original antiques adorn the museum, along with their furnishings, and paintings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t728 Washington St.<br />Pella, IA 50219<br />Marion County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.628.3684</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://scholtehouse.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Calhoun County",
            "lat": "42.395635",
            "lon": "-94.634532",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/calhoun-monument-rockwellcityfreedomrock-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Calhoun County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.395635,-94.634532\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Calhoun County Freedom Rock® in Rockwell City features a &quot;Thank You Veterans&quot; with a soldier carrying one of his wounded to safety. A couple P47s fly in the background over the soldiers with a side view of the USS Iowa. The P47s were requested by the community to honor one of the local veterans flew many successful missions the aircraft. On the back side, an eagle clutches a ribbon that says &quot;The price of freedom will never be forgotten&quot;, giving reference to the piece above that shows soldiers&#039; crosses from different eras. The American flag draped over the top and a carved out POW/MIA is included on the side. The Calhoun County (Rockwell City) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t419 Main St.<br />Rockwell City, IA 50579<br />Calhoun County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Loucks Grove Church",
            "lat": "41.424961",
            "lon": "-94.394810",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-nhr-loucksgrovechurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Loucks Grove Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.424961,-94.394810\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Loucks Grove Church was built in 1895 and is a locally significant example of a gothic style rural community frame church. It is further significant because it is the only surviving, unchanged example of this once common style. The church is most easily accessed by following County Road G27 east from Iowa Highway 25 and then following Quebec Avenue north. Loucks Grove Church was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tQuebec Ave.<br />Greenfield, IA 50849<br />Adair County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Calhoun County Courthouse",
            "lat": "42.395191",
            "lon": "-94.634098",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/calhoun-nhr-calhouncountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Calhoun County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.395191,-94.634098\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1856, Lake City was chosen as the county seat. But in 1877, the county seat moved to Rockwell City. A courthouse was constructed and it burned in 1884. The next courthouse opened in 1886 and was quickly outgrown. Another courthouse, designed by W. F. Gernanth was built in 1913-14 at a cost of $116,200. Inside the rotunda are murals, painted on canvas and attached to the wall, that were completed in 1913 by an unknown artist. It was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 Court St.<br />Rockwell City, IA 50579<br />Calhoun County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Caltrider Barn",
            "lat": "41.573398",
            "lon": "-94.567251",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Caltrider Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.573398,-94.567251\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">56.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Caltrider Farm has been in the same family since 1883. This simple barn was built in 1917.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3016 Juniper<br />Casey, IA 50048<br />Guthrie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Roseman Covered Bridge",
            "lat": "41.292777",
            "lon": "-94.149738",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-rosemancoveredbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Roseman Covered Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.292777,-94.149738\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Roseman Covered Bridge was built in 1883 by H.P. Jones. Jones’ bridges were innovative in design, particularly in the elimination of the traditional high pitched roof in favor of a very low pitched, almost flat roof. The bridge spans Middle River about 10 miles southwest of Winterset and was featured in Robert James Waller’s novel, The Bridges of Madison County as well as its 1995 film adaptation. The Roseman Covered Bridge was added to the National Register of Historic Places in 1976.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tElderberry Ave.<br />Co. Rd. G47<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Pella Opera House",
            "lat": "41.406475",
            "lon": "-92.915210",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-theater-pellaoperahouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pella Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.406475,-92.915210\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pella Opera House was built in 1900. The opera house only operated for 18 years before it was closed. The building would change hands multiple times, and the businesses would change just as frequently. The building was an auto parts shop, dance hall, and even a chicken and pigeon salesman. The building was almost demolished in the 1980&#039;s, but a group of citizens banned together to save it, and after extensive renovations, the Pella Opera House was reopened and is still operating today.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t611 Franklin St.<br />Pella, IA 50219<br />Marion County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.628.8625</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://pellaoperahouse.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John Cretsinger House",
            "lat": "41.812529",
            "lon": "-94.713510",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/guthrie-nhr-johncretsingerhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Cretsinger House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.812529,-94.713510\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 19 by 23 foot log cabin was originally built by hunters in December of 1853. Jacob Crestsinger bought the property in the 1860s and sold it to his brother John in 1867. John Crestsinger raised 14 children there, making several additions to the cabin to accommodate his large family. The original cabin is still in good condition. It is one of the best surviving examples of the saltbox style house once common in this part of the state, and is a remnant of the early settlement that became known as Coon Rapids. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1363 Burl Ln.<br />Coon Rapids, IA 50058<br />Guthrie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Pella Historical Village and Vermeer Mill Museum",
            "lat": "41.406492",
            "lon": "-92.914446",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-historymuseum-pellahistoricalvillageandvermeermillmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pella Historical Village and Vermeer Mill Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.406492,-92.914446\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pella Historical Village and Vermeer Windmill pays homage to the rich Dutch history of the city of Pella. The Historical Village is a collection of 20 buildings that show what life was like in the 19th and 20th centuries. The village contains the childhood home of Wyatt Earp, a miniature Dutch Village, and the Vermeer Windmill - the largest windmill west of the Mississippi. The village is run by the Pella Historical Society.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t507 Franklin St.<br />Pella, IA 50219<br />Marion County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.628.4311</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.pellahistorical.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Perry C. and Mattie Forrest Holdoegel House",
            "lat": "42.394525",
            "lon": "-94.640207",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/calhoun-nhr-perrymattieholdoegelhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Perry C. and Mattie Forrest Holdoegel House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.394525,-94.640207\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Perry C. and Mattie Holdoegel House was built in 1917. Holdoegel was a state senator and the most responsible for 1917 legislation authorizing a state park system in Iowa. The home is an outstanding example of Colonial Revival architecture. Holdoegel is also credited with being a prominent pioneer in the independent telephone company business in Iowa. The home was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t504 8th St.<br />Rockwell City, IA 50579<br />Calhoun County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "East Peru Veterans Monument",
            "lat": "41.231000",
            "lon": "-93.939316",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-monument-eastperuveteransmonument-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">East Peru Veterans Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.231000,-93.939316\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57mi.</span></div>\n\t\t</div>\n\n\t\t<p>A granite, eagle-topped monument at the Peru Cemetery is dedicated to war veterans. Local soldiers killed in World War I are listed on the front of the monument, while the back of the monument honors the war&#039;s unknown soldiers, as well as those who served in the Civil War and Spanish American War. The Women&#039;s Relief Corps led the effort to build the monument, which was dedicated in 1921.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. G68<br />Peru Cemetery<br />East Peru, IA 50222<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Carrollton Heritage Park",
            "lat": "41.949111",
            "lon": "-94.751264",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carrollton Heritage Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.949111,-94.751264\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Carrollton Heritage Park is dedicated to preserving the history of Carrollton, the first seat of Carroll County. Established in 1856, Carrollton had a very rich history before its name change in 1869. The park provides maps and pictures of Carrollton&#039;s journey through history.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t280th St. and Ranch Ave.<br />Glidden, IA 51443<br />Carroll County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.999.2446</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "East Amsterdam School",
            "lat": "41.376200",
            "lon": "-92.957917",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-historicschool-eastamsterdamschool.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">East Amsterdam School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.376200,-92.957917\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>East Amsterdam School is locally significant for its associations with the former Independent School District of Amsterdam and its efforts to provide public education and safety for its children. It was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t198th Pl.<br />Pella, IA 50219<br />Marion County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Owens Family Farm",
            "lat": "42.242617",
            "lon": "-94.725705",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/calhoun-barn-owensfamilyfarmbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Owens Family Farm</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.242617,-94.725705\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Owens Family Farm Barn was built in 1958. William Owens used it for his Angus cattle, corn, and soybeans. He increased the barn in size a bit after a storm. The barn windows are original. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3747 Jennings Ave.<br />Co. Rd. N41<br />Lake City, IA 51449<br />Calhoun County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Slycord Barn",
            "lat": "41.407839",
            "lon": "-92.901125",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-barn-slycordbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Slycord Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.407839,-92.901125\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Slycord barn, which housed Garden City Dairy, is a landmark in Pella. Once two clay block silos separated the barns. These were later removed, and the two barns were joined by a breezeway, now a workshop. The Langstraat family built the south barn in 1909 and the north barn in 1925. The south barn is pegged and has a limestone foundation, The north barn has a clay block foundation. Don and Marcia Slycord own the barn which was purchased by Don&#039;s grandparents in 1944. The Slycords use the barn for Simmental cattle. Artist Frank Miller, long-time Des Moines Register cartoonist, once painted a watercolor of the barn. The barn was featured on the Iowa Barn Foundation&#039;s 2004 tour of barns in Marion and Mahaska counties.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t408 Vermeer Rd.<br />Pella, IA 50219<br />Marion County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John and Amanda Bigler Drake House",
            "lat": "41.315865",
            "lon": "-94.222801",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-johnandamandabiglerdrakehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John and Amanda Bigler Drake House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.315865,-94.222801\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>John R. and Amanda Bigler Drake were among the first settlers in the western part of Madison County, arriving in 1853. Their house was likely built around 1855, and by 1858 they had acquired 560 acres of farmland.  The two-story house was constructed from locally-quarried limestone and featured stone chimneys at each end. Aspects of the structure’s craftsmanship suggest that parts of the house were built by David Harris, who would become a prominent master stone mason throughout the area. This may have been his earliest work in Madison County, since the house appears to have been completed between Harris’ arrival in the county in 1855 and when he started his own business in 1856. The John R. and Amanda Bigler Drake House was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1102 IA Hwy. 92<br />Winterset, IA 50273<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Robin Avenue Bridge",
            "lat": "42.097378",
            "lon": "-94.764266",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Robin Avenue Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.097378,-94.764266\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Robin Avenue Bridge was designed by the Iowa State Highway Commission and built in 1913 by the Standard Bridge Company of Omaha. It carries a secondary county road over an unnamed field stream. Since its completion, the bridge has functioned in its place with only minor maintenance repairs. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRobin Ave.<br />Carroll, IA 51401<br />Carroll County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John Andrew and Sara Macumber Ice House",
            "lat": "41.251176",
            "lon": "-94.065436",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-johnandrewandsaramacumbericehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Andrew and Sara Macumber Ice House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.251176,-94.065436\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>John Andrew and Sarah Hartsook Macumber moved their family from Gallia County, Ohio, to Madison County, Iowa, in 1853. John Andrew Macumber became livestock dealer and a prominent farmer in the area, owning 400 acres in Lincoln Township by the late 1870s. The Macumber Ice House is a rare example of an agricultural outbuilding constructed of stone. Its exact construction date is unknown, but it is believed to have been built sometime between 1875 and 1885. The ice house is made of locally-quarried limestone and topped with a wood shingle roof, and the interior is lined with wood to help maintain a cool temperature for ice storage. The John Andrew and Sarah Hartsook Macumber Ice House was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1937 275th St.<br />Co. Rd. G53<br />East Peru, IA 50222<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Netcott-Pfeiffer House",
            "lat": "42.577017",
            "lon": "-92.791293",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/butler-nhr-netcottpfeifferhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Netcott-Pfeiffer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.577017,-92.791293\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Henry E. Netcott was a regionally well-known architect in Parkersburg, and he opened an architectural firm in Parkersburg in 1893, after a fire had leveled most of the business district. The Netcott-Pfeiffer House was built in 1894 by Henry’s father George Netcott, Jr. and his brother George A. Netcott. It was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 Buswell St.<br />Parkersburg, IA 50665<br />Butler County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Parkersburg Historical Home",
            "lat": "42.576202",
            "lon": "-92.790008",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/butler-nhr-parkersburghistoricalhome.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Parkersburg Historical Home</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.576202,-92.790008\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Parkersburg Historical Home was built in 1895. Charles Wolf, who had the home built, was from Illinois and came to Parkersburg in 1875. He was a partner with his father and brother-in-law in the Exchange Bank. The home has a wide variety of woodwork and many local artifacts. From the tower, there is a panoramic view of the surrounding area. From 1930-1967, the house served as a school, church, community center, fraternal hall, and library. Around 1970, it was taken over by the Parkersburg Historical Society and made into a museum. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 5th St.<br />Parkersburg, IA 50665<br />Butler County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.346.1461</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.butlercountyiowa.com/historyattractions.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Renke and Wubke (Francen) Renken House",
            "lat": "42.577506",
            "lon": "-92.789386",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/butler-nhr-renkewubkerenkenhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Renke and Wubke (Francen) Renken House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.577506,-92.789386\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>R.G. Renken was a prominent businessman in Parkersburg. He was partially responsible for the early development and infrastructure of Parkersburg because of his investments. He also worked for the city government. His home was constructed in 1884, and remained virtually unchanged until an addition was added in 1979. The home was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 Coates St.<br />Parkersburg, IA 50665<br />Butler County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chicago and Northwestern Railroad: Office Building and Passenger Depot",
            "lat": "42.264727",
            "lon": "-94.729682",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago and Northwestern Railroad: Office Building and Passenger Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.264727,-94.729682\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58mi.</span></div>\n\t\t</div>\n\n\t\t<p>This office building and depot is the best physical reminder of the railroad’s profound impact on Lake City. It is also representative of the functionally specific buildings designed by the railroad in Iowa around the turn of the century. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 Front St.<br />Lake City, IA 51449<br />Calhoun County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Renwick Generating Plant",
            "lat": "42.828577",
            "lon": "-93.978377",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Renwick Generating Plant</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.828577,-93.978377\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Renwick Generating Plant was the first system in Iowa financed by the Rural Electrification Act of 1936 to energize its power lines. The cultural changes experienced by local residents were a direct result of the convenience and improved quality of electrically powered items that were now available. The plant was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t103 N Field St.<br />Renwick, IA 50577<br />Humboldt County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lake City Public Library",
            "lat": "42.268165",
            "lon": "-94.732395",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lake City Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.268165,-94.732395\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lake City Public Library is located in the downtown area and is a prominent building. It shows the public spirit and results-oriented civic organizations that were associated with the Progressive Community Era in Lake City. It was built in 1909 by the Nelson Construction Company after being designed by Edgar Lee Barber. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t120 N Illinois St.<br />Lake City, IA 51449<br />Calhoun County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Depot/Caboose Riverfront Park",
            "lat": "42.580626",
            "lon": "-92.787211",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/butler-historymuseum-depotcabooseriverfrontpark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Depot/Caboose Riverfront Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.580626,-92.787211\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Visit this restored 1935 depot and 1947 caboose. Inside you will find railroad pictures and memorabilia. Open by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3rd St.<br />Parkersburg, IA 50665<br />Butler County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.346.2262</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.butlercountyiowa.com/historyattractions.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Berkhimer Bridge",
            "lat": "42.738972",
            "lon": "-94.253111",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Berkhimer Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.738972,-94.253111\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Berkhimer Bridge was built in 1899 on 215th Street west of Humboldt, over the west fork of the Des Moines River. It is a pin-connected, 10-panel Pennsylvania through truss bridge built by Clinton Bridge and Iron Works of Clinton, Iowa. The bridge was added to the National Register of Historic Places in 1998 and rehabilitated in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t215th St.<br />Humboldt, IA 50548<br />Humboldt County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Gary J. and Matilda Vermeer Farmstead",
            "lat": "41.409467",
            "lon": "-92.870581",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-vermeerfarmstead-3-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gary J. and Matilda Vermeer Farmstead</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.409467,-92.870581\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in Mahaska County near Pella, the Vermeer Farmstead period of historic significance begins in 1948 when Gary Vermeer founded the company to manufacture his new invention – a mechanical hoist that could raise the bed of a farm wagon to transfer corn to storage facilities. The period ends in 1972 when Vermeer invented a round hay baler, a machine that established the company as one of the top agricultural equipment manufacturers in the country. During the intervening years, the company also produced other equipment, including the Pow-R-Drive in 1949 (a machine that could transfer power from a tractor to other kinds of machines, such as hammer mills and corn shellers), the Vermeer Model 12-PTO in 1951 (could dig trenches efficiently to lay tile and pipes that drained wet spots in farm land) and new products in the 1960s such as trenchers, stump cutters, sprinklers and tree spades that gave the company a decade of prosperity as it broadened its reach beyond agricultural equipment.\r\n\r\nWhile achieving success with the company, the Vermeers exemplified the virtue of a “Plain Living and High Thinking” lifestyle in their 1953 ranch-style home. The lifestyle is historically significant under National Register criterion that emphasizes social history. “Although (the Vermeers) could have afforded any opulence or domestic comfort, they practiced thrift and economy while living in this modest house most of their adult lives, engaging at the same time in philanthropic generosity across the nation and around the world,” the nomination form said. “While the principle of ‘Plain Living and High Thinking’ is not unusual historically among Iowa farm families, (the Vermeers ) exemplify these traits of American character writ large.”\r\n\r\nThe couple moved to the farmstead in 1941 and eventually built their one-story, ranch-style home on the property in 1953. The farmhouse is listed as a contributing resource for the National Register nomination along with two barns built in 1939 and 1940, respectively, and a third barn built in 1910 that was moved to the property in 1963. Gary Vermeer lived in the farmhouse until he died in 2009 at age 90. Matilda Vermeer remained in the farmhouse for several years after Gary’s death. She died in 2014 at age 94.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1688 250th Ave.<br />Pella, IA 50219<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Capri Theater",
            "lat": "42.267903",
            "lon": "-94.734163",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Capri Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.267903,-94.734163\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Capri Theater opened in 1965. The Theater was built over a previous theater that had burned down in 1956. The theater closed in 2000, but the original building still stands.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 N Center St.<br />Lake City, IA 51449<br />Calhoun County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Central School",
            "lat": "42.266018",
            "lon": "-94.734153",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Central School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.266018,-94.734153\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Central School was built in 1884 with an addition built in 1897. In 1939, the building was somewhat remodeled by a WPA project. The work was done by Frank Griffith, an architect and builder from Fort Dodge. The building was closed in 1980, and restoration began before it was opened again as a museum. Tours are available by appointment. It was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 S Center St.<br />Lake City, IA 51449<br />Calhoun County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.464.8639</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lake City Community Memorial Building",
            "lat": "42.268532",
            "lon": "-94.732760",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lake City Community Memorial Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.268532,-94.732760\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lake City Community Memorial Building is both architecturally and historically significant. The exterior design remains unaltered. It is an excellent example of the smaller buildings designed by Proudfoot, Bird and Rawson of Des Moines, one of the most prolific architectural firms in Iowa. The building was erected as a tribute to young men who gave their lives in war. The Lake City Civic Improvement Society, a Progressive era group organized by women who sought to develop, improve, and beautify the town’s public facilities, raised the funds necessary to erect the structure as wells as some furnishings and maintenance. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t118 E Washington St.<br />Lake City, IA 51449<br />Calhoun County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lake City Water Standpipe",
            "lat": "42.268631",
            "lon": "-94.734518",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lake City Water Standpipe</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.268631,-94.734518\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The water standpipe is significant because it is the first public works project undertaken by the city in its effort to transform Lake City from a boom town into a modern community providing its citizens with the public services and amenities that late 19th century civic reformers decried as necessary to promote the health and welfare of society. It was built in 1893, which marks the beginning of the progressive Community Era. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t126 W Washington St<br />Lake City, IA 51449<br />Calhoun County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Peter and Mary Smith House",
            "lat": "42.267562",
            "lon": "-94.736562",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Peter and Mary Smith House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.267562,-94.736562\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Peter and Mary Smith House is locally significant for its association with Peter Smith, a prominent pioneer and businessperson in Lake City. Retailing, banking, and land sales were the primary economic pursuits that enabled Peter Smith to build the home. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t304 W Main St.<br />Lake City, IA 51449<br />Calhoun County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Vermeer Museum and Global Pavilion",
            "lat": "41.408175",
            "lon": "-92.872012",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-historymuseum-vermeermuseumandglobalpavilion.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vermeer Museum and Global Pavilion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.408175,-92.872012\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Vermeer Museum and Global Pavilion is dedicated to the Vermeer Corporation, and its development of agricultural technology. They have collections of antique round balers, trenchers, boring and environmental equipment, as well as other revolutionary pieces of machinery. The museum is located on Vermeers 1.5 mile facility that also houses the Global Pavilion, a 75,000 square foot, world-class training facility.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1210 Vermeer Rd. E<br />Pella, IA 50219<br />Marion County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.621.7017</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "General Cass and Belle Smith House",
            "lat": "42.267553",
            "lon": "-94.738914",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">General Cass and Belle Smith House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.267553,-94.738914\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The General Cass and Belle Smith House was built in 1901 by Mr. Flagel from Racine, Wisconsin. In a town where people moved and altered their homes frequently, this house remains intact and in excellent condition. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t500 W Main St.<br />Lake City, IA 51449<br />Calhoun County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Nicholas and Louisa Tinnis Schoenenberger House and Barn",
            "lat": "41.220864",
            "lon": "-93.999036",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-nicholasandlouisatinnisschoenenbergerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nicholas and Louisa Tinnis Schoenenberger House and Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.220864,-93.999036\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Nicholas Schoenenberger, born in Germany in 1818, purchased this property in 1856 and owned and operated the farm with his wife, Louisa Tinnis, until the end of the 19th century. The house and barn were probably constructed between 1856 and 1880. The house is a two-story gabled design and was built of locally-quarried limestone. Some architectural characteristics seem to indicate that the house was built by local stone mason Caleb Clark. The barn is the only outbuilding that remains on the Schoenenberger farm. The lower level is made of limestone, while the upper level is made of wood. The Nicholas and Louisa Schoenenberger House and Barn were added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2952 Millstream Ave.<br />East Peru, IA 50222<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Marsh Rainbow Arch Bridge",
            "lat": "42.229606",
            "lon": "-94.754643",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marsh Rainbow Arch Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.229606,-94.754643\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bridge is an example of James B. Marsh&#039;s skill as a bridge engineer. He created and patented a multi-arch reinforced bridge design embodying a new method of bridge construction that served as the earliest prototype for a series of &quot;Marsh Arch&quot; multi-span bridges built across the country between the years 1914 and 1935. The bridge is near the current roadway bridge. It was added to the National Register of Historic Places in 1989.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIberia Ave.<br />Lake City, IA 51449<br />Calhoun County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. William Beardsley Gravesite",
            "lat": "41.177470",
            "lon": "-93.735607",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-govgravesite-williambeardsley.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. William Beardsley Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.177470,-93.735607\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>William Shane Beardsley (May 13, 1901 – November 21, 1954) served as the 31st Governor of Iowa from 1949 to 1954. His gravesite is located in New Virginia, Iowa at New Virgina Cemetery (Beymer Cemetery).</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. G76<br />New Virginia Cemetery<br />New Virginia, IA 50210<br />Warren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Smith Farmhouse",
            "lat": "42.265135",
            "lon": "-94.746353",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Smith Farmhouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.265135,-94.746353\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">58.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Smith Farmhouse is one of the last remaining structures in Lake City from the Prairie Settlement period (1854-1880). It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRainbow Rd. S<br />Lake City, IA 51449<br />Calhoun County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Jenison Meacham Memorial Art Center and Museum",
            "lat": "42.880706",
            "lon": "-93.602525",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-historymuseum-jenisonmeacham.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jenison Meacham Memorial Art Center and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.880706,-93.602525\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">59.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jenison-Meacham Memorial Art Center and Farm consists of 120 acres and a large 1930s restored farm site. The farm has many different agricultural and pioneer artifacts. The art center has a permanent collection of art, mainly focusing on pioneer life. The complex also contains a restored 1900s house, barn, Wisner Township No.5 schoolhouse (relocated from Loomis Park in Franklin County) and &quot;Andy&#039;s Maytag House.&quot;</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1179 Taylor Ave.<br />Belmond, IA 50421<br />Wright County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.444.3557</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://belmondartscenter.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Young Barn",
            "lat": "41.232835",
            "lon": "-93.211362",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-barn-youngbarn-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Young Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.232835,-93.211362\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">59.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>A rare round barn owned by Amy Young and Marlys (Young) and Jack McMeanes. The barn, built in 1911, is 76 feet in diameter and houses a 14-foot cement stave silo. The barn features feed bunks, grain cribs, and a wing shed for horses. The barn was bought by J. Thomas Young in 1958 for use in his feed and grain business, Marion County Produce, Knoxville. The barn was featured on the Iowa Barn Foundation&#039;s 2004 tour of barns in Marion and Mahaska counties.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t708 Rutledge St.<br />Knoxville, IA 50138<br />Marion County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Melcher-Dallas Coal Mining and Heritage Museum",
            "lat": "41.223949",
            "lon": "-93.241709",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-melcherdallascoalminingheritagemuseum-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Melcher-Dallas Coal Mining and Heritage Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.223949,-93.241709\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">59.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Melcher-Dallas Coal Mining and Heritage Museum provides a look back at the coal mining industry in Iowa and the local area. 21 mines were sunk around Melcher Dallas, and by 1930 Marion County was the largest producer of coal in the state. The museum hasmining tools, an old blacksmith shop, 1900s garden tools and other items from the early days of the community.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 NE Center St.<br />Melcher-Dallas, IA 50163<br />Marion County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.947.5651</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://melcherdallasiowa.com/coal-miners-day/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Nibbelin Barn",
            "lat": "41.452765",
            "lon": "-92.784077",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nibbelin Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.452765,-92.784077\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">59.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John and Doris Nibbelin Barn was built in the 1840&#039;s and has been in the family for 95 years. The wooden track is still in the peak of the barn. John&#039;s father once had a team of horses on the second floor, which was accessed by the earthen ramp on the north side. One horse lost its footing and fell down while hitched to its teammate. The barn was featured on the Iowa Barn Foundation&#039;s 2004 tour of barns in Marion and Mahaska counties.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1459 IA Hwy. 102<br />Pella, IA 50219<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Joseph&#039;s Roman Catholic Church and Cemetery Historic District",
            "lat": "41.203377",
            "lon": "-93.308685",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Joseph&#039;s Roman Catholic Church and Cemetery Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.203377,-93.308685\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">59.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Forming the centerpiece for the now defunct village of Bauer, St. Joseph’s Roman Catholic Church and Cemetery is locally significant as an outstanding embodiment of architecture influenced by ecclesiastical design brought to Iowa by the original settlers from their native Germany. The brick church blends vernacular Romanesque and Gothic styling. It was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t20th Pl.<br />Lacona, IA 50057<br />Marion County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Wabash Railroad Bridge",
            "lat": "41.341341",
            "lon": "-92.940526",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-bridge-wabashrailroadbridge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wabash Railroad Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.341341,-92.940526\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">59.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wabash Railroad Bridge is a wrought iron, eight-panel, pin-connected Pratt through truss bridge, built in 1882 by the Des Moines and St. Louis Railroad. The Des Moines and St. Louis followed the Chicago, Burlington and Quincy Railroad from the eastern edge of Marion County to Harvey, and then branched off to the Northwest, requiring this bridge to cross the Des Moines River. Later the railroad was acquired by the Wabash, St. Louis and Pacific Railroad, leading to it&#039;s name, the Wabash Railroad Bridge. By 1951, the county had acquired and rehabilitated the bridge. Wabash Railroad Bridge, now open only to pedestrians, was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t216th Pl.<br />Over Des Moines River<br />Pella, IA 50219<br />Marion County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Boone River Bridge",
            "lat": "42.862570",
            "lon": "-93.938870",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wright-nhr-booneriverbridge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Boone River Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.862570,-93.938870\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">59.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Boone River Bridge, over the Boone River, was built in 1912 by the Iowa Bridge Company of Des Moines. The bridge is a rare example of the long-span riveted Warren pony truss. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. C20<br />Goldfield, IA 50542<br />Wright County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Storm Creek Bridge",
            "lat": "42.102164",
            "lon": "-94.803496",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Storm Creek Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.102164,-94.803496\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">59.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Storm Creek Bridge was designed by the Iowa State Highway Commission, and built by the Standard Bridge Company of Omaha, in 1913. The bridge continues to carry Phoenix Avenue over Storm Creek. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tPhoenix Ave.<br />Carroll, IA 51401<br />Carroll County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "P. P. Raymond House",
            "lat": "41.708361",
            "lon": "-92.556455",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-ppraymondhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">P. P. Raymond House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.708361,-92.556455\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">60.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The P.P. Raymond House was built in 1874 and is a well-executed example of the Second Empire Style. Well-preserved and prominently sited in a small Iowa community, the house is a local visual landmark. Rare hand stenciling survives in the dining room. It was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t307 4th St.<br />Malcom, IA 50157<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Otter Creek Township No. 6 School",
            "lat": "42.008867",
            "lon": "-92.467192",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-countryschool-ottercreektownshipno6pleasanthillschool.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Otter Creek Township No. 6 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.008867,-92.467192\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">60.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Otter Creek Township Schoolhouse was built in the early 1930s. The building only operated for a short time, and was closed in the 1940s. The school has had some restoration work done, and maintains its early mid 20th century feel.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2551 300th St.<br />Toledo, IA 52342<br />Tama County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Younker Family Heritage Farm Barn",
            "lat": "42.568362",
            "lon": "-92.716200",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/butler-barn-youngerfamilyheritagefarmbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Younker Family Heritage Farm Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.568362,-92.716200\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">60.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Younker Family Heritage Farm Barn, measuring 112’ x 30’, was built in the late 1800s. About 1909, a 16’ x 24’ wooden silo, manufactured by the Indiana Silo Company, was added inside the barn. As of 2016, the Younker Family Heritage Farm Barn had remained in the same family since it was built. The restoration was led by Eleanor Tostlebe Peterson and family. The family was awarded an Award of Distinction from the Iowa Barn Foundation for undertaking a barn restoration using their own funds, rather than a matching grant. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t25734 IA Hwy. 57<br />Parkersburg, IA 50665<br />Butler County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John W. Young Round Barn",
            "lat": "42.183408",
            "lon": "-92.473937",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John W. Young Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.183408,-92.473937\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">60.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>While the supplier of the yellow colored structural clay tile of this barn is unknown, the owner/builder of the John W. Young Round Barn was Joe Seda. The use of structural clay tile for farm buildings, for round barns in particular, was an improvement developed at the Iowa Agricultural Experiment Station in the early 20th century. In addition to the clay tile exterior wall, the central clay tile silo, which in this case preceded the barn by two years, is another important characteristic of this type. The John W. Young Round Barn was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tP Ave.<br />Traer, IA 52224<br />Tama County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Traer Salt and Pepper Shaker Gallery",
            "lat": "42.193208",
            "lon": "-92.468882",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-historicunique-traersaltandpeppershakergallery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Traer Salt and Pepper Shaker Gallery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.193208,-92.468882\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">61.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Traer Salt and Pepper Shaker Gallery features the amazing collection of Traer resident, Ruth Rasmussen. Begun in 1946, the collection contains examples of nodders, huggers, kissers, go-widths, hangers, minis, nesters, longboys, tallboys, condiment sets and many other types of shakers in porcelain, glass, ceramic, metal, plastic and wood. The Rasmussen collection has been featured in the Guinness Book of World Records, USA Today, the National Enquirer, and on the CBS Evening News with Katie Couric, in addition to many other publications.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t411 2nd St.<br />Traer, IA 50675<br />Tama County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.231.7654</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Star-Clipper-Canfield Building and Winding Stairway",
            "lat": "42.193490",
            "lon": "-92.466403",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-nhr-starclippercanfieldbuildingandwindingstairway.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Star-Clipper-Canfield Building and Winding Stairway</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.193490,-92.466403\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">61.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Traer Winding Stairway is believed to be the only uncovered exterior winding stairway leading to a second story office in the United States. Once featured on a U.S. commemorative stamp, the stairway has stood next to the 1888 Star-Clipper Newspaper block since that office building was rebuilt in 1894. The stairs were built by Burlington Iron Works of Burlington, Iowa. They make 1.5 revolutions and weigh 2,000 pounds. There are 23 steps. Since 1894, visitors have been encouraged to &quot;Wind Up in Traer.&quot; The Star-Clipper-Canfield Building and Winding Stairway was added to the National Register of Historic Places in 1975.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t534 2nd St.<br />Traer, IA 50675<br />Tama County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.traer.com/Default.aspx?id=11495&amp;Title=FamousWindingStairs\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Traer Historical Museum",
            "lat": "42.193536",
            "lon": "-92.467080",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-historymuseum-traerhistoricalmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Traer Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.193536,-92.467080\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">61.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Traer Historical Museum features artifacts of northern Tama County and Traer including the life of &quot;Tama Jim&quot; Wilson, US Secretary of Agriculture from 1897 to 1913, record holder for the longest-serving US Cabinet member, and one of only three Cabinet members to serve in the same post under three consecutive presidents. Antique agricultural implements also exhibited.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t514 2nd St.<br />Traer, IA 50675<br />Tama County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.478.2346</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "zoos-and-wildlife.png",
            "title": "Swan Lake Conservation Education Center",
            "lat": "42.033838",
            "lon": "-94.847239",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/zoos-and-wildlife.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Swan Lake Conservation Education Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.033838,-94.847239\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">61.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Swan Lake Conservation Education Center is a regional facility serving Western Iowa by contributing towards the local economy and quality of life while providing educational, recreational, and cultural activities. The state of the art facility has a brand new audio/visual system that assists in environmental education, a wildlife viewing deck, and a backyard wetland that is located on the 33-mile multi-use Sauk Rail Trail.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t22676 Swan Lake Dr.<br />Carroll, IA 51401<br />Carroll County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.792.4614</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://carrollcountyconservation.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Harvey Railroad Bridge",
            "lat": "41.317029",
            "lon": "-92.910559",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Harvey Railroad Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.317029,-92.910559\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">61.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Harvey Railroad Bridge spans an old channel of the Des Moines River in rural Marion County. The bridge, a wrought iron, nine-panel, pin-connected Pratt through truss, was built in 1878. The Chicago, Burlington and Quincy Railroad had arrived at Knoxville in December 1875, then the town of Harvey was platted where that rail line would cross the Des Moines River. For three years, the railroad used a temporary bridge, prior to the construction of this bridge. The railroad used the bridge until 1938, when the county purchased the bridge and converted it to a vehicle bridge. Harvey Railroad Bridge, now open to one-lane traffic on a minimum maintenance road, was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDepot St.<br />Harvey, IA 50119<br />Marion County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Veterans Memorial Monument",
            "lat": "42.083274",
            "lon": "-94.857649",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Veterans Memorial Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.083274,-94.857649\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">62.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Veterans Memorial Monument is dedicated to men and women from the six branches of the US Military. The monument is located in Veterans Memorial Park, a large natural space with walking trails, a shelter, and a small picnic area. The Monument was dedicated on Veterans Day 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tForest and 22nd St.<br />Veterans Memorial Park<br />Carroll, IA 51401<br />Carroll County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.792.4383</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Vander Wilt Farmstead",
            "lat": "41.372932",
            "lon": "-92.802850",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-vanderwiltfarmstead.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vander Wilt Farmstead</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.372932,-92.802850\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">62.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Vander Wilt Farmstead Historic District is locally significant for its historical associations with &quot;Progressive agriculture.&quot; The Vander Wilt Farmstead was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1345 Hwy 163<br />Leighton, IA 50143<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "J. D. Craven Women&#039;s Relief Corps Hall",
            "lat": "41.213751",
            "lon": "-94.185172",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/madison-nhr-jdcravenwomensreliefcorpshall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J. D. Craven Women&#039;s Relief Corps Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.213751,-94.185172\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">62.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Women’s Relief Corps was organized nationally in 1883 and became a state organization in Iowa in mid-1884. It originated as an auxiliary to the Grand Army of the Republic and played an important role in providing community support to veterans in need. The WRC’s has included the support of orphanages and soldiers’ homes, the introduction of patriotic curriculum in public schools, and the erection and dedication of memorials and monuments in honor of Iowa’s veterans. Nearly 400 local Women’s Relief Corps were organized in Iowa between 1884 and the mid-1920s, and while many of these are no longer functioning, the WRC continues to have an active presence in Iowa. The Macksburg WRC was organized in 1898 and continues to serve the needs of area veterans. The J.D. Craven Women’s Relief Corps Hall was built in 1901 for the group’s meetings. The building is an uncommon example of a commercial building with a vaulted roof, which is highlighted by a bracketed cornice that encircles the building. In other respects, the structure is characteristic of commercial design of this period. The J.D. Craven Women’s Relief Corps Hall was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tSouth St.<br />Macksburg, IA 50155<br />Madison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Carroll County Historical Museum",
            "lat": "42.065517",
            "lon": "-94.865917",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/carroll-carrollcountyhhistoricalmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carroll County Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.065517,-94.865917\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">62.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Carroll County Historical Museum, housing historical items from Carroll County, is located in a former Carnegie Library. An original Lincoln Highway marker is in front of the museum. The Carroll County Historical Society also boasts a schoolhouse and log cabin at nearby Graham Park and the Farmstead Museum at Swan Lake State Park. All of the exhibits preserve the history of Carroll County for the benefit, education and enjoyment of present and future generations.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t123 E 6th St.<br />Carroll, IA 51401<br />Carroll County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.792.1582</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://cityofcarroll.com/index.php/committees/carroll-county-historical-society\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Vandewater Barn",
            "lat": "41.257735",
            "lon": "-94.300490",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-barn-vandewaterbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vandewater Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.257735,-94.300490\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">63mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn was built by Henry Vandewater in 1911. It has notched beams, pegs, mortise and tendon joints and a wooden cupola. It was restored by Vandewater&#039;s descendants and is the showpiece of their Meadow Brook Farm. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3100 270th St.<br />Orient, IA 50858<br />Adair County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/photoessays/vandewater13.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Clancy Barn",
            "lat": "42.522537",
            "lon": "-94.677493",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/calhoun-barn-clancybarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clancy Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.522537,-94.677493\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">63mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn was built in 1948 by cattleman Leo Clancy, a charter member of Charlois Association, who raised cattle on this farm. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1866 Marengo Ave.<br />IA Hwy. 4<br />Pomeroy, IA 50575<br />Calhoun County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "American Express Building",
            "lat": "42.065354",
            "lon": "-94.872185",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/carroll-nhr-americanexpressbuilding.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">American Express Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.065354,-94.872185\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">63.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The American Express Building in Carroll is a functionally specific building, built to handle freight. Railroads began constructing functionally specific buildings along their lines in the late 1880s and early 1900s. Railroads expanded their lines at a dizzying rate in the late 1870s and 1880s, tapping fertile agricultural areas and encouraging settlement, especially in western Iowa. The division of railroad functions into separate structures in Carroll illustrates the prosperity of the Chicago and Northwestern Railroad during this era. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN West St.<br />Carroll, IA 51401<br />Carroll County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chicago and Northwestern Railroad: Carroll Passenger Depot",
            "lat": "42.065595",
            "lon": "-94.872724",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/carroll-nhr-chicagonorthwesternrailroad-chamber.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago and Northwestern Railroad: Carroll Passenger Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.065595,-94.872724\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">63.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The unique 1896 Chicago and Northwestern Railroad depot and American Express and baggage buildings were designed by Charles Sumner Frost in his classic style. They have been totally renovated. The depot buildings and adjacent, historic, railroad park are a community green space and meeting area. The depot houses the Carroll Chamber of Commerce. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN West St.<br />Carroll, IA 51401<br />Carroll County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Adair Viaduct",
            "lat": "41.497131",
            "lon": "-94.643450",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-nhr-adairviaduct.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Adair Viaduct</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.497131,-94.643450\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">63.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rock Island Railroad provided a vital transportation link for Adair as it passed through the town. But heavy rail traffic on this trunk line caused problems, sometimes snarling street traffic and creating a dangerous on-grade crossing. In 1908, the county erected an overpass over the railroad west of the spot of a celebrated train robbery by Jesse James. The Viaduct was designed by the Iowa State Highway Commission and constructed in 1923, changing the landscape and “Jesse James would hardly recognize the Rock Island Crossing.” The Adair Viaduct provided an important entrance to the town from the south. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. N54<br />Adair, IA 50002<br />Adair County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Kent Union Chapel and Cemetery",
            "lat": "41.806352",
            "lon": "-92.443783",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-kentunionchapelandcemetery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kent Union Chapel and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.806352,-92.443783\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">63.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kent Union Chapel was built in 1909 and served as the social and community center for farm families living within a six mile radius. When the chapel was built, the area around it was settled by families of diverse religious backgrounds, leading them to establish the church as a nondenominational place of worship. It was in use for over 70 years until the building was closed in 1980. Renovations began in 2009, after the Chapel and Cemetery were added to the National Register of Historic Places.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3386 Co. Rd. V18<br />Brooklyn, IA 52211<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Renze Barn",
            "lat": "42.025956",
            "lon": "-94.882476",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/carroll-barn-renzebarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Renze Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.025956,-94.882476\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">63.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Jacob Mattes was born in Germany in 1840 and came to Carroll County in 1874, where he settled in Roselle Township. In the mid-1880s, Mattes lost a hand in a corn shelling accident. Undaunted by the misfortune, he continued with his farming career and by 1906 he owned 320 acres. Mattes passed away in 1923 and is buried at Mount Olivet Cemetery in Carroll. His son Stephen took over the farm operation and built this barn before the Great Depression. The barn, now known as the Renze Barn, was featured on the Iowa Barn Foundation&#039;s All-State Barn Tour in 2012, 2014 and 2016..</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t22695 US Hwy. 71<br />Carroll, IA 51401<br />Carroll County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Liberty No. 5 School",
            "lat": "42.939700",
            "lon": "-93.797056",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Liberty No. 5 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.939700,-93.797056\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">63.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Liberty No.5 School was built used from 1924 through the early 1950s. The school featured one large classroom for all the students, a wood burning stove, wooden desks, and slate writing boards.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tSunset St.<br />Kanawha, IA 50477<br />Hancock County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Iowa Aviation Museum",
            "lat": "41.325553",
            "lon": "-94.443823",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-historymuseum-iowaaviationmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Aviation Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.325553,-94.443823\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">63.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Aviation Museum explores Iowa&#039;s aviation heritage. Several vintage aircraft are exhibited, including the only known 1941 Aetna-Timm Aerocraft, a 1941 deHavilland Tiger Moth, and the oldest Curtiss Robin known to exist. The Iowa Aviation Hall of Fame is on site.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2251 Airport Rd.<br />Greenfield, IA 50849<br />Adair County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7184</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://flyingmuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "North Skunk River Bridge",
            "lat": "41.494471",
            "lon": "-92.633637",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">North Skunk River Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.494471,-92.633637\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">63.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Completed in 1919, The North Skunk River Bridge was dismantled and moved to its current location in 1920. This bridge carries county-road traffic in an unaltered condition. The bridge is significant in that it is the longest example of a bridge using relatively uncommon pinned connections instead of riveted connections. The North Skunk River Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tNew Sharon, IA 50207<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Welter Barn",
            "lat": "42.503197",
            "lon": "-92.574695",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/grundy-barn-welterbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Welter Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.503197,-92.574695\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">63.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The original blueprints for the Welter Barn were developed by Agricultural Engineering Department at Iowa State University. It was built in 1947. This farm was first purchased in 1867 by Ole Johnson. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t13725 X Ave.<br />Co. Rd. T65<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Grand Theater",
            "lat": "42.893550",
            "lon": "-93.215021",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.893550,-93.215021\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">63.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1937, the Grand Theater was opened by the local physician, F.H. Rodemeyer. The theater had seating for 300 and air conditioning. The theater closed its doors in the early 1970s.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t220 Gilman St.<br />Sheffield, IA 50475<br />Franklin County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Little Valley Church",
            "lat": "42.772732",
            "lon": "-92.904464",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/butler-historymuseum-littlevalleychurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Little Valley Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.772732,-92.904464\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">63.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This small church, constructed in 1972, measures in at 6 feet by 8 feet and 10 feet tall, not including the steeple. Inside you will find four small pews to seat four adults and an alter. Open by request.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t513 Early St.<br />Bristow, IA 50611<br />Butler County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.775.3333</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.butlercountyiowa.com/historyattractions.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Capri Theater",
            "lat": "41.469863",
            "lon": "-92.651193",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-theater-capritheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Capri Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.469863,-92.651193\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">64mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Capri Theater building opened in 1910 as an industrial building. The Capri Theatre opened officially in 1929. The theater was leased by Bob Fridley in 1941, his first theatre, for $35 a month. Fridley completely renovated the interior and exterior in 1966, removing the old marquee and replacing it with the marquee that is seen today. After the 1966 renovation the theatre looks the same in 2009. The theater operated sporadically throughout the next few decades, changing hands and finally was owned and operated by Associated Theaters of Des Moines in the 1980’s. In 1990, the Capri Restoration restored the interior, replaced the roof, ceiling, and seats from 1990 to 1995. The Capri Restoration, Inc. volunteers currently owns and operates the theater as a discount movie theater.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t107 E Market St.<br />New Sharon, IA 50207<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Humboldt County",
            "lat": "42.868640",
            "lon": "-94.185172",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Humboldt County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.868640,-94.185172\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">64.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Humboldt County Freedom Rock® is located on a site that was originally landscaped to house the city hall. The west side of the rock is dedicated to the memory of area veterans handing candy and C-rations to the Vietnamese children. Area native Lance Corporal Jerry Hatcher is featured on the south side of the rock. Hatcher earned his first Purple Heart when he was hit in the hands and chest with grenade shrapnel, his second Purple Heart when he was was knicked on the elbow by a mortar fragment on the day before his 23rd birthday and his third Purple Heart when he was hit with grenade shrapnel on a routine overnight patrol. This third incident cost Hatcher his life. Artwork on the rock also includes homage to medical personnel in the armed forces, a flag, an eagle and a quote by author Sidney Sheldon. The Humboldt County (Livermore) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4th Ave.<br />Livermore, IA 50558<br />Humboldt County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Pomeroy Tornado Museum",
            "lat": "42.550541",
            "lon": "-94.684385",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/calhoun-historymuseum-pomeroytornadomuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pomeroy Tornado Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.550541,-94.684385\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">64.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pomeroy Tornado Museum is a dedicated to those that lost their lives and helped rebuild the City of Pomeroy after the July 6, 1893 tornado. The free museum commemorates the strength of the town and honors the 71 people that died in the disaster.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 S Ontario St.<br />Pomeroy Mall<br />Pomeroy, IA 50575<br />Calhoun County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.574.1615</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://tornadomuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Pomeroy Historical Society Museum",
            "lat": "42.551074",
            "lon": "-94.684972",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/calhoun-historymuseum-pomeroyhistoricalsocietymuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pomeroy Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.551074,-94.684972\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">64.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pomeroy Historical Society Museum is located in the former First National Bank building (also known as the Mutual Insurance Building) on Main Street. The society and museum host numerous events throughout the year and visitors are welcome to enjoy the museum collections.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t199 S Main St.<br />Pomeroy, IA 50575<br />Calhoun County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Hansen&#039;s Farm Fresh Dairy",
            "lat": "42.389673",
            "lon": "-92.475482",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hansen&#039;s Farm Fresh Dairy</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.389673,-92.475482\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">64.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Experience a working dairy farm where activities vary according to time of year. Visit the recently-built tour center dome. Cows are milked daily at 4AM and 4PM in the milking parlor. Try your hand at milking a cow, feeding a calf and making butter from real cream. Also see real New Zealand wallabies, the farm&#039;s mascot. Trolley and walk-thru tours of the farm are available.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t8461 Lincoln Rd.<br />Hudson, IA 50643<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.939.2187</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.hansendairy.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Brooklyn Hotel",
            "lat": "41.728533",
            "lon": "-92.447422",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-brooklynhotel.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brooklyn Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.728533,-92.447422\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">64.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1875 by John Byers, the Brooklyn Hotel is a locally-significant vernacular adaptation of the Italian Villa style. The building has been used primarily as either a hotel or private residence, with the exception of a short time in the early 20th century when Dr. Charles Busby operated a small hospital there. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t154 W Front St.<br />Brooklyn, IA 52211<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Brooklyn Historical Museum",
            "lat": "41.731060",
            "lon": "-92.445859",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-historymuseum-brooklynhistoricalmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brooklyn Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.731060,-92.445859\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">64.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1869, this building was originally the private home of Brooklyn resident William Manatt. In 1963, Manatt&#039;s youngest son, Coe Manatt, gave the house to the city to be used for library, civic, and cultural purposes. It was added to the National Register of Historic Places in 1997 and housed the Brooklyn Public Library until the spring of 1999. The Manatt house now functions as the Brooklyn Historical Museum and displays furniture, clothing, and artifacts that document the history of Brooklyn and its residents. It is also the headquarters of the Brooklyn Historical Society.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tJackson St.<br />Brooklyn, IA 52211<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Brooklyn Service Center",
            "lat": "41.729650",
            "lon": "-92.445288",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-historicsite-brooklynservicecenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brooklyn Service Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.729650,-92.445288\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Brooklyn Service Station was built in 1930 of glazed brick and terracotta. The Art Deco station has the original Moderne style lettering &quot;Service Standard Oil Products&quot;. It still operates as a full service gas station.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 E 2nd St.<br />Brooklyn, IA 52211<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Brooklyn Opera House",
            "lat": "41.729048",
            "lon": "-92.445185",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-theater-brooklynoperahouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brooklyn Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.729048,-92.445185\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Brooklyn Opera House was incorporated in 1910 and opened on February 28, 1911. The Opera House was the center of cultural activities with various performances and silent movies held during the early years. Over past several years restoration of the building had been a project for several volunteer groups. Currently, the Opera House is under private ownership.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 Jackson St.<br />Brooklyn, IA 52211<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Formanek Barn",
            "lat": "41.920985",
            "lon": "-92.384802",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-barn-formanekbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Formanek Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.920985,-92.384802\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Formanek Barn is a gambrel roof barn with three Dutch doors on the south side.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2951 Hwy. E66<br />Chelsea, IA 52215<br />Tama County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Jesse James Train Robbery Historical Marker",
            "lat": "41.483438",
            "lon": "-94.675761",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-historicsite-jessejamestrainrobbery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jesse James Train Robbery Historical Marker</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.483438,-94.675761\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>On July 21, 1873 Jesse James and his gang (Frank James, Cole Younger, Jim Younger, Board Younger, Bill Chadwell, and Clell Miller) staged the first robbery of a moving train. They had heard that there was $75,000.00 of gold being shipped east through Adair. They made plans to derail the Chicago and Rock Island train just west of Adair, near a curve in the railroad track. The gang stole tools from a handcar house and separated the railroad track. The train arrived and ran off the rails, killing engineer John Rafferty. When the bandits forced guard John Burgess to open the safe, they found only $2,000.00 – the gold shipment was delayed! Including loot stolen from passengers, the gang made off with about $3,000.00. The James Gang escaped capture but this bold robbery, the first train robbery in the west, gave them national notoriety. A locomotive wheel marks the site of the robbery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1156 Anita-Adair Rd.<br />Adair, IA 50002<br />Adair County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.mycountyparks.com/county/Adair/Park/Jesse-James-Historical-Site.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "LuVerne City Jail",
            "lat": "42.910944",
            "lon": "-94.083671",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">LuVerne City Jail</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.910944,-94.083671\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The LuVerne City Jail, “Old Calaboose” sits just northwest of the Chicago and Northwestern railroad tracks. Built in 1912 for a total cost of $181.15, the one-story, masonry molded-cement block building stands on a poured concrete footing. The windows are secured with steel bars. The &quot;Old Calaboose&quot; originally had two jail cells, measuring four feet by six feet each, which were used until 1934! The Luverne City Jail was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t307 3rd St.<br />Luverne, IA 50560<br />Kossuth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Montezuma Downtown Historic District",
            "lat": "41.584953",
            "lon": "-92.524124",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-historicdistrict-montezumadowntownhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Montezuma Downtown Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584953,-92.524124\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Centered around the Poweshiek County Courthouse, the Montezuma Downtown Historic District (3rd St. to 4th St., Liberty St. to Main St.) includes dozens of historic structures and monuments. It was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Main St.<br />Montezuma, IA 50171<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Poweshiek County Courthouse",
            "lat": "41.584780",
            "lon": "-92.524279",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-poweshiekcountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Poweshiek County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584780,-92.524279\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Poweshiek County Courthouse was built in 1859 and added to the National Register of Historic Places in 1981. It is locally significant as the historical focus of county government, and as a representation of the political power and prestige derived from the community&#039;s status as the county seat. As the center of county government, Montezuma was reasonably assured of economic and population growth and a prominent role in local social and political life.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Main St.<br />Montezuma, IA 50171<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Poweshiek County Historical and Genealogical Society",
            "lat": "41.584204",
            "lon": "-92.525109",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-historymuseum-poweshiekcountyhistoricalandgenealogicalsociety.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Poweshiek County Historical and Genealogical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584204,-92.525109\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Poweshiek County Historical and Genealogical Society occupies the Carnegie Library in Montezuma. The Society took advantage of the opportunity to relocate the historic building when the community’s Public Library moved to a new, modern facility in 2005. The library was the next-to-last to be granted by Carnegie in the state of Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 S 3rd St.<br />Montezuma, IA 50171<br />Poweshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.623.3322</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-hotels.png",
            "title": "Hotel Greenfield",
            "lat": "41.304959",
            "lon": "-94.459781",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-nhr-hotelgreenfield.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-hotels.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Greenfield</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.304959,-94.459781\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Hotel Greenfield was built in 1920 and is the largest commercial building in Greenfield’s central business district. Many early hotel patrons traveled to town by the Chicago, Burlington and Quincy freight-passenger train and were shuttled to the hotel from the south Greenfield depot. The presence of a first class hotel made Greenfield a full-fledged county seat and was essential to its commercial success. Hotel Greenfield was added to the National Register of Historic Places in 2011. The hotel has been completely restored and today&#039;s guests will experience history and modern comfort!</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 E Iowa St.<br />Greenfield, IA 50849<br />Adair County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7323</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://hotel-greenfield.com/history.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "New Carroll House Hotel",
            "lat": "41.585180",
            "lon": "-92.522563",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/poweshiek-nhr-newcarrollhousehotel.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">New Carroll House Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.585180,-92.522563\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This lot has been the site of a hotel since 1856. Ansel Stanley completed the construction on the hotel that had begun there in 1854 by John McIntire. In 1880, the establishment was renamed the Carroll House until it burned down in 1891. The hotel was rebuilt in 1892 and became known as the New Carroll House. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t412 E Main St.<br />Montezuma, IA 50171<br />Poweshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Adair County Democrat/Adair County Free Press Building",
            "lat": "41.304995",
            "lon": "-94.459967",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-nhr-adaircountyfreepress.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Adair County Democrat/Adair County Free Press Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.304995,-94.459967\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Free Press Building housed the Adair County Free Press for over one hundred years. The Sidey Family published the local paper, the Adair County Free Press, for four generations and sold it in 2014. The Sideys were avid photojournalists, known for their thousands of photographs of rural community life from the 1920s through the 1960s, visible at thesideycollection.com. Also of note, Hugh Sidey was Time Magazine&#039;s Washington Bureau Chief and he covered the Office of the President for 50 years. The building represents the crucial role that a local newspaper plays in community boosterism, pride and local history and was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t108 E Iowa St.<br />Greenfield, IA 50849<br />Adair County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Grand Theatre",
            "lat": "41.305615",
            "lon": "-94.461364",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-theater-grandtheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.305615,-94.461364\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grand Theatre was built at a cost of $15,000.00 on a vacant lot on the Greenfield Square in 1927. It was state of the art at the time, with seats for 500, sloping floors and air conditioning – an innovation! The projection booth was built of solid concrete to eliminate the danger for fire from a carbon arc movie projector. The theater has changed hands several times and has been updated to seat 252 (in modern seats) and is wheelchair accessible.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t370 Public Square<br />Greenfield, IA 50849<br />Adair County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.743.2182</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Adair County Courthouse",
            "lat": "41.305133",
            "lon": "-94.460992",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-nhr-adaircountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Adair County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.305133,-94.460992\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Adair County was established in 1851 and was named in honor of General John Adair, a Revolutionary War and Indian War soldier and War of 1812 officer. Fontanelle was named the county seat. The town of Greenfield, in the center of the county, was laid out in 1856 – thus beginning a fierce battle to move the county seat.  \r\n\r\nIn 1874, voters finally approved a measure to move the county seat to Greenfield – but the decision was challenged and taken to the Supreme Court. Before the court decision was final, Greenfield residents decided to move county records. More than 200 men and 75 wagons went to Fontanelle and hauled county records and furniture back to Greenfield. Residents of Fontanelle were so surprised they didn&#039;t resist. \r\n\r\nThe sheriff ordered the Board of Supervisors to return the records to Fontanelle, but his order was torn up. The next day, the sheriff presented a warrant for the return of the records, but he was met with an angry mob. \r\n\r\nFinally, a month later the Supreme Court ruled the county seat should be Greenfield. A frame building was used as a courthouse, but it burned in 1883. Court was held in the opera house until a new courthouse was constructed. \r\n\r\nThe “new” Adair County Courthouse was designed by S.E. Maxon of Omaha, was completed in 1892 and built at a cost of $26,768.00. \r\n\r\nThe exterior of the Adair County Courthouse, as well as the surrounding town square, were featured in Norman Lear&#039;s 1971 film &quot;Cold Turkey.&quot;\r\n\r\nThe 1892 courthouse stands proudly in the town square and has served the county for over 100 years.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 Public Square<br />Greenfield, IA 50849<br />Adair County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Warren Cultural Center",
            "lat": "41.304988",
            "lon": "-94.460344",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-nhr-warrenculturalcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Warren Cultural Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.304988,-94.460344\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The EE Warren Opera House opened in 1896. By the 1940s, the theatre had fallen in to disrepair. In 1994, the building was given to Main Street Greenfield, and in 2000 the EE Warren Opera House Association began a $6.2 million restoration project. The Warren Cultural Center opened its doors in Spring 2012 and now serves as a multi-use facility, hosting meetings, receptions and overnight guests, as well as performances in its historic rooms. Ed and Eva&#039;s retail store offers unique items from more than 40 different Iowa artists, and the gallery/lobby displays exhibits of art and photography. The Warren Opera House Block and Hetherington Block stand as well preserved examples of Iowa’s small town opera houses and commercial architecture. This project was given a 2013 Best of Preservation Award by the State Historical Society of Iowa Board of Trustees, and in 2014 the theater was named in honor of Norman Lear.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t154 Public Square<br />Greenfield, IA 50849<br />Adair County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7337</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.warrenculturalcenter.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Bellefountain Bridge",
            "lat": "41.281906",
            "lon": "-92.860045",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bellefountain Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.281906,-92.860045\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bellefountain Bridge was built in 1898 by the Clinton Bridge and Iron Works, a firm from Clinton, Iowa. The bridge has four pinned Pratt trusses on steel cylinder piers at a total length of 595-feet. The bridge has been closed to traffic for many decades. It was added to the National Register of Historic Places on May 15, 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t113 Jefferson St.<br />Tracy, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Holy Guardian Angels Church and Cemetery",
            "lat": "42.000509",
            "lon": "-94.917205",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Holy Guardian Angels Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.000509,-94.917205\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Sitting on a hilltop with a 145-foot steeple, it has dominated a small Iowa town for nearly 120 years. The Holy Guardian Angels Church and Cemetery in Roselle was listed on the National Register of Historic Places for its historic significance tied to Gothic architecture that German immigrants brought to the area in the 19th and early 20th centuries. Built in 1904, the church reflects the influence German-Catholic immigrants had on the area, including nearby Mount Carmel, in Carroll County. It started in 1867 when Lambert Kniest bought 23,000 acres of land that would become Mount Carmel. The transaction prompted the bishop in Dubuque to send parishioners to the area where they could find more fertile land to farm. Once there, they established the county&#039;s first Catholic church in 1868. About 40 of Roselle’s Catholic families traveled to Mount Carmel for church services until 1874 when they built their own frame church, called “Heilige Schutzengels Kirche” or Holy Guardian Angels Church. By the early 1900s, Roselle had become a bustling community with an extensive business district that included general stores and a creamery, barbershop, saloons, blacksmith shop and livery stables. As the community evolved, the congregation outgrew its church and decided to build a new one. But transporting building materials was an arduous task since Roselle was not on a railroad line; all the materials had to be hauled three miles over rolling terrain and a primitive road to the church site. The process took 2,116 trips with horse-drawn wagons, 93 days of work with horses and 393 days of manual labor, the nomination form said. In addition to money, parishioners donated items such as altars, communion rails and windows for the church, which cost $48,000. All of it was done while the parishioners, who were predominantly farmers, were establishing their own homes. The church was completed in 1904 with an Indiana limestone foundation, distinctive Gothic architecture, a 145-foot steeple, and elaborate and highly colored stained windows. Inside, the vaulted ceiling soars 37 feet above the ground floor. Statues of numerous saints, 26 angels and the four evangelists – Matthew, Mark, Luke and John – keep watch over the sanctuary while mosaics with liturgical symbols and gilded altars greet worshipers. Gothic characteristics include strong vertical lines, a steep-pitched roof, a slender tower topped by a needle spire, pointed gables, buttressed walls, large windows and pointed arches, windows and doors. In addition, the adjacent nearby cemetery that has grave markers dating back to 1863.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t245th St. and Jade Ave.<br />Roselle, IA 51401<br />Carroll County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Oak Grove School #9 - Fremont Township",
            "lat": "41.082170",
            "lon": "-93.769512",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clarke-historicschool-oakgroveschool9-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oak Grove School #9 - Fremont Township</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.082170,-93.769512\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Oak Grove School was built in 1871. The school was named for the massive collection of oak trees in the surrounding area. This school was one of the first one room schoolhouses to be built with a tornado shelter. It had the average 19th century amenities, wood desks, slate writing boards, and a wood burning stove in the center of the room.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t230th Ave.<br />Osceola, IA 50213<br />Clarke County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Adair County Historical Museum",
            "lat": "41.304469",
            "lon": "-94.471728",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-historymuseum-adaircountyhistoricalmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Adair County Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.304469,-94.471728\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">65.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Founded in 1986, the Adair County Heritage Museum features eight separate buildings, including a one-room school house (Harrison # 8), a railroad depot, a city barn, a century-old country church, an early road-side tourist court cabin, and the childhood home of former Iowa Governor George A. Wilson. Additionally, the museum is located on a five acre complex which features a unique array of Iowa&#039;s natural grasses and wildflowers.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2393 Lakeview Dr. S<br />Greenfield, IA 50849<br />Adair County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.743.2232</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://adaircountymuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Butler County Museum",
            "lat": "42.749601",
            "lon": "-92.794015",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/butler-historymuseum-butlercountymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Butler County Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.749601,-92.794015\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">66.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Butler County Museum contains numerous exhibits ranging from children&#039;s toys, medical equipment, hand tools, and a wedding gown and suit worn by a couple that was married at the county fair in 1935. Other artifacts include the first folding ironing board, various farming tools and equipment, and various artifacts relating to life in Butler County. The Butler County Museum is open during the fair and also by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 S Main St.<br />Butler County Fairgrounds<br />Allison, IA 50602<br />Butler County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.885.6279</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.butlercountyiowa.com/historyattractions.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Stagecoach Log Cabin",
            "lat": "42.749757",
            "lon": "-92.793675",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/butler-historymuseum-stagecoachlogcabin.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stagecoach Log Cabin</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.749757,-92.793675\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">66.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in the 1850s, this was originally a two story log cabin and served as a stagecoach stop between Waterloo and Mason City in Coldwater Township southwest of the town of Greene. The cabin also served as the first hotel in Greene. Many of the logs are black walnut and were found to be firmly mortised into the adjoining log. In 1960 the log cabin was turned over to the Butler County Historical Society. You can visit it during the annual Butler County Fair or by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 S Main St.<br />Butler County Fairgrounds<br />Allison, IA 50602<br />Butler County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.885.6279</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.butlercountyiowa.com/historyattractions.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Ellis Barn",
            "lat": "42.451498",
            "lon": "-94.804418",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/calhoun-barn-ellisbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ellis Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.451498,-94.804418\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">66.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This large barn was built in 1918. It is 40 feet high at the eaves and is built with 3x12 timbers. The barn is used in the premiere equine establishment, Red Rock Arabians. Red Rock Arabians has raised quality Arabian horses for over thirty years. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2370 Fletcher Ave.<br />Co. Rd. N33<br />Lytton, IA 50561<br />Calhoun County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Wallace Country Life Center",
            "lat": "41.230169",
            "lon": "-94.362915",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adair-nhr-wallacecountrylifecenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wallace Country Life Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.230169,-94.362915\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">66.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 40-acre working farm was the birthplace of Henry A. Wallace, US Vice President, US Secretary of Agriculture, US Secretary of Commerce, founder of Pioneer Hi-Bred seed corn company and editor of Wallaces Farmer agricultural journal. More than 40 different kinds of organic fruits and vegetables are grown on nine acres, then transformed into locally-sourced lunches and dinners on Fridays at the on-site Gathering Table restaurant, inside the historic replica barn. A gentle walking trail through nine acres of restored Iowa prairie guide visitors to five outdoor art sculptures, each one a reflection of some aspect of Henry A. Wallace&#039;s legacy. Inside the restored farmhouse, a gift shop features preserved food products made on site, plus hand crafts from area artists. The Wallace Farm was added to the National Register of Historic Places in 1974. Reservations recommended for group tours, lunch and dinner.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2773 290th St.<br />Orient, IA 50858<br />Adair County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.337.5019</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.wallace.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Little Yellow Schoolhouse",
            "lat": "42.757184",
            "lon": "-92.796109",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/butler-monument-halloffame.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Little Yellow Schoolhouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.757184,-92.796109\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">66.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1888, this one room schoolhouse served the educational needs of Pittsford Township, in Section 3, near the town of Aredale until 1957. The building was relocated to Courthouse Square in Allison and was the first attraction of the Butler County Historical Society. Volunteer retired school teachers help educate children from around the county on what it would have been like to get their education in a one room school. The school is outfitted with sleigh desks and other props from the era when it was used. Appointments are required.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t499 6th St.<br />Courthouse Square<br />Allison, IA 50602<br />Butler County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.267.2065</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.butlercountyiowa.com/historyattractions.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Anna Pals House",
            "lat": "42.756656",
            "lon": "-92.793502",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/butler-historymuseum-annapalshouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Anna Pals House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.756656,-92.793502\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">66.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The most recent project for the Butler County Historical Society has been the acquisition of this one story cottage of the Pals family. From 1908 through 1940 more than 100,000 people ordered their houses from Sears, Roebuck and Co. catalogs. It is believed that this home was constructed between 1909 and 1910, and was model number 106 from the Sears catalog. The home sold for between $498 and $1190, depending on the features chosen. Butler County carpenter Peter Pals constructed the house with the materials that arrived by rail. Owning this 944 square foot home was the All American Dream in its time. The home is currently being restored to its original time period.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t714 Elm St.<br />Allison, IA 50602<br />Butler County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.885.6279</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.butlercountyiowa.com/historyattractions.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Hammond Bridge",
            "lat": "41.177710",
            "lon": "-93.014092",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/marion-nhr-hammondbridge-6b-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hammond Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.177710,-93.014092\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">67mi.</span></div>\n\t\t</div>\n\n\t\t<p>Hammond Bridge is a covered Howe through truss bridge, built in 1894. It was by-passed by a low water crossing about 2012, and is now privately owned. The brdige is open to pedestrians. Hammond Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t170th Pl.<br />Hamilton, IA 50116<br />Marion County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Elfsborg Lutheran Church and Cemetery",
            "lat": "42.617495",
            "lon": "-94.687397",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/calhoun-historicsite-elfsborglutheranchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Elfsborg Lutheran Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.617495,-94.687397\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">67.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Swedish Evangelical Lutheran Elfsborg Church was organized on March 13, 1873, in the home of John Soder along with fellow Colfax Township residents, John A. Johnson, Carl P. Peterson, Gustaf Johnson and August Nelson. The church was named for the homeplace in Sweden, &quot;Elsborg&quot; that many of the charter members were from. The cemetery site was purchased in 1874 and the first church structure was built in 1884 and was 30x40 feet, with walls 14 feet high and a steeple standing 69-feet tall.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t21579 600th St.<br />Pomeroy, IA 50575<br />Calhoun County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Williamson School",
            "lat": "41.089319",
            "lon": "-93.260133",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Williamson School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.089319,-93.260133\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">67.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Williamson School operated from 1900-1949, and is significant for its association with the founder of the town, George Williamson. It is also significant for its influence on the education system of the sarea. The Williamson School was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 Williamson Ave.<br />Williamson, IA 50272<br />Lucas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Sioux and Winnebago Battle Area",
            "lat": "42.806576",
            "lon": "-94.447711",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sioux and Winnebago Battle Area</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.806576,-94.447711\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">67.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This area was to be unoccupied neutral ground based upon an unwritten law. However, Sioux Tribes were constantly at war with the Winnebago. About 30 friendly Winnebagos feeling safe were encamped on the Des Moines River preparing furs for market at the trading post at Fort Dodge a day’s journey. Based on an account written by Editor Wm. D. McEwen in The Pocahontas Times, May 18, 1876. The 1853 or 1854 battle ensued when Sioux Chief Cou-sta-wa attacked killing 10 Winneabagos while only four escaped unwounded. Cou-sta-wa was killed in the battle. The Sioux removed their warriors, but early settlers found seven graves in the area. One of the Sioux band was Inkpaduta, known for the Spirit Lake Massacre of 1857. A large boulder on the Three Rivers Recreation Trail has a plaque commemorating the site.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3 Rivers Trail<br />Bradgate, IA 50520<br />Pocahontas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Chambers Ford Bridge",
            "lat": "41.884003",
            "lon": "-92.335190",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chambers Ford Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.884003,-92.335190\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">67.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chambers Ford Bridge was built in 1890. It is a Pratt Truss bridge with a number of unusual additions, like a sway protection bar attached to the bottom. The Chambers Ford Bridge was added to the National Register of Historic Places in 1998. The bridge is closed to all traffic with portions of the deck damaged. The bridge is slated for demolition.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t380th St.<br />Over Iowa River<br />Chelsea, IA 52215<br />Tama County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Lytton Historical Museum",
            "lat": "42.423886",
            "lon": "-94.859736",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sac-historymuseum-lyttonhistoricalmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lytton Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.423886,-94.859736\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">68mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lytton Historical Museum chronicles the history of Lytton from its creation to today. The museum has exhibits including the old Lytton creamery, elevator, depot, rural and community schools, and other items of local history.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2335 Main St.<br />Lytton, IA 50561<br />Sac County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.660.0823</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Ross Grain Elevator",
            "lat": "41.773670",
            "lon": "-94.922058",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/audubon-nhr-rossgrainelevator-1b-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ross Grain Elevator</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.773670,-94.922058\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">68mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ross Grain Elevator was built about 1881 by Captain Charles Stuart, a pioneering entrepreneur and adventurer. Stuart was instrumental in founding the towns of Stuart, Adair and Audubon, as well as the building of grain elevators in Audubon, Gray and Ross. The elevator is situated on the western edge of Ross, Iowa, along the Chicago &amp; Northwestern Railroad line that once ran through Audubon County. One of the oldest remaining grain elevators in Iowa, this country elevator was built of wood with cribbed bins and received grain in small wagon and truck lots and then transferred it to railroad car lots. Prior to having a grain elevator locally, the citizens of Ross bagged and hand loaded grain onto wagons, and then traveled many miles by horse to the nearest flat house. With the construction of the Ross Grain Elevator, farmers were given a place to sell their commodities and boosting the local economy. The Ross Grain Elevator was added to the National Register of Historic Places in 2018.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5940 Main St.<br />Audubon, IA 50025<br />Audubon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Evan F. Ellis House",
            "lat": "41.219298",
            "lon": "-92.889286",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Evan F. Ellis House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.219298,-92.889286\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">68mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Evan F. Ellis House is an example of the Sears and Roebuck pre-cut “Honor Bilt Modern Homes.” The simple features of the house emphasized the nature of the low cost “pattern book” house. The original Sears blueprints, which still exist, were followed closely by the builder. Its rural setting is unusual for a pre-cut house, as the parts had to be transported some distance. It was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2401 Story St.<br />Bussey, IA 50044<br />Marion County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Grandview Farm Barn",
            "lat": "41.324638",
            "lon": "-92.708175",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-barn-grandviewfarmbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grandview Farm Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.324638,-92.708175\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">68.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grandview Farm Barn was built in 1861 by Miles Prine who purchased the 95 acres from the James Pomeroy estate in 1861. The farm had been homesteaded in 1849 by the Pomeroys. The name G.S. Prine is painted on one of the grain bin doors. George was a son of Miles who died in 1900. In 1905, Gerrit and Cornie Dykstra purchased the farm and owned it until Pete Vos, father of the present owners, Marion and Dorothy Vos, purchased it in 1945. The beams of the barn are oak and pine. Hand-hewn pegs can be seen in several areas. The ropes that were used for lifting hay to the loft are hanging where Marion placed them in 1953 after the last load of hay was raised. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1856 Hwy. 163<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chicago, Burlington and Quincy Railroad: Osceola Depot",
            "lat": "41.037192",
            "lon": "-93.765027",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clarke-nhr-cbqdepotosceola.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago, Burlington and Quincy Railroad: Osceola Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.037192,-93.765027\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">68.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chicago, Burlington and Quincy Depot was built in 1907. It was built after the CB and Q General Manager visited Osceola in 1906 and said that the existing frame depot was a disgrace to the Quincy Road. Plans were drawn up and a new depot was built for $12,000. It was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t215 N Main St.<br />Osceola, IA 50213<br />Clarke County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Osceola Masonic Block",
            "lat": "41.034738",
            "lon": "-93.765545",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clarke-nhr-osceolamasonicblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Osceola Masonic Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.034738,-93.765545\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">68.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Masonic Block (1872) is a major landmark on the Osceola Public Square and was a major part of the social life of Osceola in the late 19th and early 20th centuries. It was also the long-time home of an Osceola banking institution. It was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 S Main St.<br />Osceola, IA 50213<br />Clarke County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Lyric Theatre",
            "lat": "41.034095",
            "lon": "-93.767670",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clarke-theater-lyrictheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lyric Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.034095,-93.767670\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">68.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lyric Theater was built in 1935. The theater had a large stage, orchestra pit and fly loft for live theater performances. It featured a state-of-the-art air conditioning system housed beneath the main auditorium with an evaporative cooling system, giving the building its nickname, &quot;the swamp.&quot; The theater was renovated in 1957 to add a 31 x 36 ft. screen. It received its final renovation in 1999 when it was completely redone into its current form. The theater continues to operate in its original space.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t118 S Fillmore St.<br />Osceola, IA 50213<br />Clarke County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Osceola Commercial Historic District",
            "lat": "41.034325",
            "lon": "-93.767120",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Osceola Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.034325,-93.767120\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">68.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Osceola Commercial Historic District  is comprised of 42 buildings that make up the county seat&#039;s town square. At the center of the square sits the 1956 mid-century modern Clarke County Courthouse. Notable buildings around the square include the 1935 Art Deco Lyric Theater, 1883 Arlington-Howe-Garner Hotel, 1902 G.T. McNeil Block, 1880 Pritchett&#039;s/Tuoet&#039;s Opera House, 1871 Burrows-Mintonye Block, 1887 Myer-Riley Block, and 1872 Masonic Block which originally housed the Osceola Bank (1872) and Iowa State Bank (1890). The development of Osceola coincided with national agricultural prosperity in the late 19th century. In the early 20th century following World War I, Osceola benefited from the growing farm modernization era due the town&#039;s regional railroad service in all directions. It&#039;s impressive railroad building initiative in 1880 brought the Des Moines Osceola and Southern line with a direct link to the capitol city, was extended into Missouri in 1884 and was sold to the Chicago, Burlington and Quincy Railroad in 1901. The Osceola Commercial Historic District was added to the National Register of Historic Places in 2018.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 S Main St.<br />Osceola, IA 50213<br />Clarke County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dickinson Webster House",
            "lat": "41.033841",
            "lon": "-93.774096",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clarke-nhr-dickinsonwebsterhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dickinson Webster House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.033841,-93.774096\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">68.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Webster family moved to Clarke County in 1851, the year it was settled. The Dickinson Webster House was built sometime after that. It is one of the few in Osceola dating from the early years of town and county history which has been continually occupied by descendants of a pioneer family. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t609 W Jefferson St.<br />Osceola, IA 50213<br />Clarke County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George and Alice Cowles House",
            "lat": "41.032385",
            "lon": "-93.769104",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clarke-nhr-georgeandalicecowleshouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George and Alice Cowles House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.032385,-93.769104\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69mi.</span></div>\n\t\t</div>\n\n\t\t<p>George H. Cowles was an early banker and, later, a prominent physician in Osceola. His home was built in about 1875. It was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t229 W Cass St.<br />Osceola, IA 50213<br />Clarke County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "J. V. Banta House",
            "lat": "41.030341",
            "lon": "-93.768861",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clarke-nhr-jvbantahouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J. V. Banta House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.030341,-93.768861\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Completed in 1902, this house was designed by George F. Barber—the most important mail order architectural firm in the U.S. in the late 19th century. The Banta residence is the only particular design known to be constructed in Iowa. The house is sited on a large lot which is the highest point in the surrounding area and is located in a mixed residential-commercial neighborhood. The home has many textures, gables, projecting bays, tall chimneys and terra cotta work. J.V. and his wife, Lillie, moved to Osceola in 1868. He was president of the Clarke County Bank and later founded the J.V. Banta Abstract and Loan Company. The Banta House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t222 W McLane St.<br />Osceola, IA 50213<br />Clarke County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Marcellus Luther and Julia Protzman Temple House",
            "lat": "41.029334",
            "lon": "-93.766030",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clarke-nhr-marcelluslutherandjuliaprotzmantemplehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marcellus Luther and Julia Protzman Temple House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.029334,-93.766030\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Marcellus Luther Temple came to Iowa in 1873, and later was elected to serve as a State Representative and United States Attorney for Southern District of Iowa. Temple also authored the Temple Amendment to the Iowa Constitution. That amendment would have given each county in Iowa at least one Representative in the legislature, regardless of population. His home was built in 1892 and added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t502 S Main St.<br />Osceola, IA 50213<br />Clarke County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "C. A. Rownd Round Barn",
            "lat": "42.491842",
            "lon": "-92.444739",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">C. A. Rownd Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.491842,-92.444739\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>C.A. Rownd constructed this round barn on his 120 acre farm in 1912. He made the blocks on site and chose the true-round shape barn because of its resistance to wind pressure and because the shape allowed him an additional one thousand square feet of interior space than a rectangular barn of equal wall length. Made of concrete, the barn was considered an “ideal sanitary barn.” The Rownd Round Barn was added to the National Register of Historic Places in 1986. It is now part of the campus of the Windgrace and Windermere Retirement Communities.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Main St.<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Dysart Historical Center",
            "lat": "42.167289",
            "lon": "-92.307666",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-historymuseum-dysarthistorcialcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dysart Historical Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.167289,-92.307666\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dysart Historical Center features a complex of three buildings: A historical museum, a one-room rural school, and a new agricultural museum and interpretive center. Experience the displays, narratives, and programs designed to share the inspiring stories of Iowa&#039;s rich agricultural heritage and culture.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t612 Crisman St.<br />Dysart, IA 52224<br />Tama County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.476.4949</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://dysartiowa.com/Museum.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Marshall Center School",
            "lat": "42.516429",
            "lon": "-92.463984",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marshall Center School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.516429,-92.463984\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Marshall Center School is a one-room school museum that has been restored as it was in the early 1920s, including original furnishings and period artifacts. An active reminder of Iowa&#039;s historically prominent role in quality education, the school shares the story rural schools played in shaping 19th century America.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW 23rd St. and Indiana St.<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.273.2188</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://uni.edu/museum/mcs/index.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Special Collections and University Archives",
            "lat": "42.514741",
            "lon": "-92.459566",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Special Collections and University Archives</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.514741,-92.459566\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rod Library Special Collections and University Archives houses the University of Northern Iowa&#039;s historical documents and is home to many unique collections.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRod Library<br />University of Northern Iowa<br />Cedar Falls, IA 50614<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.273.2838</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.library.uni.edu/collections/special-collections\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Oswald Barn",
            "lat": "41.026226",
            "lon": "-93.749505",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clarke-barn-oswaldbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oswald Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.026226,-93.749505\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This beef barn was designed in the 1930s and can be converted into a show pavilion to seat 1000. Pure-bred Angus were developed there by Dr. C.R. Harken, an Osceola physician. J.C. Penney often visited the farm.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1071 Harken Hills Dr.<br />Osceola, IA 50213<br />Clarke County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Audubon County Courthouse",
            "lat": "41.721520",
            "lon": "-94.929604",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/audubon-nhr-auduboncountycourthouse-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Audubon County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.721520,-94.929604\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Ground was broken for the Audubon County Courthouse in 1939. A ninety-six year old Civil War veteran turned the first shovelful of dirt to commence construction. The courthouse was dedicated on June 11, 1940. It is significant because it is one of ten county courthouses built in Iowa during the New Deal Era as part of the federal Public Works Administration and its successor agencies. It is an example of the PWA Moderne style of public building architecture developed during the 1930s and early 1940s. Its design blends Art Deco and Moderne elements. The Audubon County Courthouse was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t318 Leroy St.<br />Audubon, IA 50025<br />Audubon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "University of Northern Iowa President&#039;s House",
            "lat": "42.514960",
            "lon": "-92.456300",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a7ddb96260454b5f.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">University of Northern Iowa President&#039;s House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.514960,-92.456300\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building became the residence for the president of the University of Northern Iowa (UNI) in 1909. However, it was nearly 60 years later that this house became central to an effort to establish the first Black cultural center on campus. \r\n\r\nIn the late 1960s, administrators and faculty at UNI began actively recruiting African Americans students to campus. By the fall of 1967, faculty and students were having regular conversations about diversifying the student body. \r\n\r\nIn December 1969, UNI President Bill Maucker and UNI student representatives presented a proposal for a Black cultural center to the Board of Regents. The Board of Regents encouraged further planning and refused to approve the plan until the Attorney General could review the proposal.\r\n\r\nFrustrated by the Board of Regents’ inaction, a group of seven students staged a sit-in at the President’s House to push for action. The students arrived at the house to discuss the proposed cultural center with President Maucker and then refused to leave. They stayed overnight on the main floor of the house and even ordered pizza!\r\n\r\nAfter 17 hours, the sit-in ended, after the university sought an injunction from Black Hawk County District Court. However, the injunction was never served.\r\n\r\nThe sit-in at the President&#039;s House helped bring attention to the cause for a cultural center. Maucker continued to advocate for a Black cultural center on campus and in 1971 the Ethnic Minorities Cultural and Educational Center at UNI held its grand opening. This center was located in an earlier President&#039;s House (built in 1890) until 2004.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2501 College St.<br />University of Northern Iowa Campus<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "University of Northern Iowa Ethnic Minorities Cultural and Educational Center",
            "lat": "42.515800",
            "lon": "-92.456220",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a8198e930213ea3d8.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">University of Northern Iowa Ethnic Minorities Cultural and Educational Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.515800,-92.456220\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building, now known as the University of Northern Iowa (UNI) Honors Cottage, was constructed in 1890 as the President&#039;s House. From 1971 through 2004, it served as the Ethnic Minorities Cultural and Educational Center - the first dedicated building for the university&#039;s Black student union. It was established in 1971 through the diligence and determination of UNI students and UNI President Bill Maucker.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2401 College St.<br />University of Northern Iowa Campus<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Albert the Bull",
            "lat": "41.711412",
            "lon": "-94.926939",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/audubon-artpublic-alberthebull-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Albert the Bull</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.711412,-94.926939\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The World&#039;s Largest Bull, Albert the Bull, is an exact replica of a Hereford bull, nine times larger than life-size. Albert was named after Albert (Al) Kruse, the former president of the Audubon State Bank who led Operation T-Bone, a promotional campaign for the beef industry. He was built bit the Audubon Junior Chamber of Commerce in 1964 at a cost of $30,000. Albert weighs 45 tons, is 30 feet tall, is 33 feet long.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Division St.<br />Albert the Bull Park<br />Audubon, IA 50025<br />Audubon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "John James Audubon Cultural Center",
            "lat": "41.721570",
            "lon": "-94.931354",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John James Audubon Cultural Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.721570,-94.931354\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John James Audubon Cultural Center is located on the main level of the 1912 Carnegie library. It is home to a doll and toy collection. The Audubon Public Library is the largest public library in Audubon County, housing over 28,000 books, 3,000 movies, and 600 CDs.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 N Park Pl.<br />Audubon, IA 50025<br />Audubon County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.563.3301</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.audubon.swilsa.lib.ia.us/culturalc.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "John L. Lewis Memorial Museum of Mining and Labor",
            "lat": "41.028805",
            "lon": "-93.461185",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-historymuseum-johnlewismininglabormuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John L. Lewis Memorial Museum of Mining and Labor</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.028805,-93.461185\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John L. Lewis Memorial Museum of Mining and Labor is dedicated to the life of John Lewis, a prominent figure in organized labor who served as president of the United Mine Workers of America for 40 years. A major player in the history of coal mining, he was the driving force behind the founding of the Congress of Industrial Organizations (CIO), which established the United Steel Workers of America and helped organize millions of other industrial workers in the 1930s. The museum holds photos, speeches, letters and memorabilia pertaining to John L. Lewis&#039; association with various organizations, and a theater with films on the history of John L. Lewis and the history of coal mining.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 Division St.<br />Lucas, IA 50151<br />Lucas County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.766.6831</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://coalmininglabormuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Clarke County Historical Society and Museum",
            "lat": "41.022444",
            "lon": "-93.764808",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clarke-historymuseum-clarkecountyhistoricalmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clarke County Historical Society and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.022444,-93.764808\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clarke County Museum is a 5-acre complex that displays the history of Clarke County. The main building contains various displays and collections pertaining to Clarke County history including military uniforms, a general store and barber shop, musical instruments and furnished rooms of houses. The complex also includes a log cabin, a machine shed containing various pieces of farm equipment and a country school which was originally located in Knox Township.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1030 S Main St.<br />Osceola, IA 50213<br />Clarke County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.342.3027</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Burlington Railroad Overpass",
            "lat": "41.040469",
            "lon": "-93.365853",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-nhr-burlingtonrailroadoverpass.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Burlington Railroad Overpass</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.040469,-93.365853\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>In the 1930s the Iowa State Highway Commission designed a handful of steel arch structures to function as grade separations in various locations in the state. One of these structures was this overpass over the Burlington Northern Railroad in central Lucas County. For this crossing, the commission in 1936 drew up a single-span, three-hinge arch supported by concrete arch pedestals. The highway commission designated a contract for its construction to Ben Cole and Son from Ames. The overpass was completed and accepted by the highway commission in June 1937. It has since carried traffic in an essentially unaltered condition. Until recently the last two steel arch overpasses in the state were located in Lucas and Clinton counties. The Clinton County arch has been replaced, leaving the Lucas County structure as the last remaining example of this bridge design trend. It is thus significant as a rare example of ISHC aesthetics and a unique structural type in the state. The Burlington Railroad Overpass was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCounty Rd. S23<br />Chariton, IA 50049<br />Lucas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Rose Theatre",
            "lat": "41.721123",
            "lon": "-94.932048",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/audubon-theater-rosetheatre.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rose Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.721123,-94.932048\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rose Theatre was built in Audubon in the mid-1940s and has remained a staple of entertainment for the county since. The theatre can hold 358 people and houses a video store in the lobby. The Rose Theatre is an excellent example of the Streamlined Moderne style movie theater in Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t318 Broadway St.<br />Audubon, IA 50025<br />Audubon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Nathaniel Hamlin Museum and Park",
            "lat": "41.695404",
            "lon": "-94.923063",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/audubon-historymuseum-nathanielhamlinmuseumandpark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nathaniel Hamlin Museum and Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.695404,-94.923063\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">69.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Nathaniel Hamlin Museum and Park, formerly the Audubon County Home, is named after for the first settler of Audubon County, Nathaniel Hamlin. The Museum and Park showcase early 1900s furnishings, pioneer farm machinery, a country school and a collection of windmills. The park also includes a wilderness area with resident elk and seven acres of native timber. The historic site is a permanent facility that belongs to the Audubon County Historical Society.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1887 215th St.<br />Audubon, IA 50025<br />Audubon County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.563.3984</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.auduboncounty.net/achs1/park.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John D. Bush House",
            "lat": "41.594135",
            "lon": "-94.875665",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/audubon-nhr-johndbushhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John D. Bush House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.594135,-94.875665\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John D. Bush House was built by Danish immigrant carpenter Jens Uriah Hansen, who was the first Dane to settle in Audubon County. Hansen was responsible for the construction of a number of the early buildings, homes, and outbuildings in the Exira area. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t219 N Kilworth St.<br />Exira, IA 50076<br />Audubon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Audubon County Historical Museum",
            "lat": "41.591253",
            "lon": "-94.874967",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/audubon-historymuseum-auduboncountyhistoricalmuseum-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Audubon County Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.591253,-94.874967\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Exira Hall Company was organized in 1874 and raised enough money to build a courthouse. This building - believed to be the first building in the county erected specifically for use as a county government facility - served as a courthouse until the county seat moved to Audubon in 1879. In 1901, the name was changed to Opera House because the &quot;Men&#039;s Lecture Club&quot; rented the building. It was also used as a roller skating rink, cafe, bakery and library. The museum now holds antique furniture, machinery and clothing. The Old Audubon County Courthouse was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 E Washington St.<br />Exira, IA 50076<br />Audubon County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.268.5564</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.auduboncounty.net/achs1/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Tyden Farm No. 6 Farmstead",
            "lat": "42.922819",
            "lon": "-92.996569",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tyden Farm No. 6 Farmstead</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.922819,-92.996569\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Emil Tyden began construction on this farm around 1910. It is one of 8 farms built by Tyden in north-central Iowa after he came to the U.S. from Sweden in the early 20th century. Tyden was also active in the manufacturing business, developing products like the cargo seal and enhancing sprinkler systems. He eventually had more than 200 patents to his name. The farm was added to the National Register of Historic Places in 2009, and is now open for public tours. Guests can explore the barn, gardens, corn crib, and kitchen, all of which maintain their historical integrity.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1145 300th St.<br />Dougherty, IA 50433<br />Floyd County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.426.5277</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://tydenfarm.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Hayward Round Barn",
            "lat": "42.221906",
            "lon": "-92.299554",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-barn-haywardbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hayward Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.221906,-92.299554\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hayward Round Barn was restored by Loie Hayward, great-granddaughter of the builder Charles Hayward. He purchased the farm in 1881 and built the barn in 1916. The round barn is 66’ in diameter. It’s one of 16 identified Iowa barns built by the Johnson Brothers Clay Works of Fort Dodge. Their barns are distinct because they were built with small clay tile in the lower story and larger tile above. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1520 Co. Rd. V37<br />Dysart, IA 52224<br />Tama County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "First Pocahontas County Courthouse Marker",
            "lat": "42.839964",
            "lon": "-94.473506",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pocahontas-historicsite-firstpocahontascountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Pocahontas County Courthouse Marker</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.839964,-94.473506\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This site, in Section 26, Des Moines Township, marks the location of the town of Old Rolfe (also known as Highland City and Parvin) and the first courthouse in Pocahontas County. In 1857 a group of pioneers arrived and a thriving frontier community developed. The first courthouse building was made of brick with a stone foundation, which also served as a schoolhouse. The county seat was moved to Pocahontas in 1875. In 1882, when the railroad was built, the town of Rolfe was moved four miles southwest, leaving what is now known as Old Rolfe, a ghost town. A marker commemorating the location of the original, built by Father Doberstein, builder of the Grotto of the Redemption, along with the cemetery are all that remain of the original town of Rolfe.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t44673 325th Ave.<br />Rolfe, IA 50581<br />Pocahontas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Black Hawk County",
            "lat": "42.526080",
            "lon": "-92.442597",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Black Hawk County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.526080,-92.442597\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Black Hawk County Freedom Rock® in Cedar Falls features Taylor Morris, a Navy Explosive Ordinance Disposal Technician. In May 2012, four months in to his first tour of duty to Afghanistan, Morris sustained profound injuries to all four of his limbs. He returned to the United States and received medical care at Walter Reed Medical Center. Morris has since returned to the Cedar Valley and is working on his college degree. The west side of the rock shows the five Sullivan brothers, Waterloo natives who were serving together on the USS Juneau and were all killed in action when it sunk in November 1942. Lt. Robert Hibbs is also portrayed on the rock. Hibbs attended the University of Northern Iowa and earned a Medal of Honor in Vietnam. The Black Hawk County Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWaterloo Rd.<br />Veterans Memorial Park<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Wild Historic District",
            "lat": "42.538053",
            "lon": "-92.450922",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wild Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.538053,-92.450922\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wild Historic District comprises three homes associated with the Wild Family, all on West First Street, at 423 (built in 1891), 501 (built in 1895) and 509 (built in 1888). \r\n\r\nDaniel Wild (1828-1903) was a Bavarian immigrant who arrived in Cedar Falls in 1853, bought the land for these three homes shortly thereafter, and established himself as a farmer, brickmaker and construction-materials merchant. His wife, Margaret, had immigrated from Baden.\r\n\r\nThe Wilds were part of Cedar Falls’ early commercial and industrial history by virtue of their successful brick-manufacturing business. They also sold building materials, wholesale and retail, from a business based in downtown, giving them access to the best materials and best builders in the area. This access is reflected in the house at 501 West First Street, an elaborate and stylish Queen Anne house. The two other houses, at 423 and 509, are relatively modest homes with decorative interiors. \r\n\r\nAll three homes reflect the Wild family’s industrial and commercial success in the Cedar Falls community. These homes functioned as an enclave for the extended Wild family from 1888 to 1946. The family lived and worked together, and most were buried together, at Greenwood Cemetery. \r\n\r\nThe Wild Historic District was added to the National Register of Historic Places in 2019.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t423, 501 &amp; 509 W 1st St.<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "George Preston&#039;s Station",
            "lat": "41.897171",
            "lon": "-92.282766",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-historicunique-georgeprestonsstation.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Preston&#039;s Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.897171,-92.282766\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>George Preston&#039;s father paid $100 for a service station in 1923. He moved the station building to the Lincoln Highway, for his four sons to operate. The Preston Service Station was a business on a bustling transcontinental thoroughfare. In 1936, the Lincoln Highway was re-aligned as US Highway 30, north of town - but George Preston remained at the station. By then, Preston had begun to amass a collection of stories and memorabilia, specifically oil and gas signs haphazardly adorning the exterior of the building. He loved to talk and dreamed of keeping the Lincoln Highway alive - even appearing on The Tonight Show with Johnny Carson in 1990! George Preston died in 1993, but his family maintains the Preston Corner is a throwback to the days when the Lincoln Highway was the transcontinental route.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA Hwy. 21 and 4th Ave.<br />Belle Plaine, IA 52208<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "George Wyth House",
            "lat": "42.535933",
            "lon": "-92.449930",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Wyth House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.535933,-92.449930\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>George Wyth achieved his prominence as founder and first president of Viking Pump Company. Wyth and his wife purchased this home in 1925. The Wyth Family enjoyed the front porch, especially on Thursday evenings when the Cedar Falls Concert Band played across the street in Overman Park.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t303 Franklin St.<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.266.5149</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Old Rolfe Cemetery",
            "lat": "42.840349",
            "lon": "-94.476507",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pocahontas-cemetery-oldrolfecemetery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Rolfe Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.840349,-94.476507\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old Rolfe Cemetery is located in Section 26, Des Moines Township. The cemetery, along with the first county courthouse marker, are all that remain of the original town of Rolfe (now referred to as Old Rolfe). The town was settled in 1857 and abandoned in 1882 when the railroad was built and the town of Rolfe moved four miles southwest. There are 86 known burials at the cemetery and the last internment was in 1940.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t44673 325th Ave.<br />Rolfe, IA 50581<br />Pocahontas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Victorian Home and Carriage House Museum",
            "lat": "42.535743",
            "lon": "-92.448532",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Victorian Home and Carriage House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.535743,-92.448532\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Italianate-style home was built by Azel D. Barnum in 1863. It has a stately cupola and is a prominent Cedar Falls landmark. Barnum partnered with a local businessman to build and run a grain, seed and farm implement warehouse on the Cedar River. In 1880, Walter and Cornelia Bryant purchased the home for their family. They were known to host literary meetings and musical performances in the parlor. Today, visitors can see artifacts and furnishings - including a wreath made of human hair and a porcelain mustache cup - that speaks to the social and cultural norms of Victorian days. The property are maintained by the Cedar Falls Historical Society.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t308 W 3rd St.<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.266.5149</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cedar Falls Independent Order of Odd Fellows Temple",
            "lat": "42.534870",
            "lon": "-92.445703",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cedar Falls Independent Order of Odd Fellows Temple</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.534870,-92.445703\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Odd Fellows Temple was built by James E. Robinson between 1901 and 1902. The Odd Fellows played an important role during the late 19th and early 20th century. As a fraternal organization the Odd Fellows provided benevolence to members’ widows and orphans in a time before life insurance was wide spread. The Odd Fellows Temple has been repurposed to a nightclub and was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 Main St.<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Ice House Museum",
            "lat": "42.538498",
            "lon": "-92.448803",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-historymuseum-icehousemuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ice House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.538498,-92.448803\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Before home refrigerators were popular, ice was harvested from the river in the winter and stored for use during the summer. The Cedar Falls Ice House was built by the Cedar Falls Ice and Fuel Company in 1921, and each year it was used to store six to eight thousand tons of ice. The ice was sold to customers, as they had no way to make ice at home. The company went out of business in 1934, but the building was added to the National Register of Historic Places in 1977.  Operated by the Cedar Falls Historical Society, the Ice House Museum is believed to be the only museum in the country that displays ice harvesting artifacts and archives in an original ice house.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t121 Center St.<br />Sturgis Park<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.266.5149</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Roosevelt Township No. 7 School",
            "lat": "42.814086",
            "lon": "-94.525585",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pocahontas-countryschool-rooseveltno7school.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Roosevelt Township No. 7 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.814086,-94.525585\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Roosevelt Township No. 7 School was built in the early 1920s and was located southwest of Rolfe in Roosevelt Township. School children attended classes in the school from first through eighth grade. The school was restored in 2012 and now resides at Striet Park.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t331 Walnut St.<br />Striet Park<br />Rolfe, IA 50520<br />Pocahontas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Tilley Cabin",
            "lat": "42.814093",
            "lon": "-94.525353",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pocahontas-historicsite-tilleycabin.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tilley Cabin</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.814093,-94.525353\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Tilley cabin was built in 1858 by early pioneer, Edward Tilley on his farm. The cabin was moved from the Tilley farm, located one mile from Rolfe, and restored in 1970 by the Rolfe Jaycees and volunteers. The cabin is now located at Streit Park.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t331 Walnut St.<br />Striet Park<br />Rolfe, IA 50520<br />Pocahontas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Blackhawk Hotel",
            "lat": "42.537246",
            "lon": "-92.445666",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Blackhawk Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.537246,-92.445666\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Blackhawk Hotel, located in downtown Cedar Falls, is the oldest continuously-operating hotel in the state of Iowa. It was built in 1884 and has a distinctive mansard roof.  It is one of the most original buildings in downtown Cedar Falls. By 1914, the hotel was in need of updating and regional architect  John G. Ralston was hired to make updates to the hotel. Ralston made the interior more efficient and modern by redesigning the lobby to be more open and expansive and covering the original metal columns with oak.  Ralston also designed many of the school buildings in Waterloo. Blackhawk Hotel was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 Main St.<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.blackhawk-hotel.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Little Red Schoolhouse Museum",
            "lat": "42.538239",
            "lon": "-92.447072",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Little Red Schoolhouse Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.538239,-92.447072\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Little Red Schoolhouse is a 1909 one-room schoolhouse. At one time, Iowa had more than 9,000 one-room schoolhouses - this one was moved in to Cedar Falls from rural Bennington Township. The Behrens-Rapp Filling Station now a Visitor Center. Both properties are maintained by the Cedar Falls Historical Society.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW 1st St.<br />Sturgis Park<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.266.5149</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Oster Regent Theatre",
            "lat": "42.537653",
            "lon": "-92.445663",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-theater-osterregenttheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oster Regent Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.537653,-92.445663\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Cedar Falls Community Theatre is a hip, fun and happening place to be for live performance in the Midwest. Great plays are performed live on stage throughout the year. Some are musicals and many are great comedies and farces that have proven to be hits. Originally known as the Cotton Theatre, this traditional theatre was built in 1910. The Cotton Theatre is one of the best examples of commercial architecture on Cedar Fall&#039;s Main Street and the only extant theatre. It is representative of the Italian Renaissance Style, an early 20th century revival. The Cotton Theatre was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t103 Main St.<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.277.5283</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.osterregent.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Redman Barn",
            "lat": "41.011793",
            "lon": "-93.816819",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clarke-barn-redmanbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Redman Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.011793,-93.816819\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn was built in 1916 and has been owned by two different families. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2034 205th Ave.<br />Osceola, IA 50213<br />Clarke County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Viking Pump Museum",
            "lat": "42.534742",
            "lon": "-92.444071",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Viking Pump Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.534742,-92.444071\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Viking Pump Museum showcases over a century of history of Viking Pump Company history. Viking Pump was founded by P. C. Peterson (a machinist), W.L. Hearst (a doctor) and George Wyth (a shoe salesman) to form the Viking Pump Company. It was so named because three of the four were of Danish descent, and they likened the first internal gear pump to the notion that the Vikings were the first European explorers of North America. In that year they manufactured fifty pumps, which generated revenues of two thousand dollars.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t406 State St.<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.266.1741</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Jumbo Well Site",
            "lat": "41.892237",
            "lon": "-92.276459",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-historicunique-jumbowellsite.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jumbo Well Site</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.892237,-92.276459\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1886, the City of Belle Plaine hired a contractor from Monticello, William Weir, to drill an artesian well. The well would provide water and fire protection for the south side of town. Weir was paid $175.00 to drill the well. All did not go as planned, and the well became a real gusher! More than 3,000 gallons of water per minute spewed from it! Weir couldn&#039;t cap the well and left town. For fourteen months, &quot;Jumbo&quot; flowed uncontrolled. It was labeled the &quot;Eighth Wonder of the World&quot; and made news as far away as Europe.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t8th St. and 8th Ave.<br />Belle Plaine, IA 52208<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Belle Plaine Main Street Historic District",
            "lat": "41.896292",
            "lon": "-92.276581",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-historicdistrict-belleplainemainstreethistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Belle Plaine Main Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.896292,-92.276581\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>In July 1894, a fire devastated downtown Belle Plaine. Five solid blocks, home to nearly 80 businesses, were destroyed! In the months following the disaster, 35 new downtown buildings were constructed. The community celebrated this accomplishment with a celebration on December 20, 1894. Additional buildings were constructed on the remaining burned out sites in 1895. About two decades later, the Lincoln Highway (America’s first transcontinental highway) was routed directly through Belle Plaine’s Main Street. The local economy benefited from Lincoln Highway travelers from 1913 through 1936. In the early 2000s, historic preservationists realized the value of Belle Plaine’s historic Main Street, including the former Hart Memorial Library, the Chicago and North Western Railroad Depot and Freight House, and a small section of railroad track. The Belle Plaine Main Street Historic District, centered around Main Street and bounded by 7th and 9th Avenues and 11th and 13th Streets, was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St. and 8th Ave.<br />Belle Plaine, IA 52208<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Pocahontas County",
            "lat": "42.813051",
            "lon": "-94.532997",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Pocahontas County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.813051,-94.532997\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pocahontas County Freedom Rock® in Rolfe is located on the property of Dan and Roger Allen, hosts to the artist. The front features an eagle laying the flag on the rock. The back side honors Vietnam veterans, specifically a few the Allen brothers know who&#039;ve earned the purple heart. The Pocahontas County (Rolfe) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRolfe, IA 50581<br />Pocahontas County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "King Theatre",
            "lat": "41.896376",
            "lon": "-92.277284",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-theater-kingtheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">King Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.896376,-92.277284\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The King Theatre anchors Belle Plaine&#039;s historic Main Street. The Theatre was built by Milton and Sara Mansfield in 1930. The Mansfields had arrived in Belle Plaine in 1927 and operated the Rivola and Strand Theatres prior to opening the King. In the 1950s, a new marquee was installed and main floor seating was reduced from 750 to 300 seats. As of 2015, the King Theatre was still operated by Mansfield&#039;s descendants.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t720 Main St.<br />Belle Plaine, IA 52208<br />Benton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.434.6025</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sankot Motor Company",
            "lat": "41.896978",
            "lon": "-92.276101",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-nhr-sankotmotorcompany.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sankot Motor Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.896978,-92.276101\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sankot Garage is from an era when paved roads made all season travel increasingly possible and services for travelers developed beside America’s first transcontinental route - the Lincoln Highway. The route ran right through Belle Plaine from 1913-1937. The Sankot Garage was used for selling Chrysler cars and car part, rebuilding cars and providing battery operated radios until 1937. In the peak period of the Lincoln Highway, the garage was open 24 hours, offered a wrecking service and a late night meeting place for the surrounding small towns. From 1920 through 1944, the Sankot Garage sold gasoline. From 1937 through 1985, the building was used for repairing autos, trucks and farm equipment, and for selling Case and Oliver tractors. Since 1985, the building has been used for the repair of autos, trucks, farm tractors and farm implements. It was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t807 13th St.<br />Belle Plaine, IA 52208<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Frank E. and Katie (Cherveny) Zalesky House",
            "lat": "41.892373",
            "lon": "-92.275233",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-nhr-frankeandkatiechervenyzaleskyhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Frank E. and Katie (Cherveny) Zalesky House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.892373,-92.275233\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Frank E. Zalesky was the proprietor of the Pioneer meat-market in Belle Plaine. He was originally from Bohemia, but came to Iowa in 1867. His home was built around 1872, and is considered significant as the embodiment of the Second Empire style in residential architecture. It was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t802 9th Ave.<br />Belle Plaine, IA 52208<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Belle Plaine Area Museum",
            "lat": "41.896161",
            "lon": "-92.274766",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-historymuseum-belleplaineareamuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Belle Plaine Area Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.896161,-92.274766\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Belle Plaine Area Museum details the history of the area, including Benton, Iowa, Tama and Poweshiek counties. Major exhibits feature the Chicago and North Western Railroad and the Lincoln Highway. Two historical Belle Plaine events showcased are the 1886 Jumbo Well, an artesian well that spewed water uncontrollably for fourteen months, and the 1894 Great Fire. A large brick relief depicting local historical events is on the west exterior wall of the museum. In 2012, the Henry B. Tippie Annex opened at the Belle Plaine Area Museum. The Annex tells the story of Tippie, a Belle Plaine native who became a shrewd and successful businessman.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t901 12th St.<br />Belle Plaine, IA 52208<br />Benton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.444.6093</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.bpiowahistory.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Eveland Bridge",
            "lat": "41.242787",
            "lon": "-92.756473",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Eveland Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.242787,-92.756473\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1877 as a wagon crossing, the Eveland Bridge is a heavy iron truss bridge with stone abutments and piers. The bridge is historically significant because it served regional commerce for some 90 years before its closure. It is further historically significant as a large-scale example of the Whipple through truss which was seldom used in the state. The Eveland Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tFulton Ave.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Nelson Pioneer Farm and Museum",
            "lat": "41.332346",
            "lon": "-92.621452",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-historymuseum-nelsonpioneerfarmandmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nelson Pioneer Farm and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.332346,-92.621452\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Nelson Pioneer Farm and Museum is located on the site of the Daniel Nelson House and Barn, which was added to the National Register of Historic Places in 1974. The Nelson home, built in 1853, and the Nelson barn, built in 1856, are the focal points of the museum, in addition to historic buildings from Mahaska County.The museum grounds feature historic buildings from all over Mahaska County, providing visitors a glimpse of what life was like for Iowans in 19th century America. The main museum houses several exhibits, including a quilt display, Indian artifacts, miniature wooden circus and military memorabilia.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2211 Nelson Ln.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.672.2989</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://nelsonpioneer.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "J. T. and Mollie Crozier Residence",
            "lat": "41.025689",
            "lon": "-93.302989",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-nhr-jtmolliecozierresidence.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J. T. and Mollie Crozier Residence</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.025689,-93.302989\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The J. T. and Mollie (Penrose) Crozier Residence has local significance as the earliest identified residential design by William L. Perkins in Chariton, and as a good example of popular early 20th Century American design with strong Craftsman and Prairie School influences. The J. T. and Mollie Crozier Residence was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t615 Ilion Ave.<br />Chariton, IA 50049<br />Lucas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Stock Judging Pavilion",
            "lat": "41.301190",
            "lon": "-92.658829",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-stockjudgingpavilion\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stock Judging Pavilion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.301190,-92.658829\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1919, the Stock Judging Pavilion is a polygonal structure with 14 sides. It is of local significance because of its architecture and its ties to agriculture. The structure was designed by P. W. Sparks and was host to many local agricultural fairs. The pavilion is a rare form on Iowa fairgrounds and its large scale reflects the prosperity of south-central Iowa during the Golden Age of Midwestern farming. The Stock Judging Pavilion was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tG Ave.<br />Southern Iowa Fairgrounds<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Mount Pisgah Park",
            "lat": "41.050708",
            "lon": "-94.100299",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mount Pisgah Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.050708,-94.100299\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Mount Pisgah was a semi-permanent camp for Mormons on their trek from Nauvoo, Illinois, to Salt Lake City, Utah. Iowa Governor Robert Lucas granted permission for the Mormons to enter Iowa, and in May 1846 they established a settlement on the Grand River. This became known as Mount Pisgah, as apostle Parley P. Pratt said it reminded him of biblical Pisgah. Between 1846 and 1852, over 2,000 people lived at Mount Pisgah, and some just passed through as they moved west. Even people heading for the Gold Rush in California would stop for supplies. Little remains from the community, except a cemetery where 300 to 800 emigrants were buried. There is also reproduction Mormon cabin on the nine acre site, and visible wagon tracks.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1704 Mount Pisgah Road<br />Thayer, IA 50254<br />Union County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Penn College Historic District",
            "lat": "41.308441",
            "lon": "-92.646727",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-penncollegehistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Penn College Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.308441,-92.646727\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed between 1916 and 1923, the Penn College Historic District is significant statewide because it calls attention to evens and patterns associated with Quakers within the historic context “The Quaker Testimony in Oskaloosa, Iowa.” This District is significant because it calls attention to an architectural concept plan for an entire collegiate campus, as well as construction plans for individual buildings within this campus, all designed by the same architect, A. T. Simmons of Bloomington, IL. The Penn College Historic District was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 W Trueblood Ave.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dr. Ella Stokes House",
            "lat": "41.305512",
            "lon": "-92.649742",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-drellastokeshouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. Ella Stokes House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.305512,-92.649742\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1910 as a single-family dwelling, this property possesses historic significance by calling attention to events and patterns associated with Penn College within the historic context “The Quaker Testimony in Oskaloosa, Iowa.” Dr. Stokes was one of the longest serving members of the Penn College faculty--more than four decades--and for more than half this time she resided here. The Dr. Ella Stokes House was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t416 College Hill St. W<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dr. William H. and Mae R. Klose House",
            "lat": "41.306386",
            "lon": "-92.647964",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-drwilliamhandmaerklosehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. William H. and Mae R. Klose House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.306386,-92.647964\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1924, this property possesses historic significance because it calls attention to events and patterns associated with Penn College. The Klose House calls attention to the teaching career of Dr. Klose at Penn College, one of the twenty longest serving members of that institution. The Dr. William H. and Mae R. Klose House was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1002 Penn Blvd.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Pierson-Betts House",
            "lat": "41.305515",
            "lon": "-92.648507",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-piersonbettshouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pierson-Betts House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.305515,-92.648507\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built over the period of several years in the 1930s as a single-family dwelling, this property possesses a twofold historical significance in calling attention to events and patterns associated with Penn College and the historic context of “The Quaker Testimony in Oskaloosa, Iowa.” As an early house within Penn College Addition it illustrates the role of Lewis B. Pierson, an employee of Penn College, in the development of that area. The Pierson-Betts House was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t815 Penn Blvd.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "President&#039;s Cottage",
            "lat": "41.303740",
            "lon": "-92.650286",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-presidentscottage.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">President&#039;s Cottage</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.303740,-92.650286\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1892, the President’s Cottage possesses historical significance because it calls attention to events and patterns associated with Penn College and its administration and faculty. The siting of the building on a corner lot at the end of College Avenue furthered the linear configuration of the college campus. The President&#039;s Cottage was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t425 College Ave.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Professor Edgar H. and Irene D. Stranahan House",
            "lat": "41.306394",
            "lon": "-92.647203",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Professor Edgar H. and Irene D. Stranahan House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.306394,-92.647203\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1923 as a single-family dwelling, this property possesses historic significance because it calls attention to events and patterns associated with the administration and faculty of Penn College within the context of “The Quaker Testimony in Oskaloosa, Iowa.” Edgar H. and Irene D. Stranahan were two of the longest serving members of the faculty at Penn College. The house is also significant because it illustrates a process by which new homes were constructed locally in Oskaloosa during the first quarter of the 20th Century. The Professor Edgar H. and Irene D. Stranahan House was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1001 Gurney St.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dr. William E. and Ethel Rosenberger Berry House",
            "lat": "41.305991",
            "lon": "-92.646727",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-drwilliameandethelrosenbergerberryhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. William E. and Ethel Rosenberger Berry House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.305991,-92.646727\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1924 as a single-family dwelling, the Dr. William E. and Ethel Rosenberger Berry House possesses historic significance to the Quaker roots of Penn College. Within the historic context “The Quaker Testimony in Oskaloosa, Iowa,” this house calls attention to events and patterns associated with the administration and faculty of Penn College. The house was the residence of two long-time employees of the institution. The Dr. William E. and Ethel Rosenberger Berry House was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t116 Rosenberger Ave.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Oskaloosa Monthly Meeting of Friends Parsonage",
            "lat": "41.303101",
            "lon": "-92.648464",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-oskaloosamonthymeetingoffriendsparsonage.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oskaloosa Monthly Meeting of Friends Parsonage</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.303101,-92.648464\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1915 as a single-family dwelling, this property possesses historic significance because it calls attention to events and patterns associated with Quaker religious institutions within the historic context of “The Quaker Testimony in Oskaloosa, Iowa.” The entry of the United States into World War I and World War II posed serious questions to the Quakers’ traditional “Peace Testimony.” In retaliation to the counseling of Penn students about military conscription and pacifism, a series of criminal acts occurred in 1917. The property also possesses architectural significance because it calls attention to A. T. Simmon’s influence on Quaker architecture in Oskaloosa. The Oskaloosa Monthly Meeting of Friends Parsonage was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t910 N C St.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Spurgin Residence",
            "lat": "41.303791",
            "lon": "-92.648009",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-spurginresidence.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spurgin Residence</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.303791,-92.648009\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1895 as a single-family dwelling, the Spurgin Residence possesses historic significance because it calls attention to events and patterns associated with Penn College within the historic context “The Quaker Testimony in Oskaloosa, Iowa.” The Spurgin Residence illustrates the importance of domestic science within Penn College’s curriculum during the first decades of the 20th Century and the significant role it played in the traditional education of women in this institution. It is also significant because its siting contributed to the Yale Row configuration of Penn College’s old-site campus. The Spurgin Residence was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t313 College Ave.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William A. and Ida C. Johnson House",
            "lat": "41.303787",
            "lon": "-92.647794",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-williamaandidacjohnsonhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William A. and Ida C. Johnson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.303787,-92.647794\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1910 as a single-family dwelling, this property possesses historic significance because it calls attention to families contributions from William to Penn College as a philanthropist and as a member of the Board of Trustees. The William A. and Ida C. Johnson House was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t307 College Ave.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Hartman Reserve Nature Center",
            "lat": "42.522919",
            "lon": "-92.414075",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hartman Reserve Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.522919,-92.414075\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 300+ acre wooded isle boasts the Hartman Interpretive Center and six miles of trails leading to the lakes, prairies, forest, the Cedar River and the American Discovery Trail.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t657 Reserve Dr.<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.277.2187</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.hartmanreserve.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Washington Township Round Barn",
            "lat": "42.585468",
            "lon": "-92.460854",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Washington Township Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.585468,-92.460854\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The clay tile exterior wall, silo wall, and water tank characterize this barn as an Iowa Agricultural Experiment Station and Matt King design type. The use of clay tile was one of the later improvements in the history of round barns, believed to have been introduced, around 1910, by the Iowa Agricultural Experiment Station. This barn was originally built as a dairy barn. It was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Mt. Vernon Rd.<br />Janesville, IA 50647<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Cherry Street Bridge",
            "lat": "42.707895",
            "lon": "-92.585636",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/butler-nhr-bridge-cherrystreetbridge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cherry Street Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.707895,-92.585636\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cherry Street Bridge was designed by the Iowa State Highway Commission and built by A. Olson Construction Company from Waterloo in 1929. It is a well-preserved example of large-scale concrete arch design. The continues to carry traffic over a tributary of the Shell Rock River, and was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCherry St.<br />Shell Rock, IA 50670<br />Butler County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Plow in the Oak",
            "lat": "41.574090",
            "lon": "-94.896527",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/audubon-historicsite-plowintheoak-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Plow in the Oak</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.574090,-94.896527\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Plow in the Oak is a popular attraction and local legend for Audubon County. The story goes that a young farmer by the name of Frank Leffingwell left his plow leaning against a bur oak sapling when he left to fight in the Civil War, believing he would get it when he returned. Having not returned, the tree eventually grew around the oak and only a small part of the plow if visible today.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUS Hwy. 71<br />Plow in the Oak Park<br />Exira, IA 50076<br />Audubon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Lincoln School",
            "lat": "41.297504",
            "lon": "-92.655098",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-lincolnschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lincoln School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.297504,-92.655098\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lincoln School building is significant because it is representative of the late work of Wetherell and because of the richness of the architectural detailing. It also represents a new type of school building. William Wagner (member of the Wetherell firm from 1960 until his retirement in the late 1980&#039;s) says that this building was the first modern single story school built in the State. The Lincoln School was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t911 B Ave. W<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chicago, Burlington and Quincy Railroad: Chariton Freight House",
            "lat": "41.018507",
            "lon": "-93.310605",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-nhr-chicagoburlingtonqunicy-charitondepot.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago, Burlington and Quincy Railroad: Chariton Freight House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.018507,-93.310605\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Completed in 1904, the freight house calls attention to the &quot;Golden Age of Railroading&quot; in Iowa and its effects on the commercial growth of Chariton as a southern Iowa wholesale and distribution center. The Chicago, Burlington, and Quincy Freight House--Chariton was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBrookdale Ave.<br />Chariton, IA 50049<br />Lucas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowa Yearly Meeting House: College Avenue Friends Church",
            "lat": "41.302565",
            "lon": "-92.648752",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-iowayearlymeetinghousecollegeavenuefriendschurch.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Yearly Meeting House: College Avenue Friends Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.302565,-92.648752\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built between 1912 and 1913, this property possesses historical significance because it calls attention to events and patterns associated with Quaker religious institutions within the context “The Quaker Testimony in Oskaloosa, Iowa.” This building is also architecturally significant for being an outstanding local example of Colonial Revival architecture. The siting of this building is of further architectural significance because it calls attention to A.T. Simmons’ concept plan for the new Penn College campus. The Iowa Yearly Meeting House -- College Avenue Friends Church was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t912 N C St.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Thomas J. and Cassa Mae Conover House",
            "lat": "41.304059",
            "lon": "-92.644962",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-thomasjconoverhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thomas J. and Cassa Mae Conover House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.304059,-92.644962\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1910, the Conover House is significant to the history of Penn College and women’s history among Oskaloosa Quakers. The house calls attention to the difficulty that woman employed in higher education had when it came to buying a home. Cassa Mae Conover lived in the house from 1925 to 1937 and taught at the college. Despite years of service to the school, she was unable to purchase a house due to the pay difference between men and women at the college at the time. The Thomas J. and Cassa Mae Conover House was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1010 N Market St.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Peter and Paul Catholic Church",
            "lat": "42.734675",
            "lon": "-94.670347",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pocahontas-nhr-stpeterpaulcatholicchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Peter and Paul Catholic Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.734675,-94.670347\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Peter and Paul Catholic Church was built in 1883 an originally located at the Calvary Cemetery on the east edge of Pocahontas. The church was moved to its present location to make it within walking distance for townspeople. In 1895, an addition of 1,600 square feet was built and the bell tower remodeled, which holds two bells, Joseph and Agnes. Joseph is also a tolling bell. The church was the first Roman Catholic church in the county and was founded by Bohemian pioneers. Some of the immigrants arrived directly from their native Bohemia; others made stops in Chicago, Illinois; Tama, Johnson and Winneshiek counties in Iowa, before settling as early as 1870 in &quot;Pocahontas Center&quot; (Pocahontas) and in the surrounding townships. The church was added to the National Register of Historic Places on March 1, 1994.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t16 2nd Ave. NW<br />Pocahontas, IA 50574<br />Pocahontas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Rialto Theater",
            "lat": "42.736015",
            "lon": "-94.668587",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pocahontas-theater-newrialtotheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rialto Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.736015,-94.668587\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rialto Theater was opened in 1939, to replace the Old Rialto Theater on 29 3rd Ave. NE. The theater was sold in 1961. The New Rialto was closed from 1980-1995 and was extensively remodeled prior to re-opening. It remains in operation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t324 N Main St.<br />Pocahontas, IA 50574<br />Pocahontas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Lucas County Historical Museum",
            "lat": "41.015555",
            "lon": "-93.319654",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-nhr-lucascountyhistoricalmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lucas County Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.015555,-93.319654\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lucas County Historical Museum is a collection of historical buildings that serve as the local history museum. The museum began in the A.J. Stephens House, which is listed on the National Register of Historic Places. On the museum grounds visitors can also view the Otter Creek No. 3 Schoolhouse, known locally as Puckerbrush. The school was built in 1869 on Pleasant Ridge in Otter Creek Township and was the last country school to be consolidated into the Chariton Community School District, remaining in use until 1963. Near the schoolhouse is the Otterbein Church. Built in 1889, this country church was mother church for the United Brethren Church in Chariton.     And that&#039;s not all - the museum also has a pioneer log cabin from Liberty Township, and reproductions of a pioneer barn and blacksmith shop.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t123 N 17th St.<br />Chariton, IA 50049<br />Lucas County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.774.4464</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://lucascountyhistoricalsociety.blogspot.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "James Greer McQuilkin Round Barn",
            "lat": "42.268286",
            "lon": "-92.280433",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-nhr-jamesgreermcquilkinroundbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James Greer McQuilkin Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.268286,-92.280433\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This is one of the three barns thought to have been sold by James McQuilkin in his role as a representative of the Johnson Brother’s Clay Works. This barn is specifically characterized as a Johnston Brothers’ sub-type due to its use of structural clay tile. The barn was originally used as a cattle barn.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t52nd St. and 11th Ave.<br />Mount Auburn, IA 52313<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "George Edwin Taylor House",
            "lat": "41.298980",
            "lon": "-92.650100",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a92667b02626a0186.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Edwin Taylor House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.298980,-92.650100\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>George Edwin Taylor (1857-1925) arrived in Oskaloosa in 1891, establishing himself as a national advocate for racial equality. He served as president of the National Colored Men&#039;s Protective Association of America, a precursor to the NAACP. Census records indicate that Taylor lived in this house with his wife Cora beginning as early as 1900.\r\n\r\nTaylor wrote frequently on politics and issues related to African Americans and published a newspaper called the Negro Solicitor. He frequently aligned himself with the Populist faction in the Democratic Party, but in 1904 he joined the National Liberty Party, the first national political party created exclusively for and by African Americans. At their 1904 convention, party members selected Taylor as their presidential candidate to run against incumbent Theodore Roosevelt.\r\n\r\nTaylor lived in other communities in Iowa, including Coalfield, Albia, Oskaloosa and Ottumwa, but this is believed to be the only remaining structure associated with him.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t409 N D St.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "O. E. Payne House",
            "lat": "41.018354",
            "lon": "-93.303777",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-nhr-oepaynehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">O. E. Payne House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.018354,-93.303777\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The O. E. Payne House is significant for its architecture. The house was built in the shape of a “Y” and its 45 degree orientation to the street constitutes a novel and unusual approach to the design of the cottage. The home was built for O. E. Payne, but very little is known about Payne. The O. E. Payne House was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t705 Auburn Ave.<br />Chariton, IA 50049<br />Lucas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Pocahontas County Courthouse",
            "lat": "42.737080",
            "lon": "-94.668858",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pocahontas-nhr-pocahontascountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pocahontas County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.737080,-94.668858\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pocahontas County Courthouse is a three-story classical revival design by architects Proudfoot, Bird and Rawson. It was built using brick and Bedford limestone in 1923. The Pocahontas County Courthouse was added to the National Register of Historic Places on July 2, 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCourthouse Square<br />Pocahontas, IA 50574<br />Pocahontas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First United Methodist Church",
            "lat": "41.016933",
            "lon": "-93.308152",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-nhr-firstunitedmethodistchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First United Methodist Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.016933,-93.308152\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First United Methodist Church, built in 1900, is locally significant as a fine unaltered example of turn of the century Gothic Revival design by well-known Illinois architect, Samuel A. Bullard. The First United Methodist Church was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t923 Roland St.<br />Chariton, IA 50049<br />Lucas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Ed Sextro Crib",
            "lat": "41.949939",
            "lon": "-95.039889",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/carroll-barn-sextrocrib.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ed Sextro Crib</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.949939,-95.039889\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This landmark corn crib was built early 1900s and is one of the oldest cribs in the area. The late Mr. Sextro cared so much about this crib that it was the cover of his funeral program. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t12708 280th St.<br />Manning, IA 51455<br />Carroll County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Shell Rock Bridge",
            "lat": "42.711518",
            "lon": "-92.581554",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/butler-bridge-nhr-shellrockbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Shell Rock Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.711518,-92.581554\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Shell Rock Bridge is a well-preserved, early example of large-scale concrete arch design. It was added to the National Register of Historic Places in 1999. The bridge was renovated in 2013, but historic character was retained.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCherry St.<br />Shell Rock, IA 50670<br />Butler County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chariton Free Public Library",
            "lat": "41.015769",
            "lon": "-93.305657",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-nhr-charitonfreepubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chariton Free Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.015769,-93.305657\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chariton Free Public Library was built in 1904 is one of 101 Carnegie libraries in the state of Iowa. Carnegie Libraries were built around the state between 1889 and 1919 with grants given by steel magnet Andrew Carnegie. The library was built in Classical Revival design executed in brick and stone by noted Chicago architects Patton and Miller. It has been said that the floor plan used here was so functional that it became known as the &quot;Chariton Plan&quot; and was widely used by Patton and Miller for small and medium size libraries across the Midwest. The Lucas County Genealogical Society houses and exceptional research library on the lower level of the library. Its collection includes a comprehensive collection of newspapers of microfilm, early courthouse records, family histories, census records and more. The Chariton Free Public Library was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t803 E Braden Ave.<br />Chariton, IA 50049<br />Lucas County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.774.5514</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.chariton.lib.ia.us/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chariton Herald-Patriot Building",
            "lat": "41.015717",
            "lon": "-93.306035",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-nhr-charitonheraldpatriot.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chariton Herald-Patriot Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.015717,-93.306035\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72mi.</span></div>\n\t\t</div>\n\n\t\t<p>The newspaper building is locally significant as an example of a “modern” building material, Hydro-Stone. It is also a good example of using simplified Neo-classical design for a commercial building. This building is the earliest known design in Chariton by architect William L. Perkins. The Chariton Herald-Patriot Building was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t815 Braden Ave.<br />Chariton, IA 50049<br />Lucas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lucas County Courthouse",
            "lat": "41.014894",
            "lon": "-93.307566",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-nhr-lucascountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lucas County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.014894,-93.307566\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72mi.</span></div>\n\t\t</div>\n\n\t\t<p>The April 1850 session of the Board of County Commissioners of Lucas County ordered the Building of its first courthouse. This building was constructed out of solid oak logs and was a one and one-half stories high; the second building constructed in 1858 out of brick had a log foundation and two stories high. After about 10 years cracks were beginning to appear in the walls. In 1891 it was condemned, court was held in churches until the present courthouse was built. The cornerstone was laid on May 25, 1893 and completed on February 24, 1894. The Romanesque style courthouse is two stories high, the foundation is four feet thick at the base, and the walls are 18 inches thick and faced with sandstone. The Lucas County Courthouse was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBraden Ave<br />Chariton, IA 50049<br />Lucas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Civil War Monument: Lucas County",
            "lat": "41.014728",
            "lon": "-93.307390",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-monument-civilwarmemonument.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Civil War Monument: Lucas County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.014728,-93.307390\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72mi.</span></div>\n\t\t</div>\n\n\t\t\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCourt Ave.<br />Lucas County Courthouse<br />Chariton, IA 50049<br />Lucas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hotel Charitone",
            "lat": "41.015717",
            "lon": "-93.306670",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-nhr-hotelcharitone.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Charitone</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.015717,-93.306670\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hotel Charitone was built in 1923, and is locally significant as one of five major designs in Chariton by local architect William Perkins. The house as a good example of Neo-Classical design used for a commercial building, and because it appears to have been the first steel frame building in Chariton. The building is also significant as it illustrates the commercial development of Chariton and the need for quality housing the traveling public as well as providing a major center for community life. The Hotel Charitone was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t831 Braden Ave.<br />Chariton, IA 50049<br />Lucas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Shell Rock Mill",
            "lat": "42.712021",
            "lon": "-92.581394",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/butler-historicsite-shellrockmill.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Shell Rock Mill</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.712021,-92.581394\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Shell Rock Mill was built by the town&#039;s founder in 1867. It was in operation until 1978. From the exterior, you can still see the unique mill stones and turbines. The mill has been restored and is now a private residence. Tours are welcome by appointment.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t103 N Cherry St.<br />Shell Rock, IA 50670<br />Butler County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.885.6213</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.butlercountyiowa.com/historyattractions.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Carl L. Caviness Post No. 102, American Legion",
            "lat": "41.013118",
            "lon": "-93.308691",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-nhr-carlcavinessamericanlegion.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carl L. Caviness Post No. 102, American Legion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.013118,-93.308691\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Carl L. Caviness American Legion Hall was designed by local architect William Perkins and built in 1925. The local American Legion, Post 102, was organized in July 1919 and named for a member of the Rainbow (42nd Infantry) Division who was the first Lucas County man to die in action during World War I. According to the Chariton Leader, published on July 17, 1919, the organizational meeting of the post &quot;was well attended by the men in the military and naval service during the great war and all were enthusiastic concerning the movement to make the post situated in Lucas County one of the big active posts of the state.&quot; The Carl L. Caviness American Legion Hall was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 S Main St.<br />Chariton, IA 50049<br />Lucas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chariton City Hall and Fire Station",
            "lat": "41.013862",
            "lon": "-93.308627",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-nhr-charitoncityhall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chariton City Hall and Fire Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.013862,-93.308627\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chariton City Hall and Fire Station was built in 1931, and is locally significant as a design by Chariton architect William Perkins and as a good example of a public building with Neo-Classical elements. It is also significant because it illustrates the growth of the county seat over the years, and the importance attached to public facilities. The Chariton City Hall and Fire Station was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 S Main St.<br />Chariton, IA 50049<br />Lucas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Forest Cemetery",
            "lat": "41.303451",
            "lon": "-92.634494",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-forestcemetery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Forest Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.303451,-92.634494\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Forest Cemetery Entrance is a wall of grey Barre granite constructed in 1915. The entrance is significant because it illustrates the broad range of Frank E. Wetherell’s design activities. The Forest Cemetery Entrance was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN 9th St.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Shell Rock Community Historical Museum",
            "lat": "42.712701",
            "lon": "-92.578830",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/butler-historymuseum-shellrockcommunityhistoricalmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Shell Rock Community Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.712701,-92.578830\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Shell Rock Community Historical Museum is located in a well-preserved bungalow house built in 1919 and originally owned by Charles H. and Theresa H. McBride. The house was saved from demolition in 2006 and added to the National Register of Historic Places in 2011. The interior has remained virtually intact with distinctive features including a built-in China cabinet, original electrical fixtures, oak floors, and pocket doors. The Museum&#039;s collections speak to Shell Rock&#039;s railroad heritage and the local history reflected in collections from the local school and businesses including class photos and business advertising artifacts.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t127 E Adair St.<br />Shell Rock, IA 50670<br />Butler County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.885.4478</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.butlercountyiowa.com/historyattractions.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles H. and Theresa H. McBride Bungalow",
            "lat": "42.712624",
            "lon": "-92.578835",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/butler-nhr-charlesmcbridehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles H. and Theresa H. McBride Bungalow</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.712624,-92.578835\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The bungalow and its associated matching garage are well-preserved and excellent examples of the bungalow style house from 1919. Bungalows with matching garages are rare anywhere. It was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t127 E Adair St.<br />Shell Rock, IA 50670<br />Butler County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chariton Masonic Temple",
            "lat": "41.012383",
            "lon": "-93.306482",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-nhr-charitonmasonictemple.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chariton Masonic Temple</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.012383,-93.306482\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chariton Masonic Temple was built in 1937, and is locally significant as the last major design in Chariton by local architect William Perkins, and as a fine example of Art Deco design executed in stone and brick. The Chariton Masonic Temple was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t821 Armory Ave.<br />Chariton, IA 50049<br />Lucas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John H. Shoemake House",
            "lat": "41.293351",
            "lon": "-92.646043",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-johnhshoemakehouse-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John H. Shoemake House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.293351,-92.646043\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Shoemake House is one of two surviving “I-house” designs from the period of original settlement in Mahaska County. The house is a good example of early vernacular architecture influenced by the Federal style. It is the only surviving example of this plan type, executed in brick, in Oskaloosa. The John H. Shoemake House was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t116 2nd Ave W<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mahaska County Courthouse",
            "lat": "41.295161",
            "lon": "-92.643966",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-mahaskacocourthouse-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mahaska County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.295161,-92.643966\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1886 in the Victorian Romanesque style, the tower and lower entrance was reworked in art deco style in 1934. The courthouse is locally significant as the historic center of power and prestige in Mahaska County. The Mahaska County Courthouse was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t199 S 1st St.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Oskaloosa City Hall",
            "lat": "41.293685",
            "lon": "-92.644839",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-oskaloosacityhall-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oskaloosa City Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.293685,-92.644839\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Oskaloosa City Hall is significant as a good example of Wetherell&#039;s public buildings from the early 20th Century, and demonstrates his interest in a variety of styles, using Renaissance Revival here, and Neo-Classical and Tudor Revival for other public buildings. The Oskaloosa City Hall was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t220 S Market St.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Oskaloosa City Park and Bandstand",
            "lat": "41.294876",
            "lon": "-92.644463",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-oskaloosacitypark-7.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oskaloosa City Park and Bandstand</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.294876,-92.644463\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Oskaloosa City Park and Band Stand call thematic attention to music. The magazine FORTUNE noted in 1938 that “in Oskaloosa a good deal of time is spent on music.” Vocal music has a long tradition in Mahaska County, due to the Welsh who came to mine coal and brought along their festivals. The Band Stand was designed in 1911 by Frank E. Wetherell and constructed in 1912. The design can be best termed early 20th Century eclectic as it bends Craftsman, Art Nouveau, and neo-classical styles into a unified whole. The Band Stand is distinguished from other Iowa band stands by the early use of durable materials such as concrete, iron, and steel and also by the design of a prominent architect. The Oskaloosa City Park and Bandstand was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCity Square Park<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Oskaloosa Fire Station",
            "lat": "41.293646",
            "lon": "-92.644570",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-oskaloosafirestation-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oskaloosa Fire Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.293646,-92.644570\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Oskaloosa Fire Station is significant as a good example of Wetherell&#039;s public building design from the early 20th Century, and illustrates the concept of phased development. This building was designed to be built before the City Hall, but the two were to be identical. The Oskaloosa Fire Station was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t109 2nd Ave. E<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Oskaloosa Public Library",
            "lat": "41.293311",
            "lon": "-92.645207",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-oskaloosapubliclibrary-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oskaloosa Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.293311,-92.645207\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Oskaloosa Public Library is significant as a good example of library design from the early 20th Century. It is major early work by Wetherell and illustrates his public building designs from the period as noted in the &quot;Works of Frank E. Wetherell: 1892-1931&quot; context. Wetherell selected for this building the Neo-Classical style that was thought to be dignified and appropriate for such a public structure. This is the same style that was used by Chicago architects Patton and Miller for many of the libraries they designed across the Midwest. The Oskaloosa Public Library was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 S Market St.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Oskaloosa City Square Commercial Historic District",
            "lat": "41.294888",
            "lon": "-92.645061",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-historicdistrict-oskaloosacitysquare-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oskaloosa City Square Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.294888,-92.645061\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The central commercial area of Oskaloosa has long been and remains the focus of the community and the county. 1902, 1910, and 1917 maps of the district record increasing commercial development and density particularly along the streets tangent to the square. 1909 saw the construction of the new Fire Department building along East Second Avenue in the block just south of the square. In 1911, the City Hall was added to the west. Nearly every building in the first two blocks of High Avenue West in 1910 was a two- or three-story brick commercial building; nearly half in the third block were also brick. With a concentration of commercial buildings to the west and the gracious homes of the town’s prominent citizens to the east, High Avenue was still Oskaloosa’s “Main Street.” Like most commercial districts in Victorian-era Iowa, much of the construction work was carried you by immigrants or second-generation Americans. The Oskaloosa City Square Commercial Historic District was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCity Square Park<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Oskaloosa Veterans Memorial",
            "lat": "41.294936",
            "lon": "-92.644328",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oskaloosa Veterans Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.294936,-92.644328\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Women&#039;s Relief Corps of Oskaloosa led the effort to install a bronze memorial tablet in the Oskaloosa City Park Square. The Oskaloosa Daily Herald, published on July 9, 1920, reported that the tablet was embellished with a handsome laurel wreath and was inscribed in plain letters: &quot;Dedicated to the Men of our Civil War, Spanish American War and World War, Soldiers, Sailors, Marines and Aviators.&quot;</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS 1st St.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "The Spanish Torpedo",
            "lat": "41.294846",
            "lon": "-92.644618",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-monument-spanishtorpedo-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Spanish Torpedo</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.294846,-92.644618\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in City Square Park, this Spanish Torpedo was taken out of the harbor of Guantanamo in 1899 by Lieutenant Commander Frank F. Fletcher of the U.S. Navy, a native of Oskaloosa. Fletcher  presented it to the city of Oskaloosa as a souvenir of the Spanish American War. It is supposed to be of the same pattern as the one which destroyed the battleship Maine. The torpedo is in position as when loaded and placed in the water.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCity Square Park<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Grant School",
            "lat": "41.297772",
            "lon": "-92.637013",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-grantschool-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grant School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.297772,-92.637013\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Grant Elementary School is significant on the local level as an exceptionally well-preserved design, in the Classical Revival style. The school is also significant for being the first school building in the Oskaloosa reconditioning of its school system. The Grant School was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t715 B Ave. E<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Edmundson Park Historic District",
            "lat": "41.284030",
            "lon": "-92.656149",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-edmundsonparkhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Edmundson Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.284030,-92.656149\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Edmundson Park Historic District is locally significant as a complete, relatively unaltered example of a Depression Era public works project that was part of a much larger program of community planning. The park is also significant as a fine example of landscape design of the period by a noted landscape architect/engineer, Ray Wyrick and as an example of the “rustic architecture” that was promoted by the National Park Service between 1916 and 1942 for use in not only national parks but state, county and local parks as well. The Edmundson Park Historic District was added to the National Register of Historic Places in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tOskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Major James W. McMullin House",
            "lat": "41.294666",
            "lon": "-92.641196",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-jamesmcmullinhouse-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Major James W. McMullin House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.294666,-92.641196\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1882 for Major James W. McMullin who returned to Oskaloosa after the Civil War, the house is a good example of vernacular architecture. The exterior has stylistic Queen Anne details, but its interior is most notable and significant. It features rare, decorative plasterwork, and quality millwork. Although originally designed for brick walls, the house was constructed of clapboard due to material shortages and high prices. The Major James W. McMullin House was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t403 1st Ave. E<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Seeberger-Loring-Kilburn House",
            "lat": "41.295628",
            "lon": "-92.639760",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-seebergerloringkilburnhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Seeberger-Loring-Kilburn House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.295628,-92.639760\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Seeberger-Loring-Kilburn House calls attention to the career of David L. Evans, Master Builder, and to a significant vernacular statement of the Italianate style in Oskaloosa. Evans was born in Wales and immigrated to America at the age of 14. He arrived in Oskaloosa in 1845 via Ohio and St. Louis. This house is the oldest, extant dwelling built by Evans and documented. The architectural belt which surrounds the house separates the Flemish bond construction of the first floor façade from the common bond construction of the second floor façade. The use of this technique as a transition demonstrates the careful attention to detail and skillful craftsmanship characteristic of Evans. The Seeberger-Loring-Kilburn House is a good, vernacular statement of the Italianate style. The belt course and eyebrow windows distinguish the house from the other handful of brick dwellings in the Italianate style in Oskaloosa. The building also calls attention to David Evans’ career and skill as a builder. The Seeberger-Loring-Kilburn House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t509 High Ave. E<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. James Episcopal Church",
            "lat": "41.294265",
            "lon": "-92.641607",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-stjamesepiscopalchurch.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. James Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.294265,-92.641607\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. James Episcopal church is significant as the first Episcopal church designed by Frank E. Wetherell. Built in 1901, it is a good example of Gothic Revival ecclesiastical design from the turn of the 19th Century. Wetherell became well known in later years for his Episcopal churches around the State. The St. James Episcopal Church was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t207 S 3rd St.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Smith-Johnson House and Garage",
            "lat": "41.295536",
            "lon": "-92.637042",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-smithjohnsonhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Smith-Johnson House and Garage</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.295536,-92.637042\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Smith House, although conforming to no particular style, is an unusual expression of vernacular architecture. In terms of mass, it is striking, a compact composition of three blocks of varying height. The brickwork shows great attention to detail. The interior plan is also interesting, the use of four shifting levels adding distinction to an otherwise unremarkable room arrangement. The house was built in 1853 for William T. Smith, coincident with his election as the first Mayor of Oskaloosa. Smith lived in the house until 1865, when it was purchased by Abijah Johnson, a Quaker merchant from Virginia who was possibly drawn to Oskaloosa by the flourishing Quaker colonies in the city and in the city and in the surrounding area. J. Kelly Johnson took over the house about 1870 and lived there until his death in 1894. His son received training at the law school at Ann Arbor (Mich.) and later in Des Moines. After admission to the Iowa bar in 1867, Johnson worked at Eddyville for a year before returning to Oskaloosa. In 1879 he was elected to the Iowa state senate and served in the 18th and 19th General Assemblies. In 1882 he was elected judge in the 6th judicial district and served until his death. J. Kelly Johnson’s son, Irving followed his father’s profession. The Smith-Johnson House and Garage was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t713 High Ave. E<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Fonda Museum",
            "lat": "42.580734",
            "lon": "-94.845747",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pocahontas-historymuseum-fondamuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fonda Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.580734,-94.845747\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fonda Museum is an amazing collection of history. The museum is housed in the former McKey Block and Opera House that was built in 1884. The building was restored by Jan and Gib Alpers, whose collection makes up the extensive displays inside, including antiques relating to old time barber shops, general stores and print shops. Visitors also enjoy music of the past and an antique Fire Engine used in Fonda. Open by appointment only.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t106 Main St.<br />Fonda, IA 50540<br />Pocahontas County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.288.6675</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Paradise Block Historic District",
            "lat": "41.295352",
            "lon": "-92.637376",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-historicdistrict-paradiseblock-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Paradise Block Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.295352,-92.637376\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Paradise Block Historic District is significant because it contains the largest, most intact collection of late 19th and early 20th Century residential design extant in the city of Oskaloosa, and it also contains two churches in the district that are significant in terms of architectural design and materials. Historically this has been a neighborhood of business and professional leaders. There is a cohesive quality in the district in terms of size, design, and material. The Paradise Block Historic District was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t699 High Ave. E<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jack Lamberson House",
            "lat": "41.300317",
            "lon": "-92.627974",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-jacklambersonhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jack Lamberson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.300317,-92.627974\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jack Lamberson House was one of seven Frank Lloyd Wright&#039;s Usonian houses built in Iowa, and one of two Usonians built in Oskaloosa. The house was completed in 1951. This house is unique among the Iowa Usonians for its extensive utilization of 60&#039; and 120&#039; angles and for its evocative, low and sweeping hip-type roof. The Jack Lamberson House was added to the National Register of Historic Places in 1988.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t511 N Park Ave.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Phil Hoffman House",
            "lat": "41.295652",
            "lon": "-92.636189",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-philhoffmanhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Phil Hoffman House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.295652,-92.636189\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Phil Hoffman residence is significant as a good example of the Shingle Style houses Frank Wetherell designed from 1900-1910. It is basically unaltered except for the addition that was designed by Wetherell in 1922. The addition is in keeping with the original style and materials. The Phil Hoffman House was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t807 High Ave. E<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rock Island Passenger Depot",
            "lat": "41.289258",
            "lon": "-92.643313",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-rockislandpassengerdepot.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rock Island Passenger Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.289258,-92.643313\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Oskaloosa Rock Island Passenger Depot, built in 1887-1888, is significant as a good example of a small depot design used by a major railway company in the last quarter of the 19th Century. The Oskaloosa Rock Island Passenger Depot was added to the National Register of Historic Places in 1989.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 Rock Island Ave.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Hawkeye Community College Farm Laboratory",
            "lat": "42.434920",
            "lon": "-92.336426",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hawkeye Community College Farm Laboratory</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.434920,-92.336426\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This college farm lab provides student laboratory activities and cooperative work experiences in farm production and management techniques with 380 acres for crop production and modern facilities for cattle, sheep and swine. The Fennemann Center houses the office, a classroom and a livestock pavilion.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5503 Hammond Ave.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.296.4251</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.hawkeyecollege.edu/about/locations/farm-lab.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Chariton Cemetery Historic District",
            "lat": "41.003876",
            "lon": "-93.308653",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lucas-nhr-charitoncemeterydistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chariton Cemetery Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.003876,-93.308653\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chariton Cemetery Historic District is locally significant as a complete landscape design overseen for over forty years by landscape architect Ray F. Wyrick. In addition, it has architectural significance due to the rustic WPA-constructed cobblestone entrance gateway designed by Wyrick and the English cottage designed by E.H. Best to serve as a combination rest house/shelter and chapel. The period of significance begins with 1924, the year that the city purchased the cemetery and hired Ray F. Wyrick, and ends with 1960, meeting the 50 year requirement for significance. However, Wyrick&#039;s known association with the cemetery extended to 1967. The Chariton Cemetery Historic District was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t929 S Main St.<br />Chariton, IA 50049<br />Lucas County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William A. and Frederick Hassler Leet Farmstead District",
            "lat": "41.905037",
            "lon": "-95.048928",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William A. and Frederick Hassler Leet Farmstead District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.905037,-95.048928\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This historic farmstead consists of a house, garage, barn, scale and hog houses, chicken and boar houses and a corncrib. It was a Poland China Hog farming operation and the residence of the Leet and Hassler families in the early nineteenth century. It is currently being restored to use as an educational exhibit and farmstead museum. It was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t12196 311th St.<br />Manning, IA 51455<br />Carroll County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wilbur A. McNeill House",
            "lat": "41.298217",
            "lon": "-92.627587",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wilbur A. McNeill House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.298217,-92.627587\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Wilbur A. McNeill was wounded twice while he served in the military. After being wounded a second time, he retired. He and his brother bought many coal mines in Monroe and Mahaska Counties and combined them in to the Consolidated Coal Mine, which they sold to the railroad for $500,000.00. After that, the McNeills invested in lead near Dubuque, Iowa, silver in Colorado, gold in the Black Hills of South Dakota and coal in Canada.\r\n\r\nMcNeill married late in life and had this home built for he and his wife. The house was constructed in 1908-1909 and was designed by Hallett and Rawson, one of the state’s leading and most innovative architectural firms in the early 20th century. It is faced with buff Bedford limestone, has three chimneys and six fireplaces. Since it was built of steel and concrete, McNeill believed his residence to be virtually fireproof, energy efficient and soundproof.\r\n\r\nThe McNeill House was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1282 C Ave. E<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Manning Hausbarn Heritage Park",
            "lat": "41.905345",
            "lon": "-95.051064",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/carroll-historymuseum-hausbarnheritagepark.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Manning Hausbarn Heritage Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.905345,-95.051064\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Manning Hausbarn Heritage Park is a park dedicated to the German settlers that founded the area. The park contains a look back into a traditional 1600s German settlement, including the Leet/Hassler Farmstead (National Register of Historic Places), the Hausbarn (built in 1660 in Schleswig-Holstein, Germany, and the Trinity Church.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t12196 311th St.<br />Manning, IA 51455<br />Carroll County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.655.3131</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://germanhausbarn.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Carroll County",
            "lat": "41.906081",
            "lon": "-95.053864",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Carroll County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.906081,-95.053864\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Carroll County Freedom Rock® in Manning features a train trestle that still operates in Manning. The Milwaukee trestle was so important during World War II that there were guards posted at it to protect it from attacks. On the east side is an eagle carrying a shield with a quote on it. The south side of the rock depicts the homefront, a police officer, a nurse, a fireman and a combine (farmer). The west side features each branch of the military. The Carroll County (Manning) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t517 East St.<br />Willow Creek Park<br />Manning, IA 51455<br />Carroll County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Carroll Alsop House",
            "lat": "41.296772",
            "lon": "-92.622996",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-carrollalsophouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carroll Alsop House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.296772,-92.622996\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">72.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>One of seven Frank Lloyd Wright Usonian houses built in Iowa, and one of two Usonians built in Oskaloosa. The direct influence of this house and the Wright-designed Lamberson House on local residential design was documented in a feature article of the March 1958 House and Home in which these two convention-breaking houses were credited with starting a &quot;...homebuilding revolution in Oskaloosa.&quot; The Carroll Alsop House was added to the National Register of Historic Places in 1988.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1907 A Ave. E<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Black Hawk State Park",
            "lat": "42.293374",
            "lon": "-95.022703",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Black Hawk State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.293374,-95.022703\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73mi.</span></div>\n\t\t</div>\n\n\t\t<p>Black Hawk State Park lies off the southeast tip of the town of Lake View and is home to the southernmost glacial lake in the United States. The Depression-era Civilian Conservation Corps built many structures in the park that are still in use today. These structures reflect the effort to blend park amenities into the natural landscape in their material, design, and setting, and reflect common types developed by the National Park Service for park construction. This area was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3rd St.<br />Lake View, IA 51450<br />Sac County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.657.8712</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610154\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Spring Creek Friends Cemetery",
            "lat": "41.311591",
            "lon": "-92.602748",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-springcreekfriendscemetery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spring Creek Friends Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.311591,-92.602748\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Spring Creek Friends Cemetery possesses historic significance as a Quaker cemetery. The rural nature of this cemetery illustrates the lifestyle of Quaker settlements in Mahaska County before the growing centralization of this sect’s activities away from the countryside and into Oskaloosa. It is also significant for the plain design of the grave markers showing the Quakers’ preference for simplicity. The Spring Creek Friends Cemetery was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tOsburn Ave.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "National Cattle Congress",
            "lat": "42.509869",
            "lon": "-92.372283",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">National Cattle Congress</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.509869,-92.372283\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The National Cattle Congress is committed to benefit the youth of Iowa, to support educational programs and institutions, to expand agricultural horizons and to preserve and honor Iowa agricultural heritages. It provides quality, affordable and entertaining learning experiences to spectators and the general public by conduction an annual fair and year-round events.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t257 Ansborough Ave.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.234.7515</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://nationalcattlecongress.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Cedar Valley Arboretum and Botanic Gardens",
            "lat": "42.429213",
            "lon": "-92.322664",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-botany-cedarvalleyarboretum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cedar Valley Arboretum and Botanic Gardens</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.429213,-92.322664\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Recreational, cultural and educational opportunities abound at this 74-acre site. There are a dozen picturesque gardens, 450 trees and 12 acres of prairie, children&#039;s garden and model railroad garden at the Cedar Valley Arboretum!</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1927 E Orange Rd.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.226.4966</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://cedarvalleyarboretum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Whittier School",
            "lat": "42.487103",
            "lon": "-92.356510",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-whittierschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Whittier School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.487103,-92.356510\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Whittier School was designed to provide a modern educational system for West Waterloo and stands as a symbol of Waterloo’s rapid growth and development between 1890 and 1920. Architecturally, Whittier is a relatively unaltered and extant school design of John G. Ralston, a noted Waterloo architect. It was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1500 W 3rd St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-ballrooms.png",
            "title": "Electric Park Ballroom",
            "lat": "42.510561",
            "lon": "-92.370236",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-historicballroom-electricpark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-ballrooms.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Electric Park Ballroom</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.510561,-92.370236\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The &quot;new&quot; Electric Park Ballroom was constructed in 1934, after the original ballroom was lost in a fire. The ballroom is operated by the National Cattle Congress. It has been inducted in to the Iowa Rock and Roll Music Association&#039;s Hall of Fame.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310 W. Conger St.<br />National Cattle Congress<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Horace Boies Gravesite",
            "lat": "42.491473",
            "lon": "-92.357110",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-govgravesite-governorhoraceboies.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Horace Boies Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.491473,-92.357110\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Horace Boies (December 7, 1827 – April 4, 1923) served as the 14th Governor of Iowa from 1890 to 1894. His gravesite is located at Elmwood Cemetery in Waterloo.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t226 Elmwood<br />Elmwood Cemetery<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Gold Star Gravesite - Magnus A. Merkel",
            "lat": "41.993290",
            "lon": "-92.217683",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/benton-cemetery-magnusmerkelgravesite.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gold Star Gravesite - Magnus A. Merkel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.993290,-92.217683\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Magnus A. Merkel was the first serviceman from the Keystone area to die in World War I. Merkel was serving as the Keystone postmaster when the United States entered World War I in 1917. According to the Cedar Rapids Evening Gazette of Oct. 12, 1918, Merkel had been given leave of his postal duties to serve in the military. Tragically, he died of pneumonia at Camp Pike, Arkansas, and was buried at the Keystone Cemetery back in Iowa. The local American Legion Post was originally named for Magnus A. Merkel but changed its name in 1949 to the Merkel-Bockholt Post to honor Luverne Bockholt, the first serviceman from the Keystone area to die in World War II.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t71st St.<br />Keystone, IA 52249<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Mahaska County",
            "lat": "41.295951",
            "lon": "-92.613237",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Mahaska County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.295951,-92.613237\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mahaska County Freedom Rock® in Oskaloosa is full of great stories of local men and women. The featured bugler is Harry L. Anderson, namesake of the local American Legion post. He was killed by a German sniper while carrying orders and mail from his commanding officer to a post in the front line during World War I. The lone woman on the rock is Theresa “Billee” Davis, the first woman from Oskaloosa to join the Women’s Army Auxiliary Corps. An entire side of the rock is dedicated to the 1st Cavalry’s involvement in liberating POWs from Manila. The Battle of Manila was one of the worst battles in the Pacific Theater of World War II. Local Harold Caldwell was a member of that 1st Cavalry and owned the land the rock is located on. Seven Mahaska County-area veterans who were highly ranked leaders are on the final side of the rock. The men featured fought in the Civil War, World War I, World War II, Korean War and Gulf War. The Mahaska County (Oskaloosa) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA Hwy. 92<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cold Water Church of the Brethren",
            "lat": "42.892195",
            "lon": "-92.808957",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cold Water Church of the Brethren</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.892195,-92.808957\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Coldwater Church of the Brethren is a well-kept example of Iowa’s 19th century religious folk architecture. It is a simple front gabled building with a centered entrance and a somewhat uncommon raised sanctuary. The builders used limestone, which was locally quarried. The church was built in 1873. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t199 N High St.<br />Greene, IA 50636<br />Butler County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Hancock County Agricultural Museum and Pioneer Village",
            "lat": "43.084971",
            "lon": "-93.790858",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hancock County Agricultural Museum and Pioneer Village</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.084971,-93.790858\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hancock Agricultural Museum is a collection of agricultural artifacts from around the county. The collection has objects that date from the 1840s. The museum collection is full of restored farm machinery, tools and related items used in farming during the 1800s and early 1900s.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2210 Jewel Ave.<br />Hancock County Fairgrounds<br />Britt, IA 50423<br />Hancock County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.843.4362</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://hancockcountyfair.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "John Deere Tractor and Engine Museum",
            "lat": "42.498773",
            "lon": "-92.353048",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Deere Tractor and Engine Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.498773,-92.353048\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John Deere Tractor and Engine Museum educates visitors about the history of tractor and engine design and manufacturing in Iowa&#039;s Cedar Valley.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t500 Westfield Ave.<br />Waterloo, IA 507001<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.292.6126</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.deere.com/en_US/corporate/our_company/fans_visitors/tours_attractions/vintage-tractors-and-engines-museum.page?\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Bosnian Cultural Foundation",
            "lat": "42.468880",
            "lon": "-92.335280",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bosnian Cultural Foundation</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.468880,-92.335280\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bosnian Cultural Foundation is a non-profit 503(c) organization in Waterloo, Iowa that is dedicated to the promotion and preservation of Bosnian and Bosnian-American culture, traditions, and artifacts. We serve not only first- and second-generation refugees and immigrants by helping to maintain cultural and communicative links to their previous homeland, but we also strive to contribute to the cultural well-being of the greater Cedar Valley area through educational outreach, folkdance instruction, sporting events, and participation in many community-wide cultural festivals and fundraisers.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1446 E Ridgeway Ave<br />Waterloo, IA 50702<br />Black Hawk County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"www.bosnianculturalfoundation.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Emerson School",
            "lat": "42.492751",
            "lon": "-92.347849",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-emersonschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Emerson School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.492751,-92.347849\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1906, Emerson School is locally significant under because it stands as a symbol of Waterloo’s rapid growth and development between 1890 and 1920. Architecturally, Emerson is a relatively unaltered and extant school design of John G. Ralston, a noted Waterloo architect. It was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t314 Randolph St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry Weis House",
            "lat": "42.490615",
            "lon": "-92.346189",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-henryweishouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry Weis House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.490615,-92.346189\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Henry Weis House is an example of the fine homes that were built in Waterloo when it was a thriving, turn of the century, industrial city. It also exemplifies the costly housing designs that clung to the old while embracing the new during this period. The Weis House was built in the unusual Colonial Revival style by Murphy and Ralston architects. The home has been re-purposed as Wellington Bed and Breakfast. It was added to the National Register of Historic Places in 1989.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t800 W 4th St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Snowden House",
            "lat": "42.494350",
            "lon": "-92.345898",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-snowdenhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Snowden House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.494350,-92.345898\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Snowden House is a fine example of the vernacular late Victorian Italianate architectural style. This is a well-preserved example. The interior of the home as rebuilt after a fire in 1955. An auditorium on the second floor replaced the bedrooms. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t306 Washington St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Greene Historical Museum",
            "lat": "42.896336",
            "lon": "-92.802455",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Greene Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.896336,-92.802455\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This early 1900s boarding house was restored and donated by three townspeople to the Greene Historical Society in the fall of 1984 for the purpose of establishing a museum to preserve a record of the past. The museum is located across from Perrin Park, and contains a large collection of items of historical interest. Open by appointment and various weekends during the summer.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 N 1st St.<br />Greene, IA 50636<br />Butler County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.816.4631</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.butlercountyiowa.com/historyattractions.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rensselaer Russell House Museum",
            "lat": "42.493880",
            "lon": "-92.345550",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-historymuseum-rensselaevrusseuhousemuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rensselaer Russell House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.493880,-92.345550\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grout Museum District offers four distinct museums to discover our past, present and future. At the Rensselaer Russell House Museum, you can experience Victorian elegance in one of Iowa&#039;s finest example of Italianate architecture. Prominent businessman Rensselaer Russell built his home in 1861 as a show place for his era. It was added to the National Register of Historic Places in 1973.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t520 W 3rd St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.234.6357</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"groutmuseumdistrict.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "science-centers.png",
            "title": "Bluedorn Science Imaginarium",
            "lat": "42.494251",
            "lon": "-92.345160",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-science-bluedornscienceimaginarium.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/science-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bluedorn Science Imaginarium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.494251,-92.345160\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grout Museum District offers four distinct museums to discover our past, present and future. At the Imaginarium, you can see a 12-foot python or watch a science demonstration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t322 Washington St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.234.6357</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://groutmuseumdistrict.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chautauqua Park Historic District",
            "lat": "42.420771",
            "lon": "-94.983965",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sac-nhr-chautauquaparkhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chautauqua Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.420771,-94.983965\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Chautauqua movement was established in New York in 1874 and quickly became a major cultural influence in the Midwest. A Chautauqua Assembly brought in entertainment and culture for the whole community, with speakers, teachers, musicians, entertainers, preachers and specialists of the day. Sac City&#039;s Chautauqua Park is a 10-acre property that gives visitors a glimpse into early 1900s rural culture. It includes the 1908 Chautauqua Pavilion, a large auditorium, a small stone bridge, stone gates, a stone shelter, a fish cleaning shelter, and a log cabin. The district was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tAlong East bank of North Raccoon River<br />Sac City, IA 50583<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Sullivan Brothers Iowa Veterans Museum",
            "lat": "42.493118",
            "lon": "-92.343682",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-historymuseum-sullivanbrothersiowaveteransmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sullivan Brothers Iowa Veterans Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.493118,-92.343682\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sullivan Brothers Iowa Veterans Museum honors the service and sacrifice of all Iowa veterans from the Civil War to present. Step into their stories through traditional exhibits, interactive activities and an electronic Wall of Honor. The museum is named for the five Sullivan brothers - Joseph, Francis, Albert, Madison and George - who were all lost when the USS Juneau was torpedoed during the Battle of Guadalcanal in 1942. As a direct result, the US War Department adopted the Sole Survivor Policy.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWashington St. and W Park Ave.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.234.6357</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://groutmuseumdistrict.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Railroad Depot",
            "lat": "42.898557",
            "lon": "-92.804012",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Railroad Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.898557,-92.804012\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This restored railroad depot features displays of historical railroad memorabilia as well as a model railroad. Open by appointment, and various weekends during the summer.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t311 N 2nd St.<br />Greene, IA 50636<br />Butler County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.823.4444</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.butlercountyiowa.com/historyattractions.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Grout Museum of History and Science",
            "lat": "42.492630",
            "lon": "-92.343880",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-historymuseum-groutmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grout Museum of History and Science</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.492630,-92.343880\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grout Museum District offers four distinct museums to discover our past, present and future. At the Grout, you can step inside the stories of Iowa Veterans and visit the only public planetarium in Northeast Iowa.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t503 South St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.234.6357</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://groutmuseumdistrict.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Former Waterloo Public Library (West Branch)",
            "lat": "42.492328",
            "lon": "-92.343521",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-waterloopubliclibrarywestbranch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Former Waterloo Public Library (West Branch)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.492328,-92.343521\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Waterloo Public Library was founded in two rented rooms - one on each side of the Cedar River - in 1896. In 1906, the library moved to two new Carnegie buildings. The West Branch of the Waterloo Public Library is significant for its architecture, which is of a somewhat eccentric variety of the classical revival style. It was used as a library until the late 1970s. The building has been renovated to office space. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t528 W 4th St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Master Service Station",
            "lat": "42.494717",
            "lon": "-92.341754",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-masterservicestation.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Master Service Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.494717,-92.341754\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74mi.</span></div>\n\t\t</div>\n\n\t\t<p>Master Service Station is important because of its concept, design, and architectural style. It embodies the distinctive characteristics of the &quot;super service station,&quot; a specific building type that developed in the early 1920s and dominated gas station design from the late 1920s to the early-1930s. Originating in southern California, the super service station was distinctive for its multi-service concept, L-shaped design, and stylish architecture. Before super service stations, motorists refueled at filling stations, then drove to separate businesses for tires, batteries, supplies, repairs, and other services. In 1930, the Master Service Station was built and Waterloo, an older city adjusting to the automobile age. The Master Service Station represents both a zenith of the building type and its decline because it was built towards the end of the super service station era. The super service station fell out of favor during the early years of the Depression. Since then, the Master Service Station has been converted and is home to the Waterloo Convention and Visitors Bureau. It was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t500 Jefferson St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hancock County Courthouse",
            "lat": "43.097234",
            "lon": "-93.601267",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hancock-nhr-hancockcountycourthouse-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hancock County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.097234,-93.601267\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hancock County Courthouse was designed by F.W. Kinney and built by Gross Construction in 1890. The land was bought by a number of businessmen and was given to the county as a site for the courthouse. It was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t855 State St.<br />Garner, IA 50438<br />Hancock County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "National Wrestling Hall of Fame Dan Gable Museum",
            "lat": "42.496435",
            "lon": "-92.343243",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-historymuseum-dangablewrestlingmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">National Wrestling Hall of Fame Dan Gable Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496435,-92.343243\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Museum features Olympic, collegiate and professional wrestling history and honors Waterloo native Dan Gable, 1972 Olympic Gold Medalist. The Museum also presents displays on famous wrestlers throughout history—from Jacob wrestling the Angel through young Abe Lincoln to Frank Gotch, Dan Gable and Cael Sanderson. The George Tragos/Lou Thesz Professional Wrestling Hall of Fame, Glen Brand Wrestling Hall of Fame of Iowa, Alan and Gloria Rice Greco-Roman Hall of Champions, a theater, training center, and the Dean Rockwell Library and Research Center are also featured.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t303 Jefferson St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.233.0745</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://wrestlingmuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Civil War Monument: Sac County",
            "lat": "42.421742",
            "lon": "-94.988166",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sac-monument-civilwarmemorial.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Civil War Monument: Sac County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.421742,-94.988166\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sac County Civil War Monument was erected in memory of the soldiers of the war of the rebellion. On three of the four sides of the monument the names of Sac County Civil War veterans are inscribed. The Monument Committee was composed of three Civil War veterans, Phil Shaller, W. Patterson and A.B. Smith.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Memorial Park<br />Sac City, IA 50583<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Sac County",
            "lat": "42.421741",
            "lon": "-94.987180",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sac-monument-freedomrock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Sac County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.421741,-94.987180\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sac County Freedom Rock® in Sac City portrays a medic, a tunnel rat, a soldiers silhouette and a thank you to women in service. The back side of the rock shows a soldier from Sac County being rescued by two Navajo Code Talkers and a P-38 plane. Two different veteran&#039;s ashes are mixed into the paint in the stars on top of the rock. The Sac County (Sac City) Freedom Rock was completed by Greenfield-based artist Ray &quot;Bubba&quot; Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Sac City, IA 50583<br />Sac County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hotel Russell-Lamson",
            "lat": "42.494137",
            "lon": "-92.338637",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Russell-Lamson</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.494137,-92.338637\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hotel Russell-Lamson opened in September 1914 as one of the most complete, up-to-date and modern hotels anywhere in America. After rapid industrialization at the turn of the century, Waterloo was ripe for the building of a top of the line hotel. The Hotel Russell-Lamson has been renovated into a multi-use building, including 92 apartments and a restaurant. The Hotel Russell-Lamson was added to the National Register of Historic Places in 1988.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 W 5th St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sac County Courthouse",
            "lat": "42.422460",
            "lon": "-94.988146",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sac-nhr-saccountycourthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sac County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.422460,-94.988146\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sac County Courthouse represents a significant public investment in a structure built not simply for utilitarian purposes, but also as a monument associated with the historical importance of county organization and development. It also represents the Sac City&#039;s political power and prestige as the seat of Sac County. The courthouse was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Sac City, IA 50583<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Waterloo Center for the Arts",
            "lat": "42.498361",
            "lon": "-92.342442",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-artmuseum-waterloocenterforthearts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Waterloo Center for the Arts</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.498361,-92.342442\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>There is something creative for the entire family at Waterloo Center for the Arts: gallery exhibits, classes, ceramics, and digital art studios, special events, gift store, ArtHouse Cafe, and the Phelps Youth Pavilion - an interactive children&#039;s museum focused on cultural and agricultural exploration! The center also holds the largest public collection of Haitian artwork in the US, Midwestern works by Grant Wood and Thomas Hart Benton, American Decorative Art and International Folk Art.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t225 Commercial St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.291.4490</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://waterloocenterforthearts.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "YMCA Building and Statues",
            "lat": "42.496484",
            "lon": "-92.339359",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-ymcabuildingandstatues.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">YMCA Building and Statues</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496484,-92.339359\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The former YMCA is a significant example of the buildings designed by Mortimer B. Cleveland, a notable Northeast Iowa architect. The YMCA built the building in 1931 at a cost of $365,000.00. It is the largest Art Deco building in Downtown Waterloo. At the time of it&#039;s construction, the YMCA was elaborate in terms of it&#039;s size and scale for a city the size of Waterloo. The four bronze statues, facing the river, were salvaged from the second Black Hawk County Courthouse, built in 1902. Sculptor Robert DeGlass was paid $800 to create six bronze &quot;allegorical figures&quot; for the courthouse. They were that courthouse&#039;s most prominent feature, as they gazed out over the front entrance. They became known as the &quot;Green Ladies.&quot; In the early 1960s, that courthouse was demolished. Four of the &quot;Green Ladies&quot; - &quot;Agriculture,&quot; &quot;Justice,&quot; &quot;History,&quot; and Commerce&quot; - were moved to the YMCA building, and one - &quot;Peace&quot; - was moved to Upper Iowa University in Fayette. The sixth Green Lady has been lost to history. The former YMCA Building, currently used for other commercial enterprises, was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10 W 4th St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Black Hawk County Soldiers Memorial Hall",
            "lat": "42.495296",
            "lon": "-92.338366",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Black Hawk County Soldiers Memorial Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.495296,-92.338366\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Memorial Hall is a Classical Revival building that was designed by local Waterloo architect John G. Ralston. Memorial Hall was built by the Grand Army of the Republic from 1915-1916, and construction was funded by a special tax levy. It is also the best example in Waterloo (and Black Hawk County) of a building designed to be a memorial to honor veterans. The building has two stories, and the second floor houses a library that displays uniforms, artifacts, medals and weapons. Memorial Hall was added to the National Register of Historic Places in 1988.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCedar St. &amp; W 5th St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fire Station No. 2",
            "lat": "42.493855",
            "lon": "-92.338126",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-firestationno2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fire Station No. 2</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.493855,-92.338126\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Fire Station No. 2 is of distinctive design and is an example of an Industrial Era Institutional Building, and a work by a local architect, John G. Ralston. The building has been repurposed and was used as the El Mecca Club. Fire Station No. 2 was added to the National Register of Historic Places in 1988.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t716 Commercial St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Lake View Historical Museum",
            "lat": "42.309396",
            "lon": "-95.041007",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lake View Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.309396,-95.041007\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lake View Historical Museum displays artifacts from the town&#039;s past including a collection of 130 species of birds, the Dr. Mark A. Durst train featuring a miniature Lake View and an historic log cabin. This Historic Log Cabin on the museum grounds was built in approximately 1870 by the Belt Family east of Lake View and moved to its present location in 1926. A replica of a one-room school house, built to one-eighth scale, is also located at the museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 Crescent Park Dr.<br />Lake View, IA 51450<br />Sac County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.657.8031</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://lakeview-ia.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Seven Oaks",
            "lat": "42.420989",
            "lon": "-94.992561",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sac-nhr-sevenoaks.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Seven Oaks</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.420989,-94.992561\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Seven Oaks is an example of Queen Anne influenced residential architecture. It was designed noted Iowa architects, the house by N.M. Russell and the sun porches by Proudfoot and Bird. It was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t707 Audubon St.<br />Sac City, IA 50583<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Avery Theatre",
            "lat": "43.100662",
            "lon": "-93.601778",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hancock-theater-averytheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Avery Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.100662,-93.601778\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Avery Theatre was built in 1931. The theatre was closed in 1970 and converted into a pharmacy. The pharmacy moved in 2003, but the building remained vacant. In late 2006, the theater was rediscovered when the 1970s-era false front was removed. Through a community effort, the Avery Theater was rehabilitated, restored, and re-opened for it&#039;s original purpose in 2013. The Avery Theatre was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t495 State St.<br />Garner, IA 50438<br />Hancock County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Hancock County",
            "lat": "43.095240",
            "lon": "-93.801995",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Hancock County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.095240,-93.801995\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hancock County Freedom Rock® in Britt is painted to give the illusion that the soldier kneeling was carved out of the rock with a bright blue ribbon flowing behind it stating the phrase &quot;For Those Who Gave All&quot;.‬ The back side honors Hancock County&#039;s namesake, John Hancock, with his famous signature as well as a likeness. On the top is the American flag as if it were just set on the rock. The Hancock County (Britt) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2nd St.<br />Britt, IA 50423<br />Hancock County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Chief Black Hawk Sculpture",
            "lat": "42.308613",
            "lon": "-95.043278",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chief Black Hawk Sculpture</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.308613,-95.043278\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.3mi.</span></div>\n\t\t</div>\n\n\t\t\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCrescent Park Dr.<br />Lake View, IA 51450<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Armstrong House Museum",
            "lat": "43.095343",
            "lon": "-93.798403",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Armstrong House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.095343,-93.798403\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Armstrong House was built in 1886 for $15,000 for Lewis Larson, president of the First National Bank. Legend has it that Larson wanted a bigger home than a nearby home a Britt merchant had built in 1892. The home features two three-story high corner towers, multiple upper-story balconies and a wrap-around porch. Since 1969, the home has been the Hancock County Historical Society Museum. It is furnished as much as possible with accessories from the late Victorian period.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t266 2nd St. SE<br />Britt, IA 50423<br />Hancock County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.843.3282</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://brittiowa.com/armstrong.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George E. Stubbins House",
            "lat": "43.094662",
            "lon": "-93.803394",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George E. Stubbins House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.094662,-93.803394\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The George E. Stubbins House was built in 1886. Stubbins was an early Britt entrepreneur who purchased land in 1878 and subsequently platted four additions to the new community. He served as the city&#039;s first mayor from 1891-1894. His home was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t248 1st Ave. SW<br />Britt, IA 50423<br />Hancock County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lakeside Park Historic District",
            "lat": "42.306919",
            "lon": "-95.045546",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lakeside Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.306919,-95.045546\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lakeside Park Historic District (3rd St. from Lake St. to Park St.) features stone piers and a seawall that are unusual examples of Park Rustic architecture. They were designed to serve three functions: boat mooring, fishing, and small group assemble. Boats can no longer dock at the piers, but they remain popular fishing spots and still serve as staging areas for special events. The district was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tLake St.<br />Lake View, IA 51450<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Hobo Museum",
            "lat": "43.096462",
            "lon": "-93.801514",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hobo Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.096462,-93.801514\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hobo Museum is a museum dedicated to the lifestyle of the Hobo. A Hobo is a homeless person who lives freely riding trains from city to city looking for work, and every year there is a National Hobo Convention in Britt. The museum was started in 1980 with a small collection of Hobo artifacts. The museum is located in the former Chief Theater. The Chief Theater was built in 1912 and operated as a movie theatre until about 1981. It has also been known as the Masonic Hall and the Princess Theater.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t51 Main Ave. S<br />Britt, IA 50423<br />Hancock County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.923.9903</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://hobo.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chicago Great Western Railroad: Waterloo Freight Depot",
            "lat": "42.496514",
            "lon": "-92.333984",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago Great Western Railroad: Waterloo Freight Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496514,-92.333984\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The former Chicago Great Western freight depot is associated with railroading and wholesaling in Waterloo. It is the only extant steam railroad freight depot in the city. In addition the site calls attention to the role of Alpheus Beede Stickney, who moved the Waterloo depots to a more convenient downtown location when he became the President of the Chicago Great Western Railroad. It was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t800 Sycamore St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Marsh-Place Building",
            "lat": "42.497773",
            "lon": "-92.334997",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marsh-Place Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.497773,-92.334997\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Marsh-Place Building is a prominent example of the Commercial Style in Waterloo. The building directly illustrates the architectural resources associated with Waterloo’s dramatic industrial development in the decades surrounding the turn of the 20th century. Designed by the important Des Moines architectural firm of Hallett and Rawson, the former office building is an excellent, relatively unaltered example of the three-part base-shaft-capital approach (similar to a classical column) to tall building design. The building has been renovated in to apartments. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t627 Sycamore St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Round Barn, Bruce Township",
            "lat": "42.292053",
            "lon": "-92.235360",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-nhr-roundbarnbrucetownship.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Round Barn, Bruce Township</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.292053,-92.235360\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This is one of the three barns thought to be sold by James McQuilkin in his role as a representative of the Johnston Brothers’ Clay Works. It was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. D56<br />Mount Auburn, IA 52313<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. John Hammill Gravesite",
            "lat": "43.099334",
            "lon": "-93.792409",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. John Hammill Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.099334,-93.792409\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>John Hammill (October 14, 1875 – April 6, 1936) served as the 24th Governor of Iowa from 1925-1931. His gravesite is located at Evergreen Cemetery in Britt.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDiagonal St<br />Evergreen Cemetery<br />Britt, IA 50423<br />Hancock County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Silos and Smokestacks National Heritage Area - Main Office",
            "lat": "42.498808",
            "lon": "-92.335034",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Silos and Smokestacks National Heritage Area - Main Office</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.498808,-92.335034\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This is the home office of the Silos and Smokestacks National Heritage Area (SSNHA) is one of 49 federally designated heritage areas in the nation. It is an Affiliated Area of the National Park Service. Through the development of a network of sites, programs and events, SSNHA’s mission is to interpret farm life, agribusiness and rural communities-past and present.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t604 Lafayette St.<br />Suite 202<br />Waterloo, IA 50703<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.234.4567</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://silosandsmokestacks.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chief Black Hawk Statue",
            "lat": "42.306867",
            "lon": "-95.046877",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chief Black Hawk Statue</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.306867,-95.046877\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Black Hawk, the Sauk war chief, earned a place in history when, in 1832, he led approximately 900 Sauk from Iowa territory back into Illinois, where they had previously been resettled. The Chief Black Hawk Statue in Black Hawk State Park was installed in the 1930s as part of a New Deal relief program supporting arts and culture. It was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCrescent Park Dr.<br />Black Hawk State Park<br />Lake View, IA 51450<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fowler Company Building",
            "lat": "42.498806",
            "lon": "-92.334989",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-fowlercompanybuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fowler Company Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.498806,-92.334989\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fowler Company Building was constructed in 1884 on a busy corner in the eastside business district of Waterloo. The Fowler Company’s decision to build at this corner put its new offices and wholesale grocery warehouse at the heart of the robust and growing eastern Iowa prairie town of Waterloo. The building has been re-purposed and is used for loft apartments, offices and a dining and drinking establishment. It was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t226 E 4th St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Former Waterloo Public Library (East Branch)",
            "lat": "42.499130",
            "lon": "-92.333447",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-formerwaterloopubliclibraryeastbranch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Former Waterloo Public Library (East Branch)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.499130,-92.333447\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Waterloo Public Library was founded in two rented rooms - one on each side of the Cedar River - in 1896. In 1906, the library moved to two new Carnegie buildings. The East Branch of the Waterloo Public Library is associated with the civic and institutional development of Waterloo during the industrial era that lasted from 1892 through 1917. It was used as a library until the late 1970s. The building has been renovated to office space. It was added to the National Register of Historic Places in 1988.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t626 Mulberry St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-ballrooms.png",
            "title": "Duncan Community Ballroom",
            "lat": "43.103323",
            "lon": "-93.711379",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hancock-historicballroom-duncanballroom.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-ballrooms.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Duncan Community Ballroom</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.103323,-93.711379\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in the small Czech village of Duncan, the Duncan Community Ballroom is a beautiful dance hall. This ballroom proves that the small towns in America&#039;s heartland are still active today with great pride in volunteerism as well as their heritage. In September of 1899, 13 men gathered at a country school and organized the Catholic Workman, Branch 51. As the town grew, a community hall was needed. In 1922, members of Branch 51 organized the construction of a new brick community hall. On the night of the grand opening the Duncan Band played, while a generator and Model-T engine hooked together supplied lights in the hall. The Community Hall was a very active place and held many fundraisers, dances, and Czech plays. June 25, 1951 was a disastrous day for Duncan, Iowa. A tornado arose from the southwest and destroyed the Community Hall, St. Wenceslaus Catholic Church, homes, businesses, and farm places. Through the strength and faith of the community, the town of Duncan was rebuilt. Through collaborative efforts, a new Duncan Ballroom was built. The community that worked together could once again celebrate together. Many of the popular old time bands played in Duncan the Six Fat Dutchmen, Babe Wagner, Elmer Scheid, and Roman Rezac to name a few. Local bands also played for dances, including Malek Bros. Accordion Band and the Hrubes Huskers. In the late 1970&#039;s more room was needed. An addition was constructed, including a new bar, restrooms, and extra seating.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2337 Nation Ave.<br />Britt, IA 50423<br />Hancock County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.duncanballroom.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Waterloo East Commercial Historic District",
            "lat": "42.498989",
            "lon": "-92.335054",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Waterloo East Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.498989,-92.335054\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>East Waterloo had wildly successful business growth in the late nineteenth and early twentieth centuries. This business growth funded and promoted civic improvements. This benefitted the whole town with a more inclusive community and robust economy lasting well into the twentieth century. The buildings that remain in the Eastside commercial district reflect this history of growth and its consequences. They are important to Waterloo’s social history represent different property types. The district is made up of 128 though 329 East 4th Street, 612 through 616 Mulberry Street and 501 through 632 Sycamore Street. The Waterloo East Commercial Historic District was added to the National Register of Historic Places in 1988.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE 4th St., Sycamore St., and Mulberry St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Strand Theater",
            "lat": "42.499864",
            "lon": "-92.333771",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Strand Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.499864,-92.333771\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Strand Theater was built in 1920. It was a Spanish Colonial Revival-style theater, but is now completely unrecognizable because of a marble and slate skin.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t402 E 4th St.<br />Waterloo, IA 50703<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Walnut Street Baptist Church",
            "lat": "42.502357",
            "lon": "-92.333339",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-walnutstreetbaptistchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Walnut Street Baptist Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.502357,-92.333339\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Waterloo architect, Clinton Phillip Shockley, designed Walnut Street Baptist Church, in 1908. It is an example of the early modern style with Arts and Crafts elements. The Walnut Street Baptist Church congregation used the facility, until 1970, when they moved and changed their name to Walnut Ridge Baptist Church. The Walnut Street Baptist Church was sold and became the downtown site for the Faith Temple Baptist Church. It was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t415 Walnut St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Sac City Museum Village",
            "lat": "42.422516",
            "lon": "-94.999530",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sac-historymuseum-saccitymuseumvillage.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sac City Museum Village</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.422516,-94.999530\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sac City Museum Village and World&#039;s Largest Popcorn Ball displays the history of Sac City in a variety of ways. The museum has exhibits on various historical items, farm tools, and agricultural equipment. The museum features a historical village includes a country store, doctor&#039;s office, post office, hardware store, church, telephone office, alumni hall, drug store, farm store, and country school. They also have The World&#039;s Largest Popcorn Ball, built in February 2009, weighing 5;000 pounds and standing more than eight feet tall.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t13th St. and Main St.<br />Sac City, IA 50583<br />Sac County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.662.7383</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://saccountyiowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Grace Methodist Episcopal Church",
            "lat": "42.500875",
            "lon": "-92.330950",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grace Methodist Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.500875,-92.330950\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1911, the Grace Methodist Episcopal Church was growing and the congregation built a new facility. The new church was designed by the well-known Chicago firm of Turnbull and Jones. As of 2014, the church is used by Mount Moriah Missionary Baptist Church. The building was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t633 Walnut St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Odd Fellows Block",
            "lat": "41.028304",
            "lon": "-94.196744",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/union-nhr-oddfellowsblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Odd Fellows Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.028304,-94.196744\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Afton Lodge No. 130 Independent Order of Odd Fellows (I.O.O.F.) was organized August 21, 1860 and received its charter that October. For the first few years the lodge met in garrets and lofts. In 1883 the lodge erected the building at a cost of $3,000.00. In 1897, a large addition was built at a cost of $4,500, resulting in a 40-foot wide front and two stories of space. The first floor was used to house business and the second story served for lodge purposes and included the lodge hall, banquet hall, reception rooms and kitchen. It has since been re-purposed. The Odd Fellows Block was added to the National Register of Historic Places in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t175 E Kansas St.<br />Afton, IA 50830<br />Union County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Sullivan Memorial Park",
            "lat": "42.510497",
            "lon": "-92.334668",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sullivan Memorial Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.510497,-92.334668\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Sullivan Memorial Park is located on the site of the Sullivan Brothers childhood home. The five Sullivan brothers enlisted in the US Navy together, with the stipulation that they serve together. All were assigned to the USS Juneau. The USS Juneau was torpedoed during the Battle of Guadalcanal in 1942 and all five Sullivan Brothers perished. As a direct result, the US War Department adopted the Sole Survivor Policy and a Navy ship was named for the brothers. The USS Juneau was lost after it sunk and was rediscovered on March 17, 2018 by billionaire Paul Allen&#039;s crew on the seafloor near the Solomon Islands. The brothers, Joseph, Francis, Albert, Madison and George are memorialized throughout their hometown of Waterloo, including this park.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tAdams St. and E 4th St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dunsmore House",
            "lat": "42.513242",
            "lon": "-92.337355",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dunsmore House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.513242,-92.337355\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built around 1866 by Thomas Chadwick, a master stonemason who emigrated to Iowa from England around 1860. Its first occupant, John F. Dunsmore, was an employee of the Illinois Central Railroad. By 1913, the house had been acquired by F.M. Michael, who made structural alterations. The house is the only house made of limestone block still standing in the Cedar Falls - Waterloo area. It is one of the earliest remaining dwellings in the area. The house is now owned by the Black Hawk County Bicentennial Commission, and is open to the public as a &quot;living history&quot; museum. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t902 Logan Ave.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rath Packing Company Administration Building",
            "lat": "42.492392",
            "lon": "-92.323617",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-rathpacking.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rath Packing Company Administration Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.492392,-92.323617\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rath Administration Building was the headquarters for the Rath Packing Company. Rath Packing Company opened in Waterloo in 1891. The Administration Building was designed by plant engineer J. S. Bartley in 1925. The building had a Tudor style entrance bay and was Gothic Revival-inspired. It contained offices for Rath executives and support staff, conference rooms and a print shop. At its peak, Rath employed 8,500 people and by 1950 it was the largest single unit packing house in the world. It played a key role in the development of agriculture-related industry in Waterloo and in the region. Rath closed on December 28, 1984, and the last load was shipped out of the plant on January 8, 1985. The Rath Packing Company Administration Building was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1515 E Sycamore St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "East High School",
            "lat": "42.502040",
            "lon": "-92.329440",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a7cd7150543f5b4d4.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">East High School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.502040,-92.329440\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>East High School, constructed in 1918, is the closest high school to the Northeast Triangle Neighborhood, an area of Waterloo with a historically high concentration of African American residents. \r\n\r\nIn 1968, 20% of the student body was African American (340 out of 1700 students). Following a series of incidents in September 1968, African American students at East High and community leaders agitated for Black history to be part of the school curriculum to balance the white history already taught. The group also demanded the school hire more Black teachers and counselors.\r\n\r\nThe students’ activism was part of larger national trend following the assassination of Dr. Martin Luther King, Jr. in April 1968 that sparked protests and demands for African American equality.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t214 High St.<br />Waterloo, IA 50703<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "United Packinghouse Workers of America (UPWA) Union Hall",
            "lat": "42.491640",
            "lon": "-92.321130",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a82d088f0551fa31.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">United Packinghouse Workers of America (UPWA) Union Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.491640,-92.321130\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This UPWA Union Hall was built in 1954 by the United Packinghouse Workers of America (UPWA) Local 46, the labor organization affiliated with the Rath Packing Company, located one block away. Beginning in 1948, UPWA members had dedicated $.50 of their dues to the construction of the building. The $100,000.00 hall, when it opened in 1954, became the center of the fight for workplace equality in Waterloo.\r\n\r\nAfter World War II, the UPWA made a concentrated effort to fight discrimination in packing plants, such as Waterloo&#039;s Rath Packing Company. UWPA leaders worked to write fair-employment language into contracts, agitated to remove job classifications as male/female and white/black and insisted that pay scales be equal to the job and not dependent on the race or gender of the worker.\r\n\r\nInterestingly, the same year the UPWA Union Hall opened, Anna Mae Weems became the first African American woman to enter the bacon slicing department. Weems later became president of the Waterloo National Association for the Advancement of Colored People (NAACP).</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1651 Sycamore St.<br />Waterloo, IA 50703<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "African American History and Cultural Museum",
            "lat": "42.510173",
            "lon": "-92.332054",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">African American History and Cultural Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.510173,-92.332054\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">74.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The mission of the African American History and Culture Museum is to promote greater knowledge of the African American community in the Cedar Valley through the collection, preservation, and interpretation of the historical past.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1320 E 4th St.<br />Waterloo, IA 50704<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Roosevelt School, Waterloo",
            "lat": "42.518744",
            "lon": "-92.335904",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Roosevelt School, Waterloo</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.518744,-92.335904\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">75mi.</span></div>\n\t\t</div>\n\n\t\t<p>Roosevelt Elementary School is significant for education and architecture. It was built in 1922, and was intended for the working-class. The school functioned as an important educational facility for over eighty years. The structure was designed by Mortimer B. Cleveland, one of Waterloo’s most prominent architects. Roosevelt is the oldest example of the Collegiate Gothic architectural style in the Waterloo public school system. It was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 E Arlington St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Andrew P. Hansen Farmstead",
            "lat": "41.600171",
            "lon": "-94.985444",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Andrew P. Hansen Farmstead</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.600171,-94.985444\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">75.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Andrew P. Hansen Farmstead was purchased in 1878 by the father of Andrew P. Hansen, Jans P. Hansen, a Danish immigrant to the United States. Bought from the Rock Island Railroad for $6/acre, the land was primarily used as a dairy farm. The farmstead signifies the building trends associated with the Danish immigration movement from 1894-1924. The Danish Immigration Movement to Audubon County and nearby areas was largely fueled by a population boom and political persecution in the Old World. The new communities led to a rise in dairy farming in Iowa, a practice of the Old World. The farmstead was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1564 280th St.<br />Brayton, IA 50042<br />Audubon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Smyrna School",
            "lat": "40.939034",
            "lon": "-93.613899",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Smyrna School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.939034,-93.613899\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">75.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Smyrna is a ghost town. This school was a country school in Franklin Township.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3100-3166 310th Ave.<br />Franklin Township<br />Woodburn, IA 50275<br />Clarke County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Waterloo African Methodist Episcopal (AME) Church",
            "lat": "42.504740",
            "lon": "-92.322510",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a7a8a84066baa3ac.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Waterloo African Methodist Episcopal (AME) Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.504740,-92.322510\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">75.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The African Methodist Episcopal Church occupied this building from 1914 through 1959. \r\n\r\nThis church was built in 1876 at a different location as a “railroad chapel” for workers associated with the Burlington, Cedar Rapids &amp; Northern Railroad. The building was moved to this site in 1914. Here, Reverend I.W. Bess led the church until 1916 and advocated for the advancement of the local African American community.\r\n\r\nBess was succeeded by Reverend H.C. Boyd who was one of the founding members of the Waterloo branch of the NAACP established in 1921.\r\n\r\nThe building is significant to Waterloo because of its association with some of the earliest Civil Rights activism in the city and the founding of the local branch of the NAACP.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 Albany St.<br />Waterloo, IA 50703<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Dr. Lee Burton and Lily Williams Furgerson House",
            "lat": "42.509100",
            "lon": "-92.326310",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a7ba0c92e82e22bda.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. Lee Burton and Lily Williams Furgerson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.509100,-92.326310\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">75.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dr. Lee Burton and Lily Williams Furgerson arrived in Waterloo in 1927. They had both attended the University of Iowa and were married in February 1925.\r\n\r\nBoth Furgersons were active in the Waterloo chapter of the NAACP, speaking at local events and at universities across the state. Several of their children continued this activism.\r\n\r\nDr. Burton passed away in 1948, and Lily Furgerson returned to college. In 1952, she earned her teaching certificate from the University of Northern Iowa. That fall, she became the first African American schoolteacher in the Waterloo Community School District.\r\n\r\nThe Dr. Lee Burton and Lily Williams Furgerson House was built in 1915, but is significant for the period 1944-1973, when it was occupied by the Furgersons. The house remained in the Furgerson family until 2011.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t600 Cottage St.<br />Waterloo, IA 50703<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John and Mary Jane Kyte Farmstead District",
            "lat": "40.935803",
            "lon": "-93.656448",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John and Mary Jane Kyte Farmstead District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.935803,-93.656448\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">75.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Farmstead is from the early settlement era. The two primary buildings, the house and barn, date from the establishment of this farmstead in the mid-1850s to 1860s. Construction was done by John Kyte. They lived on the farmstead until 1901. It was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2875 Mormon Trail Rd.<br />Weldon, IA 50264<br />Clarke County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Leslie #6 School - Knox Township",
            "lat": "40.942642",
            "lon": "-93.806790",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Leslie #6 School - Knox Township</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.942642,-93.806790\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">75.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Leslie School opened in 1881 as one of nine country schools in Knox Township. The school operated like many country schoolhouses of the day; they had one teacher for 1-8 grade, one classroom, and no heating aside from a wood burning stove in the center of the classroom. The school operated until 1959, but was used for school reunions, meetings, and as a voting site into the 1980s. The building has been used as a community center and for school reunions.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2101 Doyle St.<br />Co. Rd. H48<br />Osceola, IA 50213<br />Clarke County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Highland Historic District",
            "lat": "42.499855",
            "lon": "-92.312360",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Highland Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.499855,-92.312360\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">75.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Highland Historic District was the exclusive neighborhood in Waterloo from 1908 through 1934. The industrial and professional elite resided there. The District contains an unparalleled collection of houses designed by Mortimer B. Cleveland, notable Northeast Iowa architect. Highland Historic District is roughly bounded by Steely, Idaho and Vine Streets and Independence Avenue. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHighland Square Park<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "W. H. Miller Barn (Bremer County)",
            "lat": "42.723381",
            "lon": "-92.496183",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">W. H. Miller Barn (Bremer County)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.723381,-92.496183\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">75.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Miller Barn was built in 1914 by W.H. Miller and his brother, Gilbert. It was constructed with locally grown cedar and native oak. The Miller Guernsey Dairy was one of more than 20 dairies in Bremer County between 1920 and 1940 and helped supply the local Carnation Company with milk for condensed milk. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310 20th St. SW<br />IA Hwy. 3<br />Waverly, IA 50677<br />Bremer County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Chicago and Northwestern Railroad Depot Museum",
            "lat": "42.270286",
            "lon": "-95.090032",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago and Northwestern Railroad Depot Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.270286,-95.090032\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wall Lake passenger depot is the sole surviving railroad-related building in a small town that was once served by two major railroads. It is an excellent example of standard-plan depot design and construction. Wall Lake had a significant railway presence from the 1880s until World War II and this had a major influence on the growth and development of the community. The restored Chicago and Northwestern Railroad Depot Museum showcases railroad artifacts and other historical items. The depot was also where Andy Williams&#039; father worked as a mail clerk. The depot was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCenter St.<br />Wall Lake, IA 51466<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Andy Williams Birthplace",
            "lat": "42.270707",
            "lon": "-95.090407",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Andy Williams Birthplace</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.270707,-95.090407\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76mi.</span></div>\n\t\t</div>\n\n\t\t<p>Howard Andrew &quot;Andy&quot; Williams, an American popular-music singer, was born at this home in Wall Lake on December 3, 1927, the son of Jay Emerson and Florence (Finley) Williams. The family moved to Des Moines in 1936, when Andy was 8-years-old, the same year that he made his singing debut as part of the Williams Brothers Quartet. The home is open for tours during the summer and by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 E 1st St.<br />Wall Lake, IA 51466<br />Sac County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.662.2262</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Marble Rock Bank Museum",
            "lat": "42.965207",
            "lon": "-92.867701",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marble Rock Bank Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.965207,-92.867701\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76mi.</span></div>\n\t\t</div>\n\n\t\t<p>This is the last of Marble Rock&#039;s original buildings, and the only commercial building to survive two fires in 1899. The bank is a well-preserved example of a late nineteenth-century commercial building; and it’s association with J.B. Shepardson, one of Marble Rock’s most prominent citizens, also adds to its historical value. The Marble Rock Bank building now houses a museum run by the Marble Rock Historical Society, an organization dedicated to preserving and sharing the history of the Marble Rock area. The Museum has exhibits on the old museum hall, bankers building, and an antique pioneer kitchen. It was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t313 Bradford St.<br />Marble Rock, IA 50653<br />Floyd County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Jefferson Elementary School",
            "lat": "41.062384",
            "lon": "-94.356397",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/union-nhr-jeffersonelementaryschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jefferson Elementary School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.062384,-94.356397\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Jefferson Elementary School was built in 1937. The school was constructed with funds from the Public Works Administration (PWA) and completed at a cost of $74,629.00. PWA funding allowed many communities to construct public buildings during the Great Depression. The school was typical of a modern elementary school, with a large kindergarten room (with the semi-circle of windows) and a combination gymnasium and auditorium, for use by the community. Jefferson Elementary School was designed by architects Dougher, Rich and Woodburn of Des Moines. They also designed several county courthouses in the 1930s. The Jefferson School is no longer used as a school, but was deemed worthy of preservation and added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t501 N Cherry St.<br />Creston, IA 50801<br />Union County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Milner Barn",
            "lat": "41.964860",
            "lon": "-92.163745",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-barn-milnerbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Milner Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.964860,-92.163745\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Milner Barn was built in 1903. Neighbors turned out to see the new style barn built without the use of wooden pegs.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1695 73rd St.<br />US Hwy. 30<br />Keystone, IA 52249<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "West Bend Historical Center",
            "lat": "42.958046",
            "lon": "-94.443616",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Bend Historical Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.958046,-94.443616\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Carter School was built 1872 and operated until the mid-1940s. It was restored in 1976 and moved to West Bend. In 1998, the original town Post Office was restored and placed next to the school. An outhouse is also on site. The site is maintained by the West Bend Historical Center.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 3rd St. SE<br />West Bend, IA 50597<br />Palo Alto County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Lake Keomah State Park",
            "lat": "41.287529",
            "lon": "-92.546491",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lake Keomah State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.287529,-92.546491\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lake Keomah State Park is 366 acres of beautiful woods and water. Lovely shaded picnic areas are next to a 84 acre man-made lake. The park&#039;s name was derived from the first three letters of Keokuk and Mahaska counties. A portion of the south side of the lake was reserved for private development and many homes dot this side of the lake. The park was dedicated in 1934. Many of its facilities were constructed by the Civilian Conservation Corps (CCC). The Civilian Conservation Corps were a national level government program carried out through the state within its parks. It sought to provide recreational opportunities for local communities and conserve the parks&#039; landscapes by using unemployed youths in make-work projects, a move toward social welfare at the national level. Lake Keomah State Park was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2720 Keomah Ln.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.673.6975</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610143\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Chizek Barn",
            "lat": "43.130101",
            "lon": "-93.663697",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chizek Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.130101,-93.663697\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chizek Barn was built by Albert Chizek in 1942. As of 2016, Chizek’s grandson owned the barn. The barn has an open loft area. It was featured on the Iowa Barn Foundation’s All-State Barn Tour in 2016. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1665 250th St.<br />Garner, IA 50438<br />Hancock County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Grand River Bridge",
            "lat": "40.963091",
            "lon": "-94.039044",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand River Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.963091,-94.039044\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grand River Bridge was built in 1890. It was built by the King Bridge Company of Cleveland, Ohio, and is 173.9 feet long. The bridge is structurally deficient and is closed to traffic. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t230th St.<br />Over Grand River<br />Arispe, IA 50831<br />Union County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Wooster Barn",
            "lat": "41.803914",
            "lon": "-95.099236",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-barn-woosterbarn-2.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wooster Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.803914,-95.099236\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Mr. Wooster&#039;s grandfather built this barn in 1896. As of 2016, it was still in use as part of the family&#039;s farming operation. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2435 2100th St.<br />Manning, IA 51455<br />Shelby County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Green Mill Ford Bridge",
            "lat": "42.672833",
            "lon": "-92.429405",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Green Mill Ford Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.672833,-92.429405\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1869, studies began on the conditions of roads and bridges in Bremer County. Several were deemed unsafe and in need of repair or replacement. In the spring of 1871, construction began on the Green Mill Ford Bridge. It was designed and built by the King Iron Bridge and Manufacturing Company. The company used a bowstring arch-truss design—which had many structural flaws. Almost all of these types of bridges in Iowa have been demolished. The Green Mill Ford Bridge no longer carries traffic, but it stands as an example of what was once a common structural type. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t260th St.<br />Janesville, IA 50647<br />Bremer County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First Presbyterian Church",
            "lat": "42.959469",
            "lon": "-94.446510",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Presbyterian Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.959469,-94.446510\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First Presbyterian Church was constructed in 1889 with an addition made in 1915. The resource is considered significant as an unusual example of a wood-frame, Late Victorian era church, which retains a very high level of historic integrity. The church&#039;s exterior clearly illustrates the vernacular of the local craftsman (i.e. carpenter) who created a façade influenced by the stylistic trends of the time, while utilizing religious symbolism as decorative devices. The church&#039;s interior narthex retains the Victorian details of the 1889 period, while the sanctuary reflects the more Classically influenced decorative trends dating to the 1915 addition. The First Presbyterian Church was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 1st Ave. SW<br />West Bend, IA 50597<br />Palo Alto County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "United States Post Office and Court House",
            "lat": "41.059457",
            "lon": "-94.362776",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/union-nhr-uspostofficeandcourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">United States Post Office and Court House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.059457,-94.362776\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Ground was broken for the Creston United States Post Office and Court House in 1902 and the building was completed in 1903. The architecture is a mixture of the Beaux-Arts classical and the Georgian or Federal Revival styles. The building served as local post office during the dawn of Rural Free Delivery and as court house for the US District Court for the Southern District of Iowa and the US Circuit Court for the Southern District of Iowa. Once slated for demolition, the Creston United States Post Office and Court House was deemed worthy of preservation and added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t222 N Maple St.<br />Creston, IA 50801<br />Union County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowana Hotel",
            "lat": "41.058701",
            "lon": "-94.362784",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/union-nhr-iowanahotel.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowana Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.058701,-94.362784\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Designed and built by H.L. Stevens and Company of Chicago in 1919-1920, the Iowana Hotel played a pivotal role in the development of the Creston’s downtown commercial district. The Iowana Hotel was the result of the resolve of a group of prominent citizens that the city would have a modern hotel. The construction of the hotel represented perhaps the only instance in Creston history in which the entire citizenry joined in a commercial venture intended to enhance the business prospects of their community. At the time of it&#039;s completion, the six story Iowana was advertised as the tallest building between Des Moines and Omaha. In the 1950s, the roof mounted &quot;IOWANA HOTEL&quot; sign was added. The Iowana Hotel was added to the National Register of Historic Places in 2009. As of 2014, the building had been preserved and was used as low and moderate income housing. Hotel Iowana Limited Partnership was awarded the Margaret Keyes Award for an outstanding large historic preservation project in 2013. The renovation project saved the building from ruin and showed excellent attention to detail, especially on the interior plaster capitals and the exterior re-pointing.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t203 W Montgomery St.<br />Creston, IA 50801<br />Union County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Archives of Iowa Broadcasting",
            "lat": "42.727663",
            "lon": "-92.483167",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Archives of Iowa Broadcasting</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.727663,-92.483167\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The purpose of the Archives of Iowa Broadcasting is to establish and maintain a permanent collection of materials relating to the history, development and contribution of radio and television in Iowa, housed at Wartburg College. The electronic information era which was born and developed in the 20th century and is being carried forward in the 21st century rests on a foundation of radio and television experience. A significant part of that early experience took place in the state of Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Wartburg Blvd.<br />Vogel Library<br />Waverly, IA 50677<br />Bremer County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.352.8462</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabroadcasting.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Grotto of the Redemption",
            "lat": "42.963932",
            "lon": "-94.445587",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/paloalto-nhr-grottoofredemption.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grotto of the Redemption</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.963932,-94.445587\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grotto of the Redemption is the largest man-made grotto in the world and is billed as the &quot;Eighth Wonder of the World.&quot; Father Paul Dobberstein (1872-1954) started the Grotto in 1912 and worked on it for 42 years. By his death, his hand built Grotto of the Redemption covered one city block. It is a composite of nine separate grottos. Each portrays a scene in the life of Christ. The Grotto of the Redemption was added to the National Register of Historic Places in 2001. It was seen in movie &quot;The Straight Story,&quot; a 1999 film that chronicles a lawn mower trip made by 73-year-old Alvin Straight from Laurens, Iowa.</p>\t\t<p><em>A location in the collections: Hollywood in the Heartland, 99 County Tour - Iowa History Month</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 N Broadway<br />West Bend, IA 50597<br />Palo Alto County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.868.3641</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://westbendgrotto.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Chicago, Burlington and Quincy Railroad: Creston Depot",
            "lat": "41.057095",
            "lon": "-94.362516",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/union-nhr-cbqcrestonstation.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago, Burlington and Quincy Railroad: Creston Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.057095,-94.362516\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chicago Burlington and Quincy Railroad established the town of Creston in 1868 by choosing the location as a railroad division point. The town was so named because it sits on the crest of the divide between the Mississippi and Missouri Rivers. As division point, the railroad had many offices in Creston and a large roundhouse. The depot is a three story building, built in 1899 for a cost of $75,000. In the 1970s, the railroad ceased using the building, and the city purchased the property. The building has been restored and tours are available. It was added to the National Register of Historic Places in 1973. Amtrak’s California Zephyr stops in Creston - but at a much smaller depot, due east of the Chicago, Burlington and Quincy Depot.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t116 W Adams St.<br />Creston, IA 50801<br />Union County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.782.7022</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://unioncountyiowatourism.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wartburg Teachers&#039; Seminary",
            "lat": "42.729137",
            "lon": "-92.481822",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wartburg Teachers&#039; Seminary</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.729137,-92.481822\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wartburg Teachers&#039; Seminary (now called Old Main) was built in 1880 and was the first building on the Wartburg College campus. The building once housed the entire college including classrooms, library and living quarters. It was placed on the National Register of Historic Places on Jan. 20, 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Wartburg Blvd.<br />Wartburg College<br />Waverly, IA 50677<br />Bremer County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Strand Theater",
            "lat": "41.057445",
            "lon": "-94.364338",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/union-theater-strandtheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Strand Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.057445,-94.364338\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Strand Theater was built in in 1916, after the previous theater on that site nearly burnt to the ground – twice. The Strand had a full stage and seating for 1,000, as well as an orchestra pit and a fly loft for vaudeville acts. In the 1920’s the theater showed the first silent movies and ‘talkie’ picture shows. In 1994, the Strand Theater was purchased by Fridley Theatres of Des Moines. Fridley completed major renovations on the Strand and reduced the seating capacity to 300.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t309 W Adams St.<br />Creston, IA 50801<br />Union County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Bremer County Historical Society Museum (Waverly House)",
            "lat": "42.725909",
            "lon": "-92.475804",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/bremer-historymuseum-nhr-bremercountyhhistoricalsocietymuseum-koschmederpioneerhome.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bremer County Historical Society Museum (Waverly House)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.725909,-92.475804\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bremer County Historical Society Museum is in the Waverly House, a well-preserved example of 19th century commercial architecture. The building was the first hotel and stagecoach stop in the area. The museum houses pioneer artifacts. It later served as an apartment building, hotel and factory. The Waverly House was added to the National Register of Historic Places in 1976.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t402 W Bremer Ave.<br />Waverly, IA 50677<br />Bremer County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.352.1309</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.bremercountyhistoricalsociety.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dr. Jesse Wasson Building",
            "lat": "42.315060",
            "lon": "-92.192932",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-drjessewassonbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. Jesse Wasson Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.315060,-92.192932\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dr. Jesse Wasson Building was built in 1878, making it the oldest surviving example of commercial stone construction in La Porte City, and the only surviving example of first generation commercial architecture in the community. The building calls attention to the career of Dr. Jesse Wasson, a founding proprietor of La Porte City, its chief booster for many years, and a man of wide interests and civic contributions. It was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 E Main St.<br />La Porte City, IA 50651<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John N. and Mary McQuilken House",
            "lat": "42.313001",
            "lon": "-92.193163",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-johnnandmarymcquilkenhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John N. and Mary McQuilken House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.313001,-92.193163\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John N. and Mary A. McQuilken House was constructed in 1900-1901 and is architecturally significant because of its stylistic influence and richness of architectural detailing both on the exterior and interior. The house exhibits features of Colonial Revival styling. The work is that of a still unidentified architect and contractor-builder. It was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t602 Commercial St.<br />La Porte City, IA 50651<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Syndicate Block",
            "lat": "42.315104",
            "lon": "-92.192411",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-syndicateblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Syndicate Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.315104,-92.192411\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in two phases in 1891 and 1894, the Syndicate Block is locally significant for its associations with commerce in La Porte City. The Block is also architecturally significant because building design illustrates the influence of Late Victorian styling. The Syndicate Block is the largest commercial edifice ever erected in the city. It was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 E Main St.<br />La Porte City, IA 50651<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Waterloo, Cedar Falls and Northern Railroad: La Porte City Station",
            "lat": "42.315224",
            "lon": "-92.192667",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-waterloocedarfallsandnorthernrailroadlaportecitystation.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Waterloo, Cedar Falls and Northern Railroad: La Porte City Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.315224,-92.192667\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building was an in town passenger station on the Waterloo, Cedar Falls and Northern interurban railroad line, also known as the Cedar Valley Road, from 1912-1928. Its location and Georgian Revival architecture represent the interurban railroad’s commitment to passenger service, as the station is a detour from the main line of the railroad. Most of the main line of the Cedar Valley Road is now known as the Cedar Valley Nature Trail. The La Porte City Station is now home to La Porte City Public Works and was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t202 E Main St.<br />La Porte City, IA 50651<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "3rd Street SE Bridge",
            "lat": "42.720793",
            "lon": "-92.466862",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/bremer-nrhp-3rdstreetsebridge-4-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">3rd Street SE Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.720793,-92.466862\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1916 the Bremer County Board of Supervisors voted to build the 3rd Street SE Bridge (also known as the Harmon Street Bridge, Green Bridge and Brookwood Park Bridge) as a replacement for a wooden foot bridge and wagon ford at the foot of Harmon Street (now 3rd Street SE) that crosses the Cedar River. Built in 1916 and 1917, the bridge is a steel, 8-panel, riveted Pratt through truss with A-frame portal bracing and 45-degree heel strut bracing. It was built by cement contractors Charles H. and Joseph H. Russell of Waverly and the Illinois Steel Bridge Company, based on a design by the Iowa State Highway Commission. As of 2017, it was one of three surviving bridges fabricated and installed in Iowa by the Illinois Steel Bridge Company of Jacksonville, Illinois. After its completion, an area that was once stymied due to the absence of a bridge in the southeast quadrant of Waverly saw growth in newly platted neighborhoods south of the river.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tSE 3rd St.<br />Waverly, IA 50677<br />Bremer County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bethany Danish Evangelical Lutheran Church",
            "lat": "41.652302",
            "lon": "-95.053165",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/audubon-nhr-bethanydanishevangelicallutheranchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bethany Danish Evangelical Lutheran Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.652302,-95.053165\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bethany Danish Evangelical Lutheran Church was built in 1898 by Nis P. Hjuler, a founding member of the Bethany congregation and Danish immigrant. When Danish immigrants settled in southwest Iowa they made concentrated efforts to remain cohesive, the building of a church was often considered a symbol of this. The Bethany Danish Evangelical Lutheran Church remains significant for it&#039;s association with the split of the Danish Lutheran Church in 1894, when the church split into two synods. While it was built four years after the historic split, it replaced the original church which had been struck by lightning and burned to the ground in 1898. The church was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2454 Crane Ave.<br />Kimballton, IA 51543<br />Audubon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "La Porte City Town Hall and Fire Station",
            "lat": "42.313744",
            "lon": "-92.191742",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-laportecitytownhallandfirestation.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">La Porte City Town Hall and Fire Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.313744,-92.191742\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77mi.</span></div>\n\t\t</div>\n\n\t\t<p>The La Porte City Town Hall and Fire Station was built at a time when the popular philosophy was to keep all government operations under one roof, making the building one large service facility. In addition to the city hall and the fire station, the city jail was also located in this building. The building is recognizable by the two large arch shaped doorways. It was added to the National Register of Historic Places in 1977. It is now used as the La Porte City FFA Historical and Ag Museum Rural Heritage Center.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t413 Chestnut St.<br />La Porte City, IA 50651<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chapple and Young Block",
            "lat": "42.314576",
            "lon": "-92.191284",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-chappleandyoungblock.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chapple and Young Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.314576,-92.191284\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chapple and Young Block is a commercial complex in LaPorte City. Construction on this block began in 1892, and lasted through 1896. The design of the building shows the influence of Romanesque styling in the architecture. It was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t316 E Main St.<br />La Porte City, IA 50651<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "La Porte City FFA Historical and Ag Museum",
            "lat": "42.314285",
            "lon": "-92.190631",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-historymuseum-laportecityffahistoricalandagmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">La Porte City FFA Historical and Ag Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.314285,-92.190631\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77mi.</span></div>\n\t\t</div>\n\n\t\t<p>The La Porte City FFA Historical and Ag Museum has over 8,000 square feet of innovative and education exhibits that celebrate the history, art and culture of our community, state and nation. The lower level is dedicated to agricultural heritage. It documents the role of agriculture and rural America in the building of the nation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t408 Main St.<br />La Porte City, IA 50651<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.342.3619</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://lpcmuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Waverly Theatre",
            "lat": "42.725587",
            "lon": "-92.469909",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Waverly Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.725587,-92.469909\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Waverly Theatre was built in 1926 in conjunction with the Masonic Lodge. It was once a single theater, then a double theater, and was a tri-plex by 1999. The theatre is still operates as the Waverly Palace Theater.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t90 E Bremer Ave.<br />Waverly, IA 50677<br />Bremer County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Clement B. Gingrich House",
            "lat": "42.313909",
            "lon": "-92.188396",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-nhr-clementbgingrichhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clement B. Gingrich House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.313909,-92.188396\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Gingrich House is the best preserved and most substantial example of the early 20th century revival style of residential architecture in La Porte City. It was designed by G. Ralston and its interior features well preserved craftsman style features. It was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 Walnut St.<br />La Porte City, IA 50651<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bremer County Courthouse",
            "lat": "42.726496",
            "lon": "-92.465139",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bremer County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.726496,-92.465139\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bremer County Courthouse was built in 1937 at a cost of $139,000. It was one of ten county courthouses built in Iowa during the New Deal Era as part of the federal Public Works Administration (PWA) program&#039;s operation in the 1930s and early 1940s. It is an example of the PWA Moderne style of public building architecture developed during the 1930s and early 1940s. Its design blends Art Deco and Moderne elements. It was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t415 E Bremer Ave.<br />Waverly, IA 50677<br />Bremer County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Blake Barn",
            "lat": "40.914314",
            "lon": "-93.796494",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Blake Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.914314,-93.796494\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 33x39-foot barn actually sits on Benson Street, which crosses over I-35. Interestingly, the barn is highly visible from I-35. The barn was built in 1902, has a gambrel roof, and a stairway to the loft.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2155 Benson St.<br />Weldon, IA 50264<br />Clarke County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Algona Nativity Scene",
            "lat": "43.060454",
            "lon": "-94.229265",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Algona Nativity Scene</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.060454,-94.229265\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Algona Nativity Scene was first built in 1942. The scene was built by German Prisoners of War from Camp Algona. It features over 60 life-size figures depicting the birth of Jesus. The scene was used as a symbol of unity, and since 1945, has attracted people from all around the country to see the common symbol of faith. The Nativity Scene is displayed at the Kossuth County Fairgrounds from the first Sunday in December through New Year&#039;s Eve and during the off-season by appointment by contacting the First United Methodist Church.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t700 E Fair St.<br />Kossuth County Fairgrounds<br />Algona, IA 50511<br />Kossuth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.295.7241</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://algonanativityscene.omeka.net/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Kossuth County Agriculture &amp; Motorsports Museum",
            "lat": "43.060198",
            "lon": "-94.228413",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kossuth County Agriculture &amp; Motorsports Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.060198,-94.228413\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kossuth County Agriculture and Motorsports Museum honors the rich history and heritage of agriculture and motorsports in Kossuth County. Located at the museum, the Benschoter Train Station features Arlen Benschoter&#039;s life-long collection of working scale model &quot;O&quot; gauge trains. The Racing Hall of Fame recognizes individuals with a record of success and contributions to racing in the county since 1914.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t800 E Fair St.<br />Kossuth County Fairgrounds<br />Algona, IA 50511<br />Kossuth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.395.1200</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.kossuthmuseum.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ladora Savings Bank",
            "lat": "41.754909",
            "lon": "-92.183902",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/iowa-nhr-ladorasavingsbank.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ladora Savings Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.754909,-92.183902\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ladora Savings Bank is the last largely intact building in what was once an important eastern Iowa commercial district. Built in 1920 in the Classical Revival style, it is typical of Iowa small town banks of the period. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t811 Pacific St.<br />Ladora, IA 52251<br />Iowa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Union County Historical Complex and Museum",
            "lat": "41.051206",
            "lon": "-94.382582",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/union-historymuseum-unioncountyhistoricalvillageandmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Union County Historical Complex and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.051206,-94.382582\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Union County Historical Complex and Museum is located at McKinley Park. Many of the buildings are examples of what a prosperous 1890s village would have had. The complex has over a dozen buildings, including the Spaulding Methodist Church, a depot used at Lucas and Brooks, an 1855 log cabin and an 1896 barn. There are also signals from the Creston rail yard on display. The Lincoln #5 School, the last operating one room school in Union County, and was moved to the site from northern Union County.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 McKinley St.<br />McKinley Park<br />Creston, IA 50801<br />Union County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.782.4000</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Frank Phillips Visitor Center",
            "lat": "41.045050",
            "lon": "-94.380904",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/union-historicsite-frankphillipsvisitorcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Frank Phillips Visitor Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.045050,-94.380904\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Frank Phillips Visitors Center is a 1931 Phillips 66 gas station. It was one of the first Phillips 66 stations in Iowa. Frank Phillips was a farm kid and entrepreneur. By age 24, he owned all three barber shops in Creston and was married to the bank president&#039;s daughter. Phillips and his brother started the Anchor Oil and Gas Company in Osage County, Oklahoma, with assistance from his father-in-law. They struck oil! Eventually, all their holdings were consolidated in to the Phillips Petroleum Company and Phillips was a billionaire. His life took him many miles from Creston, but he maintained connections to the community. In 1996, the Phillips 66 station was restored as a visitor center. The visitor center has period gasoline pumps and Phillips&#039; original colors of orange and green.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUS Hwy. 34 W<br />Creston, IA 50801<br />Union County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.782.7021</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.unioncountyiowatourism.com/html/visitors.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Union County",
            "lat": "41.045332",
            "lon": "-94.380530",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Union County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.045332,-94.380530\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Union County Freedom Rock® contains four unique tributes. The north side of the rock has a tribute to the Rainbow Division, the 42nd Infantry. Many men in the Rainbow Division left for World War I from the Creston Depot. The east side of the rock shows the attack at Pearl Harbor and Doris “Dorie” Miller shooting down Japanese fighter planes. Miller served as a cook on the USS West Virginia. When the USS West Virginia was attacked at Pearl Harbor, Miller went above and beyond the call of duty and began firing anti-aircraft machine guns. The other image on the east side of the rock is a Korean War scene featuring a Jeep of that era still in use in Union County. The west side of the rock represents the Vietnam War with Huey helicopters and a duster tank. That side of the rock also commemorates the War on Terror, showing a stealth bomber, a Humvee and a Marine. The Marine is Lance Corporal C.J. Miller who was born in Creston and graduated from Nodaway Valley High School in Greenfield. Miller was killed in Iraq on December 11, 2006 and is buried in Creston. The Union County (Creston) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tNew York Ave.<br />Creston, IA 50801<br />Union County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Lake Theater",
            "lat": "43.136860",
            "lon": "-93.380896",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-theater-laketheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lake Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.136860,-93.380896\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lake Theater was built originally in 1890 as an opera house. The building was converted to a theater in 1904. The original interior was destroyed by a fire in 1935, but reopened only a year later. The original building is still standing and still in operation as a theater.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4 N 4th St.<br />Clear Lake, IA 50428<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William C. and Hertha Dau House",
            "lat": "43.066012",
            "lon": "-94.236528",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William C. and Hertha Dau House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.066012,-94.236528\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dau House, completed in 1937, is a rare example of Art Moderne and International Style in Iowa. Utilizing a flat roof and asymmetrical facades to accentuate the horizontal look, the house was the first in Algona to use glass-block windows and balustrade elements. The William C. and Hertha Dau House was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t315 S Dodge St.<br />Algona, IA 50511<br />Kossuth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rose Hill Methodist Episcopal Church",
            "lat": "41.320731",
            "lon": "-92.465423",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mahaska-nhr-rosehillmethodistepiscopalchurch\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rose Hill Methodist Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.320731,-92.465423\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">77.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This church was constructed in 1879 and is the only extant 19th Century ecclesiastical building remaining on its original site in this once flourishing Mahaska County Community. The building&#039;s design is a very good example of the Gothic Revival influence. The Rose Hill Methodist Episcopal Church was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t304 Main St.<br />Rose Hill, IA 52586<br />Mahaska County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Clear Lake Historical Society",
            "lat": "43.138409",
            "lon": "-93.382608",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-historicalsociety-clearlakehistoricalsociety.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clear Lake Historical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.138409,-93.382608\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clear Lake Historical Society serves as the primary private repository of historical documents, photographs, and artifacts related to Clear Lake&#039;s rich history. The archives are maintained at the Clear Lake Public Library in the History Room.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 N 4th St.<br />Clear Lake Public Library<br />Clear Lake, IA 50428<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.357.6133</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.clearlakehistoricalsociety.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Francis M. Rogers and Clarence and Hazel Knutson House",
            "lat": "43.138534",
            "lon": "-93.385327",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Francis M. Rogers and Clarence and Hazel Knutson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.138534,-93.385327\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rogers and Knutson House points out the financial success Rogers achieved in his banking career. It is also associated with the banking, hardware and insurance activities of C. A. Knutson, as well as the Knutson’s highly visible political and social contributions to the community. The home was built in 1895. It was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t315 N 3rd St.<br />Clear Lake, IA 50428<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John L. Etzel House",
            "lat": "43.138165",
            "lon": "-93.384015",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John L. Etzel House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.138165,-93.384015\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78mi.</span></div>\n\t\t</div>\n\n\t\t<p>John Etzel was a prominent Clear Lake merchant and financier in Clear Lake. The home is a modest, late Victorian eclectic design. The house was constructed in 1894. It is one of seven houses of similar style to be built by Rogers during the years 1890-1910. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t214 N 3rd St.<br />Clear Lake, IA 50428<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-ballrooms.png",
            "title": "Surf Ballroom",
            "lat": "43.139551",
            "lon": "-93.389787",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrocordo-historicballroom-surf.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-ballrooms.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Surf Ballroom</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.139551,-93.389787\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Surf Ballroom is an American cultural icon and an important historical landmark. The original Surf Ballroom was built in 1933 and destroyed by fire in 1947. The ballroom was rebuilt in 1948, across the street from the original location. The Surf Ballroom has a capacity of 2,100 and accommodates visitors with 30,000 square feet of entertainment area, including a 6,300 square foot dance floor. The Surf got its name (and motif) from the desire of the original owners to create a ballroom that resembled an ocean beach club. The Surf Ballroom is associated with Buddy Holly, legendary rockabilly pioneer. It was the last place that Holly played, before his tragic death on February 3, 1959. Holly was part of the Winter Dance Party Tour, which included Ritchie Valens and J.P. &quot;The Big Bopper&quot; Richardson. All three perished when their small plane crashed just north of Clear Lake, en route to the next gig. The Surf Ballroom was added to the National Register of Historic Places in 2011.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t460 N Shore Dr.<br />Clear Lake, IA 50428<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Missouri, Iowa and Nebraska Railway: Weldon Depot",
            "lat": "40.899064",
            "lon": "-93.734500",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Missouri, Iowa and Nebraska Railway: Weldon Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.899064,-93.734500\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78mi.</span></div>\n\t\t</div>\n\n\t\t<p>This depot reflects Weldon&#039;s origins as a railroad town and is a rare surviving reminder of the growth of the Missouri, Iowa, and Nebraska Railway under Iowa railroad builder Francis M. Drake. The line was later taken over by Jay Gould&#039;s Wabash line as a key part of his strategy to compete with the Chicago, Burlington, and Quincy Railroad. The depot was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Main St.<br />Weldon, IA 50264<br />Decatur County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Land and Loan Office Building",
            "lat": "43.068966",
            "lon": "-94.235678",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/kossuth-nhr-landandloanofficebuilding.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Land and Loan Office Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.068966,-94.235678\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Land and Loan Office, or &quot;Henry C. Adams Building,&quot; in Algona is the third in architect Louis H. Sullivan’s series of eight rural, Midwestern banks. Built in the early 1900s, the bank is one of the smallest of Sullivan&#039;s buildings, a simple brick block on the corner of one of Algona&#039;s busy commercial streets. This unique commercial structure features an early horizontal modern 20th century window of stained glass and more of Sullivan&#039;s memorable woodwork designs on the interior. The Land and Loan Office Building was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t123 E State St.<br />Algona, IA 50511<br />Kossuth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Kossuth County Historical Museum",
            "lat": "43.067996",
            "lon": "-94.236875",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/kossuth-historymuseum-kossuthcountyhistoricalmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kossuth County Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.067996,-94.236875\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1867 to serve as a schoolhouse, the two-story building was moved to its present site in 1887 for use by the James C. Taylor Post No. 165 of the Grand Army of the Republic (G.A.R.). That change in ownership required some alteration to the building. The former open classrooms on both the first and the second floors readily accommodated the new occupant&#039;s need for assembly and meeting space. The building was subsequently occupied by the American Legion Post (1919-1967) and the Kossuth County Historical Society, both of which utilized the building with little changes. The Kossuth County Historical Society was created in 1959 to preserve and collect items of historical significance to the people and places of Kossuth County, Iowa, and make them available to the general public. In addition to objects, they also collect and archive photographs, records, documents, and other historical materials. The building was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t122 S Dodge St.<br />Algona, IA 50511<br />Kossuth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.320.2091</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.kossuthcountygenealogicalsociety.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Clear Lake Fire Museum",
            "lat": "43.138969",
            "lon": "-93.380051",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-historymuseum-clearlakefiremuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clear Lake Fire Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.138969,-93.380051\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clear Lake Fire Museum was opened on September 3, 1984. This museum showcases the history of firefighting and fire safety in North Central Iowa. The Museum has a working 1924 Ahrens-Fox Pumper Engine, which they call the &quot;Rolls-Royce&quot; of fire engines. There is also a fire safety classroom, and a piece of steel from the 9/11 attacks.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t112 N 6th St.<br />Clear Lake, IA 50428<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.357.2613</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://clearlakefire.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Camp Algona POW Museum",
            "lat": "43.068150",
            "lon": "-94.238092",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/kossuth-historymuseum-campalgonapowmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Camp Algona POW Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.068150,-94.238092\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Camp Algona POW Museum is a 14,000 sq. ft. museum dedicated to the World War II Prisoners of War at Camp Algona. The museum holds exhibits on the history of the prisoners that were held there, the Algona Nativity Scene, and an exhibit on service personnel from Kossuth County.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 S Thorington St.<br />Algona, IA 50511<br />Kossuth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.395.2267</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://pwcamp.algona.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Call Opera House and Algona Theater",
            "lat": "43.068731",
            "lon": "-94.234653",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Call Opera House and Algona Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.068731,-94.234653\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Call Opera House opened in 1892 and was converted into a movie theater in 1916. The theater was destroyed by fire in 1937 and was rebuilt, only to be lost to fire again in 1950. The theater was once again rebuilt in 1951 and named The Algona Theater. A large theater at the time, it had seating for approximately 750 people. The theater ceased operations in 2003.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t216 E. State St.<br />Algona, IA 50511<br />Kossuth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "West Barn",
            "lat": "40.899927",
            "lon": "-93.783190",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.899927,-93.783190\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 30x60 foot pegged barn is in a nostalgic hidden corner of Clarke County. The barn is unusual in that it has a large hay mow door on each end of the barn.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2239 Clarke-Decatur St.<br />Weldon, IA 50264<br />Clarke County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "John Deere Waterloo Operations - Tractor Cab and Assembly Operations",
            "lat": "42.524677",
            "lon": "-92.271226",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Deere Waterloo Operations - Tractor Cab and Assembly Operations</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.524677,-92.271226\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>See John Deere tractors being made from start to finish on this one-of-a-kind tour. John Deere has long been known as the world&#039;s leading manufacturer of agricultural tractors. John Deere is the sole tractor manufacturing plant left in the world that retains its founder&#039;s name.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3500 E Donald St.<br />Waterloo, IA 50703<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.292.7668</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"www.johndeere.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Fossil and Prairie Park Preserve and Center",
            "lat": "43.047399",
            "lon": "-92.980997",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/floyd-botany-fossilprairieparkpreserve.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fossil and Prairie Park Preserve and Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.047399,-92.980997\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Visitors can search for and collect Devonian fossils and wander through native prairie. Visitors can also view the beehive kilns of Rockford Brick and Tile Company and learn how their product helped expand agriculture.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1227 215th St.<br />Rockford, IA 50468<br />Floyd County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.756.3490</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.fossilcenter.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Iowa Trolley Park",
            "lat": "43.135877",
            "lon": "-93.346294",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Trolley Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.135877,-93.346294\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Trolley Park originally opened as the Mason City and Clear Lake Traction Company on December 5, 1896. They continued until they became the Iowa Terminal Railroad in 1960. In 2006, the Iowa Trolley Park was opened to the public to interpret and educate the public on the history of the railroad and the industrial growth it brought to the area. The park features hand car, speeder, and diesel rides, tours of the Chicago, Milwaukee, St. Paul and Pacific Depot, car barn and San Francisco PCC car and the trailer car number 28.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3249 Main Ave.<br />Clear Lake, IA 50428<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.357.7433</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://iowatrolleypark.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Patrick&#039;s Roman Catholic Church",
            "lat": "41.013692",
            "lon": "-92.955782",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monroe-nhr-stpatricksromancatholichchurch-1b-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Patrick&#039;s Roman Catholic Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.013692,-92.955782\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Patrick&#039;s at Georgetown is locally significant as the marker pointing to the influx of Irish settlers into Monroe County. It is also a good example of a vernacular Gothic Revival executed in local stone. Irish immigrants from the Eastern United States and Ireland settled in Monroe County in the late 1840s, 1850s, and 1860s bringing with them a deep religious faith and a familiarity with the ecclesiastical architecture in their homeland. It was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUS Hwy. 34<br />Albia, IA 52531<br />Monroe County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Audubon County",
            "lat": "41.629839",
            "lon": "-95.071837",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Audubon County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.629839,-95.071837\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Audubon County Freedom Rock® in Kimballton honors the strong Danish heritage of the community, which is also home to a replica Little Mermaid statue by Hans Christan Andersen. The rock features the Little Mermaid holding the American and Danish flags which represents the many Danish-American soldiers from the area that served the country. There are many unique sites in the county featured, including the Heritage Rose Garden in Gray, Albert the Bull, the Plow in the Oak, and the Tree in the Middle of the Road. In addition, the rock depicts the county&#039;s namesake, John James Audubon, who created &quot;The Birds of America&quot;. The Audubon County (Kimballton) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t150 Esbeck St.<br />Kimballton, IA 51543<br />Audubon County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Hans J. Jorgensen Barn",
            "lat": "41.631880",
            "lon": "-95.073793",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/audubon-barn-hansjorgensonbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hans J. Jorgensen Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.631880,-95.073793\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hans J. Jorgensen Barn represents the life and accomplishments of Danish immigrant Hans J. Jorgensen. Jorgensen immigrated to Iowa where he purchased land in Audubon County and assisted the Danish immigrants in settling. In addition to founding the community of Kimballton, Jorgensen was best known for helping others. He often opened his farm to those with no where to stay. His barn is a Square Hipped Roof Barn, a rare barn type, that is associated with the Danish settlement area. It is the only surviving barn of this type in the settlement area. The Hans J. Jorgensen Barn was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2599 Bluebird Ave.<br />Kimballton, IA 51543<br />Audubon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Kimballton Commercial District",
            "lat": "41.628785",
            "lon": "-95.072705",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/audubon-historicdistrict-kimballtoncommercialdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kimballton Commercial District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.628785,-95.072705\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kimballton Commercial District, centered around the intersection of Alfred Street and Main Street (IA Hwy. 173), illustrates the growth and evolution of the Danish immigrant community of Kimballton. The district has distinctive characteristics of type, period, and method of construction and was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St. and Alfred St.<br />Kimballton, IA 51543<br />Audubon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bennedsen, Boldt and Hansen Building",
            "lat": "41.628327",
            "lon": "-95.072628",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/audubon-historymuseum-generalstoremuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bennedsen, Boldt and Hansen Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.628327,-95.072628\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bennedsen, Boldt, and Hansen Building is locally significant because it exemplifies the work of skilled Danish immigrant craftsmen in a Danish community utilizing materials manufactured by a local Danish immigrant-established industry. The building was constructed by Danish immigrants Niels Bennedsen, a mason; Hans P. Boldt, a carpenter and manager of the Green Bay Lumber Company in Kimballton; and Hans P. Hansen, a carpenter. The building has been used as a funeral home. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t108 N Main St.<br />Kimballton, IA 51543<br />Audubon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Immanuel Danish Evangelical Lutheran Church",
            "lat": "41.629363",
            "lon": "-95.074470",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/audubon-nhr-immanueldanishevangelicallutheranchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Immanuel Danish Evangelical Lutheran Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.629363,-95.074470\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Immanuel Danish Evangelical Church was built in 1904 at a cost of $7,000 and is significant because of its association with the Grundtvigian Synod of the Danish Lutheran Church following the historic split within the church in 1894. This church is the best representation of that historic synod in the Kimballton community and the two-county area. The church also influenced the growth and development of the Danish community of Kimballton. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 W 2nd St.<br />Kimballton, IA 51543<br />Audubon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jens T. Larsen House",
            "lat": "41.627114",
            "lon": "-95.073275",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jens T. Larsen House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.627114,-95.073275\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jens T. Larsen House is locally significant because it exemplifies the work of skilled Danish immigrant craftsmen: Anders and Thorvald Jensen. This work is evidenced not only in the unique features of its design, including the oddly angled wall and small tower, but also in the handcrafted detailing of its exterior decorative elements. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t103 S Main St.<br />Kimballton, IA 51543<br />Audubon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Stinson Prairie",
            "lat": "43.047145",
            "lon": "-94.325308",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stinson Prairie</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.047145,-94.325308\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Stinson Prairie displays diverse plant and animal communities ranging from pothole marsh to dry prairie. Walk the narrow footpath to the crest of the hill and look south. You are standing on the conspicuous edge of the Algona end moraine. This was the “end of the road” for the glacier that was here 12,500 years ago. As it melted, the gravel and rock that it had carried with it dropped out and remains as a high ridge today. This ridge overlooks a level outwash plain to the south and marks the last advance of the Des Moines Lobe ice sheet.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t70th Ave.<br />Algona, IA 50511<br />Kossuth County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.watchablewildlifenwia.org/sites-StinsonP.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Kimballton West 2nd and West 3rd Street Residential District",
            "lat": "41.628792",
            "lon": "-95.075929",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kimballton West 2nd and West 3rd Street Residential District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.628792,-95.075929\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kimballton West 2nd and West 3rd Street Residential District, bounded by West 2nd Street on the east, Esbeck Street on the north, West 3rd on the west and Odense Street on the south, illustrates the boom period in the growth, development, and prosperity of this period in the Danish immigrant community of Kimballton. Seventy buildings are in the district, including homes and outbuildings. The area imparts a strong sense of time and place, and reflects the railroad boom years from 1907-1918. The oldest building in the district is Immanuel Lutheran Church built in 1904, and only six buildings in the district were constructed after 1940. The district was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW 2nd and W 3rd Sts.<br />Kimballton, IA 51543<br />Audubon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Kosman Barn",
            "lat": "40.890495",
            "lon": "-93.748987",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/decatur-barn-kosmanbarn-2.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kosman Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.890495,-93.748987\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kosman Barn as built in 1907 and frequently used for large barn dances. It has always been used for horses and cattle. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10611 240th Ave.<br />Weldon, IA 50264<br />Decatur County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hans M. Koch House",
            "lat": "41.619999",
            "lon": "-95.073771",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hans M. Koch House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.619999,-95.073771\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hans M. Koch House is directly associated with the Danish immigrant construction industry of the Crystal Springs Brickworks. It was built to serve as the manager&#039;s residence for this brickyard and was situated within close proximity to the yard itself. The Crystal Springs Brickworks supplied brick and tile for many commercial buildings in the surrounding areas, the Hans M. Koch House is the only remaining remnant of the operation. The property also exemplifies the work of a skilled Danish immigrant craftsman and the products of an important local building industry established by Danish immigrants. The building is further significant because it is a gabled double-pile house type which was common to the Danish settlement area of Shelby and Audubon counties in the early 1900s and may be a reflection of a Danish house form. The Hans M. Koch House was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA Hwy. 173<br />Kimballton, IA 51543<br />Audubon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bedstemor&#039;s House (Jens Otto Christiansen House)",
            "lat": "41.593729",
            "lon": "-95.060820",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-nhr-jensottochristensenhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bedstemor&#039;s House (Jens Otto Christiansen House)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.593729,-95.060820\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bedstemor&#039;s House is a historic home in Elk Horn which is owned and operated by the Danish Immigrant Museum. It has been restored and is completely furnished to reflect the style of the period between 1910 and 1920 when young Danish-American families lived there. Bedstemor means “grandmother” in Danish. The home was originally known as the Jens Otto Christiansen House. It exemplifies the work of a skilled Danish immigrant craftsman and embodies the characteristics of the architectural style and design associated with the Danish settlement area of Shelby County. The Jens Otto Christiansen House was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2105 College St.<br />Elk Horn, IA 51531<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William Waterfield House",
            "lat": "42.464987",
            "lon": "-92.220043",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William Waterfield House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.464987,-92.220043\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>William Waterfield came to Iowa around 1856, and began his career as a &quot;general farmer,” later concentrating on dairy cattle and hogs. He is believed to have operated a hotel in Raymond (perhaps out of his house) for about 10 years, catering particularly to workmen on the Dubuque and Sioux City Railroad. Waterfield&#039;s choice of the octagonal design for this house was probably no accident: he was a student of phrenology, as was Orson Fowler, and lectured occasionally on the subject both in Iowa and Illinois. An acquaintance with Fowler&#039;s writings on phrenology may have led Waterfield to the New Yorker&#039;s publications describing and promoting the octagon home. The Waterfield house, built in 1867, is one of approximately 20 octagon houses presently known to exist in Iowa. It was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t308 3rd St. S<br />Raymond, IA 50667<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chris Larsen House",
            "lat": "41.592443",
            "lon": "-95.059700",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-nhr-chrislarsenhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chris Larsen House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.592443,-95.059700\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chris Larsen House is locally significant home that embodies the characteristics and distinctive elements of Danish architecture, which was a building trend that was common in the areas of Shelby and Audubon counties. The Chris Larsen House was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4215 Main St.<br />Elk Horn, IA 51531<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Bruce Goldfish Fisheries Farmstead",
            "lat": "41.455076",
            "lon": "-92.316069",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bruce Goldfish Fisheries Farmstead</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.455076,-92.316069\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">79mi.</span></div>\n\t\t</div>\n\n\t\t<p>The origins of the Bruce Fisheries can be traced back to 1845 when Elgin K. Bruce purchased a pail of goldfish from a sailor in Philadelphia and took them home with him to Pittsburg where he placed them in an ice pond. In 1871, while visiting relatives in Iowa, Bruce purchased eighty acres in Prairie Township in Keokuk County and six years later he and his family moved there. The business had ceased to exist by the end of 1940, the property stayed in the Bruce family until 1978. The Bruce Goldfish Fisheries were added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t13842 150th Ave.<br />Thornburg, IA 50255<br />Keokuk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "1848 Danish Windmill and Welcome Center",
            "lat": "41.589665",
            "lon": "-95.060520",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-historicsite-danishwindmill.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">1848 Danish Windmill and Welcome Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589665,-95.060520\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">79mi.</span></div>\n\t\t</div>\n\n\t\t<p>The 1848 Danish Windmill and Welcome Center was built originally in Norre Snede, Denmark. The mill is one of many such mills in Europe, and was suffering from neglect and started to deteriorate. The idea to move the mill was started by Danish Citizens, and they decided to move to Elk Horn, because it had one of the highest concentration of Danes in the US. The mill was moved in 1976, and cost over $100,000 to reassemble it. In the 30 years that Elk Horn has enjoyed this mill, it has become one of the most popular and successful tourist attractions in Iowa. It is also an official Iowa Welcome Center.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4038 Main St.<br />Elk Horn, IA 51531<br />Shelby County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.764.7472</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.danishwindmill.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "VikingHjem (Viking Smithy&#039;s Home)",
            "lat": "41.589086",
            "lon": "-95.060375",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">VikingHjem (Viking Smithy&#039;s Home)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589086,-95.060375\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">79mi.</span></div>\n\t\t</div>\n\n\t\t<p>The VikingHjem is a replica of a 900 A.D. Viking smithy&#039;s home on the grounds of the Danish Windmill. This representation of a typical Scandinavian and Northern European building includes a blacksmith shop, woodworking area, and an attached living space typical of the Viking Age. The facility offers an interactive experience with demonstrations and lectures.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4038 Main St.<br />Elk Horn, IA 51531<br />Shelby County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.764.7472</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.danishwindmill.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Massena Historical Society",
            "lat": "41.252987",
            "lon": "-94.769241",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Massena Historical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.252987,-94.769241\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">79mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Massena Historical Society restored, maintains and gives tours of local historic landmarks, including a county school house. The school house, Victoria No. 8, was brought in to town from Victoria Township when a farmer wanted to farm his land and threatened to push it into a ditch. Since then, the Massena Historical Society has undertaken numerous preservation projects, including a Phillips 66 Filling Station and a local barber shop.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t203 Main St.<br />Massena, IA 50853<br />Cass County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.779.3457</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://cchmiowa.org/http/index.html.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Keokuk County",
            "lat": "41.401277",
            "lon": "-92.354907",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Keokuk County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.401277,-92.354907\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">79.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Keokuk County Freedom Rock® in What Cheer  features the Grand Army of the Republic (GAR). The GAR was a fraternal organization composed of the veterans of the Union Army, Navy, Marines and the Revenue Cutter Service who served in the Civil War for the Union. There were many GAR veterans who settled back in Iowa after the war, and Keokuk County was no exception. In fact, there was even one man who had the honor of escorting President Abraham Lincoln in and out of the capitol. \r\n\r\nOn the back side is a tribute to some local veterans who represent a few different eras of service. Ronald Shirlaw had distinguished service in both World War II and Korea. He earned the Silver Star, two Distinguished Flying Crosses, a Bronze Star and Prisoner of War Medal. Ronald was captured by communist forces after he was shot down over North Korea and was held as a Prisoner of War until his release during Operation Big Switch at the end of the war. Ronald is represented by his image and a POW scene of his plane crash landing in the background. Gary Ferns, a decorated Vietnam veteran, retired after 21 years of service in the US Army as a Special Forces officer. He earned the Silver Star, Bronze Star and Purple Heart. He is represented by his image along with a Green Beret in action and a Vietnam background. Emery Kerr was a medic in World War II and he is represented by an image of him in action in Sicily.\r\n\r\nThe Keokuk County (What Cheer) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2016.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t109 N Barnes St.<br />What Cheer, IA 50268<br />Keokuk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Kinney Pioneer Museum",
            "lat": "43.150009",
            "lon": "-93.337603",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-historymuseum-kinneypioneermuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kinney Pioneer Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.150009,-93.337603\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">79.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Kinney Pioneer Museum is a collection of historical artifacts that preserve and display the pioneer way of life in rural North Central Iowa. The museum includes exhibits and displays on early agricultural artifacts, amenities and social practices of the past, as well as their relationship to the growth of the industry, education, and cities and towns of the area. The Junction School is on site.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t9184 265th St.<br />Clear Lake, IA 50428<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.423.1258</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "What Cheer Opera House",
            "lat": "41.401428",
            "lon": "-92.354968",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">What Cheer Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.401428,-92.354968\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">79.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The What Cheer Opera House was completed in 1893, when What Cheer was a thriving coal mining community. Special excursion trains would bring patrons from towns as distant as 40 miles. By the early 1960s, the Masons had abandoned their quarters on the top floor and the building was no longer in use as an opera house. The building was to be demolished, but in 1965, a group of citizens rallied to save it. Countless days were spent researching the fascinating history and original physical details of the building; and hundreds of hours were spent by volunteers in restoring it to its original condition and authentic style. The opera house is still in operation, and continues to bring world class entertainment to a town with a population less than 1,000 people.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 Barnes St.<br />What Cheer, IA 50268<br />Keokuk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rockford Mill",
            "lat": "43.050493",
            "lon": "-92.941943",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rockford Mill</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.050493,-92.941943\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">79.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built by J.T. Graham, who was prominent in the milling industry, and Dell Cutler in 1873, Rockford Mill is a well preserved small frame mill. It is one of the few dozen extant water powered mills remaining in Iowa, and the last one remaining in Floyd County. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t108 4th St. SE<br />Rockford, IA 50468<br />Floyd County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Museum of Danish America",
            "lat": "41.593297",
            "lon": "-95.068973",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-historymuseum-museumofdanishamerica.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Museum of Danish America</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.593297,-95.068973\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">79.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Founded in Elk Horn in 1983, the National Museum of Danish Heritage was built by Danish Americans on a 20 acre site. The 16,000 square foot museum is reminiscent of Danish construction with the half-timbered architecture. This museum is dedicated to telling the stories of the travels of the Danish immigrants to America. There are programs given along with special events and the exhibits. The museum has the largest collection of Danish-American artifacts in one location in the world. Opened in 1996 is the Family History and Genealogy has assisted many to find relatives they have lost track of in both Denmark and America. It is located about 1/2 mile from the museum grounds.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2212 Washington St.<br />Elk Horn, IA 51531<br />Shelby County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.759.9192</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://danishmuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Pharmacists Mutual Companies Museum",
            "lat": "43.083733",
            "lon": "-94.247771",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/kossuth-historymuseum-pharmacistsmutualcompaniesmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pharmacists Mutual Companies Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.083733,-94.247771\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">79.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pharmacists Mutual Companies Museum was opened in 1972 to educate the public about the history of pharmaceuticals. The museum features a replica of an early 1900s pharmacy, complete with glass-labeled shelf bottles, proprietary remedies, scales, perfumes, and baby supplies. This exhibit dramatizes the fact that Pharmacists Mutual Insurance Company was organized and established by pharmacists and remains dedicated to serving the needs of the profession to this day.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t808 U.S. 18<br />Algona, IA 50511<br />Kossuth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.247.5930</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.phmic.com/aboutus/pages/museum.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Poplar Rural District",
            "lat": "41.674178",
            "lon": "-95.112292",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-nhr-poplarruraldistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Poplar Rural District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.674178,-95.112292\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">79.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Poplar Rural District is significant at the national and state levels because it is associated with the rural community settlement and farming patterns of the largest rural Danish immigrant settlement in Iowa and the United States. The district still appears much as it did during the early 1900s. The district is also significant at the local level because its architectural resources exemplify the work of skilled Danish immigrant craftsmen and their apprentices. The Poplar Rural District was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWildwood Rd. and 1200th St.<br />Jacksonville, IA 51537<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Bennington No. 4 School",
            "lat": "42.599692",
            "lon": "-92.297293",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bennington No. 4 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.599692,-92.297293\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">79.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Bennington No. 4 is a one-room school built in 1911. It is located on its original site amid active farms in rural Bennington Township. Bennington Township was a prospering German-American settlement at the time the school was built. Visitors can experience 20th century life from 1945-1955 at the school and three outbuildings. (By appointment only).</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBennington Rd. and Sage Rd.<br />Waterloo, IA 50703<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.233.4974</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Allee Mansion",
            "lat": "42.589314",
            "lon": "-95.009671",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Allee Mansion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.589314,-95.009671\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">79.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Allee Mansion was built in 1891 by Jesse and Mary Allee. It is a Queen Anne style mansion with a turret, five unique fish-scale patterns, seven original stained glass windows, three sets of oak pocket doors, etched glass door windows, an open staircase and an ornate fireplace. It is suspected, but unconfirmed, that the home may have been designed by George F. Barber and Company of Knoxville, Tennessee, one of the leading late 19th century mail order architectural firms. Jesse and Mary lived in the home with their children, Sarah and George. Neither of them married, and the family line ended with the death of George. In 1958, George Allee donated his parents farm and mansion to Iowa State University (ISU). In 1989, ISU leased the Victorian mansion to the Newell Historical Society, which restored it and maintains it as a museum. It was added to the National Register of Historic Places in 1992.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2006 640th St.<br />Newell, IA 50568<br />Buena Vista County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.272.4566</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.newellhistorical.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Elmwood-St. Joseph Municipal Cemetery Historic District",
            "lat": "43.138264",
            "lon": "-93.202005",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/cerrogordo-cemetery-nrhp-elmwood-stjoseph-5-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Elmwood-St. Joseph Municipal Cemetery Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.138264,-93.202005\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">80.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The earliest burial ground in Mason City was owned by pioneer settlers and located near the current day intersection of Elm Drive and 9th Street NE in the 1850s. On May 4, 1876 the Mason City Cemetery Association was incorporated and at its meeting on May 11, 1867 decided to purchase five acres from John Dexter for a new cemetery that would become the Mason City Cemetery (now known as Elmwood Cemetery). The first documented burial in the new cemetery was Willie Doolittle who died in July 1867. Those interred in the old burial ground were exhumed and re-interred in the new cemetery over the course of a few decades. In 1873, four acres of land immediately north of, and adjacent to, Elmwood Cemetery was purchased for St. Joseph&#039;s Parish and in 1875 St. Joseph Cemetery was established on that land. In 1896, the official name of the Mason City Cemetery was changed to Elmwood Cemetery. The cemetery continued to expand in the decades that followed with additions designed by notable landscape architects, H.W.S. Cleveland, Ray Wyrick and Donald W. Drewes. The cemetery has four mausoleum structures built in 1908 (William Smith family), 1910 (Gale and Emsley families), 1912 (Vermilya and Dilts families) and 1915 (Minnie Melson). Throughout the cemetery you will find sections dedicated to different ethnic and religious groups, however the cemetery was never segregated. Those of the Catholic faith were traditionally buried in St. Joseph Cemetery or the Oakland and Edgewood additions, and later sections dedicated to those of the Jewish faith were also established. The Third Addition is representative of immigrant workers from various countries including, Russia, Greece, Poland, Germany, Bohemia, Bulgaria, Denmark and England. In addition the Hillside section for the Greek Orthodox and Blocks 2 and 3 of the Third Addition for the Serbs and Slavs. There were also several Potter&#039;s Fields in Elmwood-St. Joseph Cemetery for those who could not afford to pay for a burial, including a section that served as the burial ground for the Cerro Gordo County Poor Farm (County Home) that did not have a cemetery on its property. Many notable Mason City citizens are buried here, including American composer and playwright, Robert Meredith Willson, whose most famous work &quot;The Music Man&quot; was an attempt to play tribute to his home state of Iowa. The Elmwood-Saint Joseph Municipal Cemetery Historic District was added to the National Register of Historic Places in 2018.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1224 S Washington Ave.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Owen School No. 3",
            "lat": "43.150828",
            "lon": "-93.255206",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Owen School No. 3</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.150828,-93.255206\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">80.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Owen No. 3 school was built in 1873 and operated until 1959. This schoolhouse was one of 9 schoolhouses built in the Owen Township. It contains many of its original amenities, including a pot-bellied stove, wooden desks, and slate writing boards.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3700 4th St. SW<br />North Iowa Fairgrounds<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. John Baptist Church",
            "lat": "43.146174",
            "lon": "-93.212398",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. John Baptist Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.146174,-93.212398\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">80.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. John Baptist Church is a small limestone structure and is the only church that was owned and built by African-Americans in Mason City. The church was organized in 1918, but construction did not begin until 1937. At first there was only a basement structure, and the entire church was competed and dedicated in 1940 while Rev. J.M. Eaves was the minister. It was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t715 6th St. SW<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "La Faun Amos House",
            "lat": "43.146890",
            "lon": "-93.213120",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a852c463332360b8f.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">La Faun Amos House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.146890,-93.213120\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">80.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>On December 8, 1951, La Faun Amos, her husband John, and six friends attempted to attend the Lionel Hampton concert at the Surf Ballroom in Clear Lake. All African Americans, the group was denied entrance. In November 1953, Amos sued the owners of the ballroom in federal district court, charging that her group of friends was refused admittance solely because of race. \r\n\r\nThe discrimination Amos and the others experienced was in violation of Chapter 735 of the Code of the State of Iowa (1950) that states “all persons within the state shall be entitled to the full and equal enjoyment of accommodations, advantages, facilities and privileges of inns, restaurants, chophouses, eating houses, lunch counters, and all other places where refreshments are served.”\r\n\r\nIn June 1952, a group of United Packinghouse Workers of America (UPWA) filed a similar lawsuit but the owners of the Surf Ballroom were acquitted. Determined to continue the fight, and the UPWA aided Amos with her suit in federal court for discrimination. The judge awarded Amos $400 of the $10,000 she sought, ruling that the group’s civil rights had been violated. \r\n\r\nThe Amos home is considered significant from 1951 through 1953, the dates of the Surf Ballroom incident and the trial.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t510 S Van Buren Ave.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Tessa Youngblood House",
            "lat": "43.151776",
            "lon": "-93.214082",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tessa Youngblood House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.151776,-93.214082\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">80.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Youngblood House is a fine example of the Prairie School architectural design type by Frank Lloyd Wright and was constructed in 1922. It was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t36 Oak Dr.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Meredith Willson Boyhood Home",
            "lat": "43.149061",
            "lon": "-93.198340",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-historicsite-meredithwilsonboyhoodhome.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Meredith Willson Boyhood Home</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.149061,-93.198340\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">80.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Meredith Willson was born in this restored 1895 Queen Anne house in 1902. He played in John Philip Sousa&#039;s band from 1921-1923. He immortalized his Iowa roots in his most famous work, &quot;The Music Man&quot; in which he wrote the story and music. &quot;The Music Man&quot; premiered on Broadway in 1957 and is still performed all over the world. He died in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t314 S Pennsylvania Ave.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.424.2852</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Music Man Square",
            "lat": "43.149318",
            "lon": "-93.198406",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-historicsite-musicmansquare.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Music Man Square</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.149318,-93.198406\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">80.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Meredith Willson, best known for writing the book, music and lyrics for the hit Broadway musical &quot;The Music Man,&quot; was born in Mason City in 1902. He patterned River City, the site of &quot;The Music Man&quot;, after Mason City. Music Man Square, located next to his boyhood home, honors the whole plot of &quot;The Music Man&quot;, and it includes the 1912 River City Streetscape, the Meredith Willson Museum and Monument.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t308 S Pennsylvania Ave.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.424.2852</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Curtis Yelland House",
            "lat": "43.148687",
            "lon": "-93.193728",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Curtis Yelland House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.148687,-93.193728\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">80.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Yelland House is a well-preserved example of the Prairie School architectural design type by Frank Lloyd Wright and was constructed in 1910. It was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t37 River Heights Dr.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Duncan Rule House",
            "lat": "43.149792",
            "lon": "-93.195189",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Duncan Rule House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.149792,-93.195189\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">80.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Duncan Rule House is one of a few examples in Iowa of Shingle Style architecture utilizing the open gable. It was designed by E.R. Bogardus (1850-1927), a long-time resident and builder in Mason City. Bogardus started a contracting business in 1873 with no formal architectural training. He gradually began to design, as well as construct houses and after 1894 devoted all his time to architecture. This house was built in 1909 and was owned by Duncan Rule, a local attorney. In 1920, the home was purchased by B.C. Way, owner of the local telephone company. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t321 2nd St. SE<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Keerl-Decker Residence",
            "lat": "43.149684",
            "lon": "-93.198546",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-nhr-keerldeckerresidence.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Keerl-Decker Residence</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.149684,-93.198546\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">80.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Keerl-Decker residence was designed by a noted Mason City architect, E.R. Bogardus, and built in 1902. The home is associated with two important Mason City families, the Keerls and the Deckers. The house is open as a bed and breakfast. It was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t119 2nd St. SE<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Historic Park Inn Hotel (City National Bank Building)",
            "lat": "43.151558",
            "lon": "-93.201676",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-nhr-historicparkinn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Historic Park Inn Hotel (City National Bank Building)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.151558,-93.201676\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">80.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Park Inn Hotel is the last remaining hotel that was designed and built by architect Frank Lloyd Wright. It was built in 1909 and has been refurbished to it&#039;s glory days, making it an internationally renowned hotel and architectural wonder. The hotel has a unique blend of historical beauty, impressive prairie school architecture and modern amenities. The Park Inn Hotel was added to the National Register of Historic Places in 1972.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t15 W State St.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-423-0689</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://wrightonthepark.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Grove City Townsite",
            "lat": "41.392849",
            "lon": "-94.963262",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-undergroundrailroad-grovecitytownsite-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grove City Townsite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.392849,-94.963262\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">80.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The town of Grove City, though no longer in existence, played an important role in Iowa’s Underground Railroad. David A. Barnett, a farm owner and local town promoter, operated a hotel called the Grove City House and worked with Oliver Mills and Rev. George Hitchcock of Lewis to assist freedom seekers travelling across Iowa during the late 1850s. This is stop #5 on the Freedom Trail tour: The Brown party stopped here, in what was once Grove City, on February 14, 1859. They stayed at the Grove City House, run by David A. Barnett. Brown’s group rested here overnight and left for Dalmanutha the next day.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t63833 Jackson Rd.<br />Atlantic, IA 50022<br />Cass County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Mason City Public Library and Historical Collections",
            "lat": "43.149143",
            "lon": "-93.197005",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-histmuseum-masoncitypubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mason City Public Library and Historical Collections</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.149143,-93.197005\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">80.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mason City Public Library is Mason City&#039;s leading center for historical research. The Lee P. Loomis Archive is an extensive collection of historical documents and photos, city directories and artifacts located within the Mason City Library.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t225 2nd St SE<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.421.2721</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Parker&#039;s Opera House",
            "lat": "43.152545",
            "lon": "-93.200838",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-nhr-parkeroperahouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Parker&#039;s Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.152545,-93.200838\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81mi.</span></div>\n\t\t</div>\n\n\t\t<p>Parker’s Opera House was designed by William Foster and built in 1883 by A.G. and A.T. Parker. Soon after its opening, it was described as “unsuited as an opera house” and used as a public hall. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t23 N Federal Ave.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mason City Downtown Historic District",
            "lat": "43.152679",
            "lon": "-93.201102",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-iowagreatplace-streetscape.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mason City Downtown Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.152679,-93.201102\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81mi.</span></div>\n\t\t</div>\n\n\t\t<p>Mason City&#039;s historic downtown district includes late 19th and early 20th central commercial architecture buildings. Also, Frank Lloyd Wright&#039;s only remaining Prairie School hotel, Park Inn, is located in this district. The district was designated at one of 10 Great Neighborhoods in America in 2013. It was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t15 N Federal Ave.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Rock Crest/Rock Glen Historic District",
            "lat": "43.150931",
            "lon": "-93.193102",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-nhr-rockglenhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rock Crest/Rock Glen Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.150931,-93.193102\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rock Crest/Rock Glen Historic District is the largest collection of Prairie School-styled homes surrounding a natural setting in the world. Mason City boasts two Frank Lloyd Wright properties, the George C. and Eleanor Stockman House and City National Bank &amp; Park Inn Hotel, however originally there had been plans for more. Wright’s departure to Europe in 1910 caused these plans came to a sudden halt. The vacuum created by Wright’s withdraw brought other Prairie School architects to Mason City, many former Wright associates. Marion Mahony Griffin, Walter Burley Griffin, Barry Byrne, William Drummond and local architect Einar Broaten combined to create Rock Crest – Rock Glen, located on both sides of Willow Creek, the first planned Prairie School development in America. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t99 Rock Glen<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-423-0689</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://wrightonthepark.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "C. F. Franke House",
            "lat": "43.151136",
            "lon": "-93.195215",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-nhr-frankehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">C. F. Franke House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.151136,-93.195215\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Franke House was built in 1916, and was designed by architects Liebbe, Nourse and Rasmussen. The house exhibits many of the fine characteristics of the Prairie School movement—inspired by Frank Lloyd Wright. The residence has also been referred to as the Margaret Loomis House—whose family lived in the house in the 1940s. It was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t320 1st St. SE<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First National Bank of Mason City",
            "lat": "43.151955",
            "lon": "-93.200749",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-nhr-firstnationalbankmasoncity.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First National Bank of Mason City</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.151955,-93.200749\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81mi.</span></div>\n\t\t</div>\n\n\t\t<p>Completed and first occupied in 1911, the First National Bank of Mason City is locally significant because it illustrates a new type of architecture emerging in Iowa during the early 20th century—the skyscraper. The building calls attention to the works of the architectural firm, Liebbe, Nourse and Rasmussen of Des Moines, Iowa. It was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5 N Federal Ave.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Former Mason City Public Library",
            "lat": "43.152097",
            "lon": "-93.197399",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-nhr-formermasoncitypubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Former Mason City Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.152097,-93.197399\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mason City Public Library building was the first building in the city built specifically to house a library. The Chicago architectural firm of Patton and Miller, specialists in library design, had numerous commissions in Iowa, including the Mason City Public Library. It was added to the National Register of Historic Places in 1989. The building has been repurposed for office space.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t208 E State St.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George Romey House",
            "lat": "43.151143",
            "lon": "-93.193426",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-nhr-romeyhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Romey House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.151143,-93.193426\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Romey House is a well-preserved example of the Prairie School architectural design type. It was built in 1920 and added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t428 1st St. SE<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jewell Apartments",
            "lat": "43.152901",
            "lon": "-93.207741",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-nhr-jewellapartments-2.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jewell Apartments</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.152901,-93.207741\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81mi.</span></div>\n\t\t</div>\n\n\t\t<p>These apartments are also referred to as the Fred Lippert Apartments or the Nelson and Kehm Property, and they were built in 1917. It is believed that Fred Lippert was the designer and builder of these apartments, which are an example of the Prairie School of architecture design. The apartments were added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t404 1st St. NW<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Modern Brotherhood of America",
            "lat": "43.151623",
            "lon": "-93.199129",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-nhr-modernbrotherhoodbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Modern Brotherhood of America</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.151623,-93.199129\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Modern Brotherhood of America Building is the only surviving sizeable office building in Mason City from the early 20th century. It was the only one constructed of its type and size. It was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t103 E State St.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Stockman House Museum and Mason City Architectural Interpretive Center",
            "lat": "43.152361",
            "lon": "-93.192175",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-nhr-stockmanhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stockman House Museum and Mason City Architectural Interpretive Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.152361,-93.192175\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Stockman House Museum, part of the Mason City Architectural Interpretive Center, is a prairie school style home built by Frank Lloyd Wright in 1908 for Dr. George E. Stockman and his wife. This design exemplifies Wright&#039;s early sensitivity to designing affordable housing for the middle class. In order to accomplish this, Wright produced some revolutionary and innovative ideas. The house was moved from it&#039;s original location in 1989 and added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t530 1st St. NE<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.421.3666</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://stockmanhouse.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "A. J. Andrus Duplex",
            "lat": "43.151483",
            "lon": "-93.187263",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-nhr-alandrusduplex.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">A. J. Andrus Duplex</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.151483,-93.187263\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Andrus Duplex (also known as the Paul Pritchard Duplex) is locally significant as an excellent example of the Prairie School architectural design type as it pertains to multiple family dwellings. It was built around 1921 and added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t687 E State St.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First Church of Christ Scientist",
            "lat": "43.154339",
            "lon": "-93.202327",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Church of Christ Scientist</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.154339,-93.202327\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built around 1928, the First Church of Christ Scientist was marked as one of the most notable achievements of Minneapolis architect Clyde W. Smith. The building features no symbols, icons or other typical religious ornamentation that would be representative of a religious hall. Instead it reflects and “advanced design” exhibited in the highest quality construction techniques and standards of the era. It was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t23 3rd St. NW<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mason City YMCA",
            "lat": "43.152519",
            "lon": "-93.197561",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mason City YMCA</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.152519,-93.197561\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mason City YMCA is significant for its association with events and their contributions to broad patterns of social history in Mason City and for its association with Charles H. MacNider and Hanford MacNider, two public spirited individuals influenced the growth and development of Mason City and the State of Iowa. It was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t15 N Pennsylvania Ave.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "State Street Bridge",
            "lat": "43.151836",
            "lon": "-93.191791",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-nhr-statestreetbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">State Street Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.151836,-93.191791\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The State Street Bridge was built in 1903 by N.M. Stark and Company from Des Moines to carry East State Street over Willow Creek. The technology of this bridge makes it an important example of its type. The replacement of the guardrails was the only significant change to the original structure, and it continues to carry traffic. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE State St.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "The Kirk",
            "lat": "43.153826",
            "lon": "-93.201359",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-nhr-thekirk.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Kirk</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.153826,-93.201359\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kirk was Mason City’s first luxury apartment building. It has an eclectic design. It is additionally significant due to its association with Horace P. Kirk, a Mason City businessman, photographer, and civic leader. It was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 N Federal Ave.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Spirit of the American Doughboy",
            "lat": "43.154386",
            "lon": "-93.202870",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spirit of the American Doughboy</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.154386,-93.202870\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>After World War I, more than 100 copies of &quot;Spirit of the American Doughboy&quot; were installed throughout the United States. Two were installed in Iowa -- one in Mason City and another in Mechanicsville. The sculpture was created by Ernest Moore Viquesney (1876-1946), a Spanish-American War veteran who may have worked with Mount Rushmore sculptor Gutzon Borglum. The Doughboy at Mason City was erected at the old county courthouse by the American Hellenic Education and Patriotic Association and dedicated to the memory of Cerro Gordo County&#039;s World War I dead on June 24, 1934. It was moved to the site of the current courthouse in 1960 and restored in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Washington Ave.<br />Cerro Gordo County Courthouse<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Egloff House",
            "lat": "43.152059",
            "lon": "-93.195595",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Egloff House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.152059,-93.195595\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Egloff House was built in 1938-1939 by Dr. William and Margaret Egloff, and was originally located in the East Park Place Historic District at 655 7th St. N.E. The house was designed by Earle Richard Cone (1905-1980) and his design incorporated attributes of three contemporary styles from the period - Moderne, Art Deco and International. The house has an irregular footprint with rectilinear wings roughly forming a T-shape. It is one of two International Style residences in the city, and a rare example in Iowa.\r\n\r\nWith the floods of 2008, Iowa experienced one of the largest natural disasters recorded in the state’s history and many historic properties were damaged. Moving the Egloff House to a new location quickly became an important priority. However, the weight and size of the Egloff House presented technical challenges that seemed insurmountable. The other complication was that its new home was located on the opposite side of the Winnebago River which required crossing the Carolina Avenue Bridge.\r\n\r\nAfter much study and analysis, the Egloff House was carefully cut apart to make it more manageable but each half (280 and 140 tons) was still too heavy for the bridge. The solution was to reinforce the bridge by constructing a “bridge on top of the bridge” which helped to distribute the weight. The two house parts began their journey on August 20, 2015 and over the course of three days slowly made their way to their new home.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310 E State St.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Amaziah and Cornelia Cannon House",
            "lat": "43.167239",
            "lon": "-93.260119",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Amaziah and Cornelia Cannon House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.167239,-93.260119\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cannon House was constructed in 1866, and is san excellent and rare example of early stone construction for residential purposes. The residence is one of only three stone houses of this era remaining in Mason City. The home is no longer in use. It was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1580 N Eisenhower Ave.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chris Rye House",
            "lat": "43.152117",
            "lon": "-93.189672",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chris Rye House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.152117,-93.189672\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rye House is a good example of the Prairie School architectural design type. It was built around 1912 and was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t630 E State St.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "E. R. Gibson House",
            "lat": "43.155592",
            "lon": "-93.203372",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">E. R. Gibson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.155592,-93.203372\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Gibson House is locally significant as a fine example of the Prairie School architectural design type by Frank Lloyd Wright. It was constructed 1915 and added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 4th St. NW<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Arvine and Elizabeth White House",
            "lat": "41.030593",
            "lon": "-92.807548",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monroe-nhr-arvinelizabethwhitehouse-3b-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Arvine and Elizabeth White House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.030593,-92.807548\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The White House is an outstanding example of ante-bellum, vernacular architecture in Albia. It exhibits an eclectic mixture of architectural stylistic influences and was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t309 N Main St.<br />Albia, IA 52531<br />Monroe County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Nishnabotna River Bridge",
            "lat": "41.935502",
            "lon": "-95.218974",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nishnabotna River Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.935502,-95.218974\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bowstring pony truss bridge was built in 1945 over Nishnabotna River near Manilla, Iowa. During World War II, steel was placed on the “Priorities Critical List” of materials deemed essential to the war effort, so many of Iowa’s counties, including Crawford, reverted to timber construction for small scale bridges during the 1940s. After heavy flooding in May 1945, Crawford County had to rebuild many of these bridges. They chose to use new steel riveted trusses supported by timber substructures, creating hybrid construction types like the Beaver Creek Bridge. This is one of 6 bridges of this type that remain in Crawford County and serve as examples of wartime bridge construction in Iowa. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tT Ave.<br />Manilla, IA 51454<br />Crawford County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "East Park Band Shell",
            "lat": "43.153679",
            "lon": "-93.183646",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-nhr-eastparkbandshell.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">East Park Band Shell</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.153679,-93.183646\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The band shell was built in 1924 and became the primary venue for the Mason City Municipal Band. It sits in the 57.6 acre East Park, which was established in 1909. Concerts are held throughout the summer. The band shell is also host to the annual Band Festival activities and Civil War Reenactments. It was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 N Main St.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Cannonball 457 Locomotive",
            "lat": "43.152605",
            "lon": "-93.182848",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-nhr-cannonball457locomotive.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cannonball 457 Locomotive</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.152605,-93.182848\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cannonball 457 Locomotive was built in 1912 as one of a set of 12 identical locomotives for the Minneapolis and St. Louis Railway. The Cannonball 457 remained in use until 1959 and was updated throughout the years, including a major switch from coal power to diesel. The train it sits in Mason City&#039;s East Park, and is the last surviving version of the set of 12 built by Minneapolis and St. Louis Railway.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tEast Park<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.423.5328</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://friendsofthe457.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Monroe County Historical Society and Museum",
            "lat": "41.027949",
            "lon": "-92.806078",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monroe-historymuseum-historicalsocietymuseum-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Monroe County Historical Society and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.027949,-92.806078\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>At the Monroe County Historical Society and Museum Complex you&#039;ll find exhibits related to the county&#039;s history, a country schoolhouse, railroad rolling stock and a wealth of records for historical research.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 A Ave. E<br />Albia, IA 52531<br />Monroe County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles Seney House",
            "lat": "43.157981",
            "lon": "-93.203009",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles Seney House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.157981,-93.203009\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Seney House is a good example of the Prairie School architectural design type by Frank Lloyd Wright and was built in 1913. It was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t622 N Washington Ave.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Meir Wolf House",
            "lat": "43.159467",
            "lon": "-93.203960",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Meir Wolf House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.159467,-93.203960\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wolf house is a fine example of the prairie school architectural design and was built in 1909. It was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t811 N Adams Ave.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Stewart Avenue Bridge",
            "lat": "43.156530",
            "lon": "-93.190047",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-bridge-stewartavebridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stewart Avenue Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.156530,-93.190047\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Stewart Avenue Bridge was designed by the Iowa State Highway Commission and built in 1914 by N.M. Stark and Company from Des Moines. Since its construction, it has carried traffic over the Winnebago River. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Carolina Ave.<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "T. B. Perry House",
            "lat": "41.026905",
            "lon": "-92.811333",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monroe-nhr-tbperryhouse-1b-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">T. B. Perry House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.026905,-92.811333\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The T.B. Perry House is a fine example of the High Victorian, eclectic style of architecture. The pronounced barge boards and gables are similar to Dunham’s well-known stick style residence. It is one of four show residences of 19th century Monroe County. It is also significant for its early use of indoor private systems for running water and gasification. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t212 W Benton Ave.<br />Albia, IA 52531<br />Monroe County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dr. George Jenkins House and Garage",
            "lat": "41.024285",
            "lon": "-92.812430",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monroe-nhr-jenkinshouse-4b-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. George Jenkins House and Garage</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.024285,-92.812430\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The most significant feature of the Jenkins House is the use of concrete and cobblestone. The wood frame is covered with lath, to which the concrete is attached. Each of the egg-sized stones was individually set in the wet concrete. It is thought that the cobblestones came from river gravel along the Des Moines River near Eddyville, since identical stones could not be purchased. The home is a good example of Tudor Revival using unusual building materials, and the house serves as a statement of social position in the community. It was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t223 S C St.<br />Albia, IA 52531<br />Monroe County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Elbert-Bates House",
            "lat": "41.024965",
            "lon": "-92.809883",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monroe-nhr-elbertbateshouse-4b-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Elbert-Bates House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.024965,-92.809883\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Elbert-Bates House is a fine example of vernacular architecture employing Italianate stylistic details. The house is one of four sisters houses in Albia from the last century, each a brick showplace. It was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t106 2nd Ave. W<br />Albia, IA 52531<br />Monroe County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Monroe County Courthouse",
            "lat": "41.026620",
            "lon": "-92.807679",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monroe-nhr-monroecountycourthouse-3b-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Monroe County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.026620,-92.807679\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Monroe County Courthouse is the third courthouse that has served the county. The first courthouse was built in 1846 and used until 1860. After that, Judge James Hilton ordered a medieval style courthouse built in the center of town. That was used until 1902. Then, the current courthouse was built. It is Renaissance style, and made of heavy stone. The cornerstone for the building was laid on August 29, 1902 and the building cost about $100,000 to build. It was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10 Benton Ave. E<br />Albia, IA 52531<br />Monroe County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Noble-Kendall House",
            "lat": "41.027357",
            "lon": "-92.805320",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monroe-nhr-noblekendallhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Noble-Kendall House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.027357,-92.805320\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Noble-Kendall House (1907) demonstrates both the unusual use of concrete block for residential construction, as well as the willingness of Alvis E. Noble, its builder, to advertise this building material in his own house. Nathan E. Kendall, Iowa governor and politician, lived in this house between 1916 and 1921, and his ashes are inurned on the property. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t209 E Benton Ave.<br />Albia, IA 52531<br />Monroe County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "King Opera House",
            "lat": "41.027199",
            "lon": "-92.806331",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monroe-artperforming-kingoperahouse-5-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">King Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.027199,-92.806331\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The King Opera House opened around 1902 and still operates as a theater today in the historic town square in downtown Albia. In addition to showing movies, the King Opera House also features live performances and other community events.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 Benton Ave. E<br />Albia, IA 52531<br />Monroe County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.932.7121</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Chris Poldberg Farmstead",
            "lat": "41.624420",
            "lon": "-95.132066",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-nhr-chrispoldbergfarmstead.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chris Poldberg Farmstead</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.624420,-95.132066\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chris Poldberg Farmstead, which is composed of a house and outbuildings, is the work of skilled Danish immigrant craftsmen and embodies the characteristics associated with architecture common in Danish settlement areas in Shelby County. The farmstead also is an example of the stock farming industry in the 20th century. The Chris Poldberg Farmstead was added to the National Register of Historic Places on Oct. 3, 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t828 Woodland Rd.<br />Harlan, IA 51537<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Nathan Kendall Gravesite",
            "lat": "41.027260",
            "lon": "-92.805428",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monroe-govgravesite-kendall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Nathan Kendall Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.027260,-92.805428\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Nathan Edward Kendall (March 17, 1868 - November 5, 1936) served as the 23rd Governor of Iowa from 1921-1925. Kendall resided in Des Moines until his death in 1936. His remains were cremated and the ashes interred on the lawn of &quot;Kendall Place&quot;, his former home in Albia. The gravesite is adjacent to the Albia Public Library and marked by a marble bench.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBenton Ave. E<br />Co. Rd. H35<br />Albia, IA 52531<br />Monroe County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Albia Square and Central Commercial Historic District",
            "lat": "41.026566",
            "lon": "-92.807322",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monroe-nhr-albiasquarecommercialhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Albia Square and Central Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.026566,-92.807322\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Albia Square and Central Commercial District is significant for both its architecture and for its importance as a center of commerce. It was a strong local trade area during the town’s coal mining boom of the early twentieth century. The area represents a fine collection of late nineteenth and early twentieth century commercial buildings. The building styles include Italianate, Queen Anne, and others. It was added to the National Register of Historic Places in 1985.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCourthouse Square<br />Albia, IA 52531<br />Monroe County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "C. G. Brisee Genealogy Library (Irwin Consolidated School)",
            "lat": "41.795682",
            "lon": "-95.205698",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-nhr-irwinconsolidatedschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">C. G. Brisee Genealogy Library (Irwin Consolidated School)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.795682,-95.205698\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">81.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Irwin Consolidated School was opened for classes in the fall of 1918. It was built to replace a wooden structure and a number of country schools and to be able to add courses to the curriculum. The school to this date still has much of the original oak woodwork, doors and cabinetry. The Irwin High School was renowned academically and also excelled in sports winning many state championships. In the late 1920s the school was one of the stops for the Harlem Globe Trotters and on that night the home team won. The last classes were held in 2002. In 2005, the building was sold and converted to the C. G. Brisee Genealogy Library. The Irwin School was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t499 North St.<br />Irwin, IA 51446<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Kossuth County",
            "lat": "43.064182",
            "lon": "-94.425887",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/kossuth-monument-freedomrock-3.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Kossuth County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.064182,-94.425887\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kossuth County Freedom Rock® was designed to fit the shape of the rock.  Greenfield-based artist Ray “Bubba” Sorensen II said the shape of the rock made him think of Iwo Jima so he painted an iconic image of Marines and a Navy Medic raising the flag after the Battle of Iwo Jima. This scene is paired with a Winston Churchill quote: “Never was so much owed by so many to so few.” The back of the rock honors Gold Star Mothers, honoring mothers who have lost their children in service to the nation. The plane flying above the funeral scene is a Bamboo Bomber, because a gentleman in Whittemore had a restored Bamboo Bomber and did flyovers. The smaller sides of the rock are adorned with an eagle and a flag. The Whittemore (Kossuth County) Freedom Rock was completed in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBroad St.<br />Whittemore, IA 50598<br />Kossuth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Job and Rebecca McWaid House",
            "lat": "41.407260",
            "lon": "-95.002848",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-nhr-jobandrebeccamcwaidhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Job and Rebecca McWaid House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.407260,-95.002848\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Job A. McWaid arrived in Atlantic at age 33 and was quick to become Atlantic&#039;s &quot;foremost citizen&quot;. Throughout his time in Atlantic, McWaid operated a blacksmith and wagon shop, devoted time to agricultural implements and established the Atlantic Packing House and the Atlantic Canning Factory - one of Atlantic&#039;s most important industries. In addition to his many business endeavors, McWaid was heavily involved in issues of the Civil War. He served three terms on City Council and was elected Mayor of Atlantic in 1901 and 1903. McWaid was instrumental in his development of the city&#039;s sewage system and establishment of the Carnegie Library of Atlantic. The Job A. and Rebecca E. McWaid House is where this leading figure spent most of his life in Atlantic and it is the principal remaining property associated with his work and commitment to Atlantic. It was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t702 E 4th St.<br />Atlantic, IA 50022<br />Cass County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Crawford County",
            "lat": "41.890022",
            "lon": "-95.232339",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Crawford County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.890022,-95.232339\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Crawford County Freedom Rock® memorializes several local servicemen. Brothers Casey and Justin Byers. Iowa National Guardsman, Sergeant Casey Byers was killed in Iraq in June 2005. Two days before Casey was to be eulogized, his brother, Iowa National Guardsman Specialist Justin Paul Byers, was struck and killed by a pick-up on a local highway. Both were interred at Arlington National Cemetery. Manilla native, Staff Sergeant James A. Justice was killed in Iraq in April 2011 when his helicopter came under small-arms fire. The World War II Destroyer USS Sims was attacked by all directions from the Japanese. When it was attacked, it exploded and then sank, killing Manilla native John Christensen. The rock is completed with a US Military roundel, an Air Force Raptor, and a roundhouse that symbolizes Manilla’s rich railroad history. The Crawford County (Manilla) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St. and 5th St.<br />Manilla, IA 51454<br />Crawford County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Klondike Railroad Hotel and Museum",
            "lat": "41.890602",
            "lon": "-95.234615",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/crawford-nhr-klondikehotel.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Klondike Railroad Hotel and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.890602,-95.234615\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Klondike Hotel was built in 1897, near the Milwaukee Railroad tracks and depot. The town of Manilla was at a junction of two Milwaukee lines and this caused a building and economic boom. The hotel has remained relatively unchanged and was purchased in 1995 by the Manilla Area Historical Association for restoration and to ensure that it continues to be preserved. The building was added to the National Register of Historic Places in 1996. It is now known as the Klondike Railroad Hotel and Museum and is open to the public.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t332 3rd St.<br />Manilla, IA 51454<br />Crawford County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.645.2632</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.manillaia.com/klondike_hotel.asp\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowa County Courthouse",
            "lat": "41.798169",
            "lon": "-92.070538",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/iowa-nhr-iowacountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.798169,-92.070538\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa County Courthouse was built in 1893 in the Romanesque Revival style. It was constructed of Berea sandstone and features a 137 foot tower. It was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCourt Ave.<br />Marengo, IA 52301<br />Iowa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "underground-railroad.png",
            "title": "Marengo City Park",
            "lat": "41.800164",
            "lon": "-92.069387",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/iowa-undergroundrailroard-marengocitypark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/underground-railroad.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marengo City Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.800164,-92.069387\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The village of Marengo was named the seat of Iowa County in 1845, but was not officially incorporated until July 1859. Marengo’s location about halfway between Grinnell and Iowa City made it a useful resting place for freedom seekers travelling across Iowa along this route. A sign in Marengo’s town square commemorates the town’s history and participation in antislavery efforts. This is stop #12 on the Freedom Trail tour: John Brown and his group stayed at the farm of Draper B. Reynolds, one mile south of Marengo, February 23-24, 1859.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t199 E Washington St.<br />Marengo, IA 52301<br />Iowa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chicago, Rock Island and Pacific Railroad: Atlantic Depot",
            "lat": "41.410168",
            "lon": "-95.013228",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-nhr-chicagorockislandpacificdepot-atlantic.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago, Rock Island and Pacific Railroad: Atlantic Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.410168,-95.013228\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chicago, Rock Island and Pacific Depot is a reminder of the railroad&#039;s one-time importance to the city and its standing in the county and surrounding area. Not only did the coming of the railroad determine the city&#039;s location, Atlantic then became the largest and most important city on the line between Des Moines and Council Bluffs. The Rock Island and Pacific Depot was a leading factor in Atlantic&#039;s prosperity. The depot has an attached express building. It was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1 Chestnut St.<br />Atlantic, IA 50022<br />Cass County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Atlantic Coca-Cola Center and Museum",
            "lat": "41.408681",
            "lon": "-95.013317",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-historymuseum-atlanticcocacolamuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Atlantic Coca-Cola Center and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.408681,-95.013317\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Frank P. “Perk” Tyler started an ice cream and ice business in Villisca about 1905. Soon after, he sold his business to his three sons. They expanded the business to make soda. As the business grew, they purchased bottling companies in Clarinda, Shenandoah, Atlantic and Creston, Iowa and Grand Island, Nebraska. By 1929, they had acquired the franchise rights for the Atlantic plant to bottle and distribute Coca-Cola. Atlantic Coca-Cola Bottling Company purchased the Des Moines area franchise in 1975, but remained based in Atlantic and operated by the Tyler Family. The Atlantic Coca-Cola Center and Museum is a museum dedicated to an American icon, Coca-Cola. In 2001, Atlantic was named the &quot;Coca-Cola Capital of Iowa&quot;. The museum hold an annual &quot;Coca-Cola Days&quot; celebration where they have a parade, show, and swap and sell meet. The museum holds the second largest Coca-Cola mini convention in the nation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t207 Chestnut St.<br />Atlantic, IA 50022<br />Cass County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Atlantic Armory",
            "lat": "41.408809",
            "lon": "-95.014682",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-nhr-atlanticarmory.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Atlantic Armory</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.408809,-95.014682\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>During World War I, Cass County provided 979 volunteers (and seven draftees), including 63 members of six companies of the 168th Iowa National Guard Regiment. Thirty county men lost their lives, including 17 who were killed or mortally wounded in combat. Six of the dead were from Atlantic. Almost immediately after the war, an American Legion Post formed in Atlantic, and in the 1920s, local Legionnaires raised funds to construct a combined community building and armory. The building, designed by George A. Spooner of Council Bluffs, opened in February 1930 and was used for community functions, including dances and high school sporting events, before the outbreak of World War II. The Atlantic Armory was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 Poplar St.<br />Atlantic, IA 50022<br />Cass County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Atlantic Middle School",
            "lat": "41.399474",
            "lon": "-95.006649",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-nhr-atlanticmiddleschool-4.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Atlantic Middle School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.399474,-95.006649\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Population growth prompted the community of Atlantic to apply for a Public Works Administration (PWA) grant to build a larger school in July of 1935. PWA funding helped many communities during the Depression. After receiving the $160,000 grant, ground was broken on the new building only a year later. The building opened to 500 high school students and 200 junior high students in 1937. Initially the new building was considered a &quot;show place&quot; for its various specialty rooms. Growing enrollment led to the building of a separate junior high school in the 1960s. In the 1990s a new high school was built and this building became Atlantic Middle School. This school is historically significant as an example of Moderne Style. It was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1100 Linn St.<br />Atlantic, IA 50022<br />Cass County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "E. J. Baird House",
            "lat": "41.572376",
            "lon": "-92.158896",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">E. J. Baird House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.572376,-92.158896\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Baird House, built around 1882, is the best preserved example of late Victorian &quot;Pattern Book&quot; housing in Millersburg. It was home to E.J. Baird, one of the towns most influential citizens in the late 19th and early 20th centuries. The house was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tJackson St.<br />Millersburg, IA 52308<br />Iowa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Atlantic 1 and 2",
            "lat": "41.406234",
            "lon": "-95.014264",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-theater-atlantic.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Atlantic 1 and 2</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.406234,-95.014264\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Bacon&#039;s Opera House was built in 1880 by H. E. Bacon and associations and had an original seating capacity of 600 to serve as a center of entertainment in Iowa&#039;s communities. With the development of motion picture, the opera house was remodeled into the Atlantic 1 Theatre in 1912. It was destroyed by a fire in 1929 and subsequently rebuilt as the Atlantic 2. The Atlantic 2 is still in operation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t28 W 5th St.<br />Atlantic, IA 50022<br />Cass County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Cass County Veterans Memorial",
            "lat": "41.404488",
            "lon": "-95.013490",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-monument-casscountyveteransmemorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cass County Veterans Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.404488,-95.013490\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cass County Veterans Memorial was dedicated on July 10, 1919, to commemorate Civil War, Spanish-American War and World War I veterans. This monument was designed by architect Edward A. Pryor of Postville and constructed at a cost of $22,984. It stands 62 feet high with Lady Liberty standing at the top. Four bronze soldiers and sailors stand on each corner of the monument, and plaques list the names of Cass County veterans.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tAtlantic City Park<br />Atlantic, IA 50022<br />Cass County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cass County Courthouse",
            "lat": "41.403609",
            "lon": "-95.013815",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-nhr-casscountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cass County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.403609,-95.013815\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The courthouse is the historical focus of county government and of the political power. A community would derive prestige from their status as a county seat. As the center of county government, an Iowa county seat town was reasonably assured of economic and population growth. Lewis was the first county seat of Cass County, but in 1869, the county seat was moved to Atlantic. In 1888, a two-story brick and stone courthouse was constructed - but it was destroyed by fire in March 1932. County records were saved. Salvaged materials, insurance money and a federal grant were used to construct the present courthouse at a cost of $119,000. It was one of ten county courthouses built in Iowa during the New Deal Era as part of the federal Public Works Administration (PWA) program&#039;s operation in the 1930s and early 1940s. It is an example of the PWA Moderne style of public building architecture developed during the 1930s and early 1940s. Its design blends Art Deco and Moderne elements. It was dedicated in 1934 and added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5 W 7th St.<br />Atlantic, IA 50022<br />Cass County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Samuel F. Martin House",
            "lat": "41.406260",
            "lon": "-95.014687",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-nhr-samuelfmartinhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Samuel F. Martin House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.406260,-95.014687\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Samuel F. Martin was a pioneer merchant in Atlantic. He moved to the city in 1865 and operated a hardware store until 1890. He is well known for championing local industry; he served as the director of the Atlantic Water Company, an incorporator of the Atlantic Starch and Syrup Company and a partner in the Atlantic Canning Company. His home was built in 1873 and serves as a significant example of the influence of the Second Empire, Italianate and Gothic style construction. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t419 Poplar St.<br />Atlantic, IA 50022<br />Cass County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Pioneer Cabin",
            "lat": "41.404515",
            "lon": "-95.013756",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-nhr-atlanticcityparklogcabin.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pioneer Cabin</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.404515,-95.013756\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 14 x 18 foot log cabin was built by John Gingery in 1863 in what was called Five Mile Grove located two miles northeast of Atlantic. John left Stark County, Ohio, where he had been raised and had become a school teacher, he was 26-years-old and arrived just as Cass County was being organized. He was hired by Cass County to do their clerical work in organizing the county. John Gingery married Mary Hyatt of Audubon County, Iowa on April 28, 1866. Ten children were born to them and all were born in this log house, except the tenth and youngest child. This cabin may also have been used as the first school house in Pymosa Township until 1868 when a separate school building was erected. The cabin was on the Gipple Farm northeast of Atlantic when the Atlantic Rotary Club became interested in preserving and restoring it as the club&#039;s bi-centennial project in 1976. The Rotarians and Boy Scout Troop 60 dismantled the cabin and numbered each log for rebuilding purposes. The Atlantic Soroptomists furnished the cabin much as it was originally furnished.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tAtlantic City Park<br />Atlantic, IA 50022<br />Cass County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Mormon Trail Park",
            "lat": "40.827260",
            "lon": "-93.626372",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mormon Trail Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.827260,-93.626372\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Mormon Trail Park is a large open area located near Garden Grove, Iowa. It once served as a rest stop and trading post for Mormons on the Mormon Trail. It is believed that settlers from the park, eventually grew into the city of Garden Grove.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCty. Hwy. J 20<br />Garden Grove, IA 50103<br />Decatur County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.446.4991</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.nps.gov/mopi/planyourvisit/site3.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "C. S. Stearns House",
            "lat": "40.826598",
            "lon": "-93.602964",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">C. S. Stearns House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.826598,-93.602964\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built around 1885, the Stearns House is a fine example of vernacular expression of the Queen Anne style of residential architecture, which was popular among prominent small-town Iowa citizens toward the end of the 19th century. It was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Center St.<br />Garden Grove, IA 50103<br />Decatur County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "J. J. McClung House",
            "lat": "40.827199",
            "lon": "-93.610251",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J. J. McClung House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.827199,-93.610251\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The J.J. McClung House is situated on a large corner lot near Garden Grove&#039;s business district. This house has been one of the small town&#039;s most visible landmarks since it was built in 1909. It is Garden Grove&#039;s best extant example of a large-scale residence that combines Classical and Colonial Revival design influences. The house was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Main St.<br />Garden Grove, IA 50103<br />Decatur County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Pioneer Heritage Museum and Historical Resource Library",
            "lat": "41.797064",
            "lon": "-92.061579",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/iowa-historymuseum-pioneerheritagemuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pioneer Heritage Museum and Historical Resource Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.797064,-92.061579\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pioneer Heritage Museum is a collection of historical artifacts from the early Iowa pioneers. This museum displays buildings from the 1800s and early 1930s, such as an 1861 log house and bachelor’s cabin, 1861 railroad depot, 1930 filling station. They also have an extensive research library that has information about specific families of the time. The museum and library are operated by the Iowa County Historical Society.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t675 E South St.<br />Marengo, IA 52301<br />Iowa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.642.7018</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles F. and Ruth Chase House",
            "lat": "41.402210",
            "lon": "-95.015580",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-nhr-charlesfandruthchasehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles F. and Ruth Chase House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.402210,-95.015580\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1914 Ruth Chase purchased the land on which the Chase House was built for $2,500. The Chase House was constructed in 1915 and remains as one of the first, and potentially only, remaining examples of a Prairie Style home constructed in Southwest Iowa. Charles and Ruth Chase, along with their son Edwin Percy Chase, founded the Atlantic News-Telegraph. Under Charles and E.P. Chase&#039;s leadership the Atlantic News-Telegraph flourished. In 1933 E.P. Chase received a Pulitzer Prize for best editorial, a major accomplishment for an editor of a rural newspaper. The piece that received him great claim, titled &quot;Where Is Our Money&quot;, was an influential Great Depression era editorial. The Chase House was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 W 9th St.<br />Atlantic, IA 50022<br />Cass County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Iowa Braille and Sight Saving School",
            "lat": "42.161934",
            "lon": "-92.033937",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-historicsite-iowabrailleandsightsavingschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Braille and Sight Saving School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.161934,-92.033937\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Braille and Sight Saving School was founded in 1852, making it Iowa&#039;s second oldest educational institution. The school has a beautiful and historic campus. Mary Ingalls, older sister of Little House on the Prairie author Laura Ingalls Wilder, attended the school from 1881 to 1889. While Ingalls attended the school her family was living in South Dakota and she would travel to Vinton by train. Tours and programs are available by calling 319.472.5221.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1002 G Ave.<br />Vinton, IA 52349<br />Benton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.472.5221</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowa-braille.k12.ia.us/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Youngville Café",
            "lat": "41.963872",
            "lon": "-92.025661",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-nhr-youngvillecafe.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Youngville Café</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.963872,-92.025661\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Joseph Young constructed the Youngville Cafe in 1931. The recently paved Lincoln Highway (now US Highway 30) provided a steady stream of travelers in need of gas, food and lodging. Young&#039;s daughter Elizabeth Wheeler, was a widow. She ran the business and resided on the second floor with her two children. From 1931-1967, Youngville was a roadside restaurant, Skelly filling station, commercial bus stop and small cabin court. From the 1970s through the 1990s, Youngville was neglected and fell into disrepair. The Youngville Highway History Association was organized in 1997 to preserve the Youngville Cafe. The Youngville Cafe is one of the few remaining rural filling station/eateries in Iowa. These roadside stops were the forerunner of modern multi-purpose gas station and convenience stores. Youngville Cafe, also known as Youngville Station, is a well preserved and notable example of an early 1930s Tudor Revival-style one-stop roadside business. Youngville Cafe was added to the National Register of Historic Places in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2409 73rd St.<br />US Hwy. 30<br />Watkins, IA 52354<br />Benton County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.youngvillecafe.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Hawkeye Street Underpass",
            "lat": "43.137192",
            "lon": "-93.009260",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hawkeye Street Underpass</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.137192,-93.009260\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hawkeye Street Underpass was designed by F.A. McDonald for the Burlington, Cedar Rapids and Northern Railway and built by the Rock Island Railroad in 1889. This is the only stone arch bridge listed in the Iowa Historic Bridge Inventory in Floyd County, making it a rare example of an early highway and railroad-related structure of this type. Since its completion, it has functioned in its place without alterations. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Hawkeye St.<br />Nora Springs, IA 50458<br />Floyd County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Central Vinton Residential Historic District",
            "lat": "42.162049",
            "lon": "-92.026336",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-historicdistrict-centralvintonresidentialhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Central Vinton Residential Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.162049,-92.026336\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Vinton was founded along the Cedar River in 1849. Most of the homes in the Central Vinton Residential Historic District date to the mid-to-late 19th century and remain private residences. The historic district is bounded by 2nd Avenue on the east, West 13th Street on the south, D Avenue on the west, and West 6th Street on the north. The city of Vinton experienced population spikes in 1870, 1880, 1900 and 1940. Much of that growth is reflected in this residential area which was one of Vinton’s most affluent turn of the century neighborhoods. Vinton was platted in a rectangular grid with most blocks in the proposed district subdivided into eight parcels. Most lots were platted as part of John Tilford&#039;s Additions to the city and are very consistent in their plan and layout. The uniformity resulted in a consistent pattern and landscaping includes large shade trees and hedges, many of which are over one hundred years old. (Several of these large shade trees were lost during the Great Wind Storm of 2011). The streets were originally named for prominent local and national figures such as Jefferson, Polk and Clay. These street names were changed about 1920, to numbered streets running east and west and lettered avenues running north and south. While touring the area, note the brick paving on 2nd Avenue. The Central Vinton Residential Historic District was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBounded by 2nd Ave., W 13th St., D Ave., and W 6th St.<br />Vinton, IA 52349<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Palace Theatre",
            "lat": "42.167560",
            "lon": "-92.026087",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-theater-palacetheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Palace Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.167560,-92.026087\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Palace Theatre opened in 1915 with silent movies and live performances. In 1932, the interior of the Palace was destroyed by fire and it was rebuilt with a Spanish motif. The theatre closed in 1972, and the building was used as a bakery, arcade, pawn shop and gym. In 1997, the Area Community Theatre Inc. (ACT I) purchased the theatre. After a massive community fundraising effort to complete renovations, the theatre was re-opened in November 1999 with a dual purpose of showing movies and providing a home stage for community theatre group ACT I&#039;s live performances.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210 W 4th St.<br />Vinton, IA 52349<br />Benton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.472.9958</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.vintonpalace.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Bear Grove No. 5 Schoolhouse",
            "lat": "41.398014",
            "lon": "-95.028162",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-historicschool-beargroveno5-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bear Grove No. 5 Schoolhouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.398014,-95.028162\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bear Grove No. 5 Schoolhouse was built about 1870 in Bear Grove Township and originally called the Center School or No. 5. The schoolhouse was relocated in 1960 to its current location and now houses furniture and memorabilia donated by community members.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 Sunnyside Ln.<br />Sunnyside Park<br />Atlantic, IA 50022<br />Cass County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Horridge House",
            "lat": "42.164873",
            "lon": "-92.023940",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-historymuseum-horridgehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Horridge House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.164873,-92.023940\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Horridge House was built by George Horridge and Elizabeth Rock Horridge shortly after their marriage in 1863. Many of the furnishings remain from the Horridges, including a French pier mirror purchased by the second Mrs. Horridge. The original tin ceilings were installed by Mr. Horridge, who was in the business of tinsmithing. The house remained a private residence and was purchased by the Benton County Historical Society in 1972. BCHS maintains the Horridge House as a museum and archives. Genealogy records are also housed at the Horridge House. The Horridge House suffered significant damage in a 2011 wind storm, but was repaired. The home is one of the oldest landmarks in Vinton.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t612 1st Ave.<br />Vinton, IA 52349<br />Benton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.472.4574</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://iagenweb.org/benton/bchs/bchs.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Benton County Courthouse",
            "lat": "42.168138",
            "lon": "-92.023591",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-nhr-bentoncountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Benton County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.168138,-92.023591\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Benton County Courthouse, completed in 1906, is the fourth courthouse used by the county. The first courthouse was a log structure with no roof or floor, making court difficult to hold in rainy conditions. The second courthouse was unfinished for years as Belle Plaine campaigned to be named county seat. Ultimately, Vinton remained the county seat and the second courthouse was finished in 1852. It burned the next year and three men rescued the county records from the blaze. Unfortunately, those men later died from fire related injuries. The third courthouse, built at a cost of $13,000.00, was dedicated in 1856 and replaced by a $105,000.00 courthouse in 1906. The 1906 Buckeye gray sandstone courthouse remains in use, complete with a 112-foot high tower, a 1,500 pound B-flat bell and a recently repaired clock. The Benton County Courthouse was designed by C. A. Bell and M. S. Detweiler and built by George Rickman and Sons. It is a well-maintained example of turn of the century Beaux Arts government building. The building was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t111 E 4th St.<br />Vinton, IA 52349<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowa Canning Company Seed House Building",
            "lat": "42.169498",
            "lon": "-92.024521",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-nhr-iowacanningcompanyseedhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Canning Company Seed House Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.169498,-92.024521\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Canning Company Seed House is part of one of Iowa’s earliest and largest canning operations, which lasted from the late 19th through the mid-20th century. The Iowa Canning Company had seven operating plants and produced 10 million cans of sweet corn a year. This was the largest corporation in Benton County and possibly the largest corn canning business in the world according to a 1909 county history. During this time, the company was a major seasonal employer in Vinton and provided a processing center for farmers raising crops in Benton County and nearby areas. The Seed House was built in 1927 for drying, conditioning, grading, processing, storing, and distributing seed, especially corn seed used by farmers growing produce under private contract with the Iowa Canning Company. 600,000 ears of corn could be dried in the building at one time. In 1959, the Iowa Canning Company closed and the building was used for other commercial endeavors. The Iowa Canning Company Seed House was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 1st Ave.<br />Vinton, IA 52349<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Brick Gothic House",
            "lat": "40.991763",
            "lon": "-92.804986",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monroe-nhr-brickgothichouse-3b-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brick Gothic House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.991763,-92.804986\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This one and one-half story house from the 1870s is a good example of the popular Gothic Revival style. It is a somewhat rare example of a truly rural Gothic house, being located on a farm. It was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2169 652nd Ave.<br />Albia, IA 52531<br />Monroe County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Frank G. Ray House and Carriage House",
            "lat": "42.162169",
            "lon": "-92.023994",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-nhr-frankgrayhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Frank G. Ray House and Carriage House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.162169,-92.023994\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Frank G. Ray was a dealer in farm machinery and coal. Ray arrived in Vinton in 1873, from Illinois. He was active in several business ventures in Benton County, including the Iowa Canning Company and the State Bank of Vinton. In 1890, Ray built this home. The home has a wraparound front porch and is an excellent example of late Victorian, Queen Anne architecture. The home was converted to apartments in 1935, but many features of the original dwelling remained. It was later obtained by the Benton County Historical Society, and restored to it&#039;s original, single family layout. It is operated as a historic house museum and is available for event rental. The Ray House was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t912 1st Ave.<br />Vinton, IA 52349<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Buddy Holly, Ritchie Valens, and Big Bopper Crash Site Memorial",
            "lat": "43.220332",
            "lon": "-93.374300",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-monument-buddyhollyritchievalensandbigboppercrashsitememorial.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buddy Holly, Ritchie Valens, and Big Bopper Crash Site Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.220332,-93.374300\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Buddy Holly, Ritchie Valens, and Big Bopper Crash Site Memorial was created to honor the three musicians and pilot who died in a tragic plane crash on February 3rd, 1959. The memorial has a larger than life replica of Buddy Holly&#039;s famous glasses, and a 1/2 mile trail leading to the exact spot the plane went down. At the crash site, they have placed a stainless steel guitar and three records in remembrance of the three musicians.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tGull Ave. and 315th St.<br />Clear Lake, IA 50428<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.357.2159</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Nora Springs Historical Society Museum",
            "lat": "43.142037",
            "lon": "-93.007745",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nora Springs Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.142037,-93.007745\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Nora Springs Historical Society Museum is located in the former home of John Adams Sr. and wife Elsie, who built the house in 1939. The museum features Adams family artifacts as well as memorabilia from Nora Springs schools.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t116 1st St. SW<br />Nora Springs, IA 50458<br />Floyd County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.749.5341</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "The Depot and Rail Museum",
            "lat": "42.164721",
            "lon": "-92.021741",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-nhr-burlingtoncedarrapidsandnorthernvintonpassengerstation.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Depot and Rail Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.164721,-92.021741\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Burlington, Cedar Rapids and Northern Railroad Passenger Station in Vinton was built in 1900 when Vinton was the juncture of the Burlington, Cedar Rapids and Northern Railway’s (BCR and N) two principal branches. The railroad came to Vinton in 1870 and was essential infrastructure for growing industries: Iowa Canning Company, Vinton Produce Company, Vinton Steel Works and Vinton Pearl Button Company. The Vinton Depot was constructed when the BCR and N was a prosperous railroad, known as the Iowa Route. The depot features original marble floors, oak wainscoting and an authentic depot agent&#039;s office, including the original telegraph - complete with sound. You can also learn about &quot;Lincoln, Railroads and the Civil War&quot;. The BCR and N Vinton Depot was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t612 2nd Ave.<br />Vinton, IA 52349<br />Benton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.472.3918</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Vinton Public Library",
            "lat": "42.166369",
            "lon": "-92.022595",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-nhr-vintonpubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vinton Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.166369,-92.022595\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Vinton Public Library was built in 1903-1904. The architects were Patton and Miller of Chicago. This library is one of 22 public libraries in Iowa constructed with Carnegie grants made in 1903, a year that marks the highest point in Carnegie giving, both nationally and in the state. This program funded over 1,600 buildings between 1889 and 1919. The 22 libraries built in 1903, make up one fourth of the state’s Carnegie libraries. The Vinton Public Library is brick with stone trim, and is an extremely well preserved example of the hipped block type of library. An extensive addition was added to the east side of the library in 1993. This nearly doubled the space of the library and created more room for non-fiction and children&#039;s materials. The Vinton Public Library was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t510 2nd Ave.<br />Vinton, IA 52349<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Pocahontas County Historical Society (Laurens Carnegie Library)",
            "lat": "42.849308",
            "lon": "-94.851788",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pocahontas-historymuseum-pocahontascountyhistoricalsocietymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pocahontas County Historical Society (Laurens Carnegie Library)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.849308,-94.851788\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pocahontas County Historical Society Museum is housed in the former Laurens Carnegie Free Library, which was built in 1910 and operated until 1975. The library was built with funds from Andrew Carnegie, a wealthy industrialist who funded more than 1,600 libraries nationwide. It was reported that the town of Laurens was the smallest community in the country with a Carnegie Library. The building was added to the National Register of Historic Places in 1974. Since then, it has been converted to the Pocahontas County Historical Society Museum and features a period kitchen, along with railroad and agricultural items. There are exhibits about county schools, businesses and churches, as well as display cases of children&#039;s toys, china and glassware, Native American artifacts, and military items, including a handkerchief brought back from France after World War I.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t263 N 3rd St.<br />Laurens, IA 50554<br />Pocahontas County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 573.692.5614</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "August H. J. and Justena Lange Farmstead Historic District",
            "lat": "42.381256",
            "lon": "-92.074376",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">August H. J. and Justena Lange Farmstead Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.381256,-92.074376\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lange Farmstead Historic District was constructed between 1887 and 1916, and is an example of a late 19th century general farmstead operation. Lange supplemented his farm income by blacksmithing. The Lange Farmstead Historic District was added to the National Register of Historic Places in 1997. By 2014, the home, one the east side of the road, appeared to be in relatively good shape but the barn and outbuildings on the west side of the road appeared to have suffered significant damage.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t8214 Spring Creek Rd.<br />La Porte City, IA 50651<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Heritage Park of North Iowa",
            "lat": "43.244767",
            "lon": "-93.635043",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hancock-historymuseum-northiowaheritagepark.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Heritage Park of North Iowa</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.244767,-93.635043\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Heritage Park of North Iowa is dedicated to the preservation of America&#039;s rural heritage. This 90-acre site includes notable historic buildings including, a country schoolhouse, church, jail, gas station, blacksmith shop and more. The park also displays antique vehicles, farm equipment and railroad artifacts.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1811 330th St.<br />Forest City, IA 50436<br />Hancock County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.heritageparkofnorthiowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Odebolt Veterans Memorial",
            "lat": "42.298907",
            "lon": "-95.245853",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Odebolt Veterans Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.298907,-95.245853\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Veterans&#039; Memorial Monument is located at the Odebolt Cemetery and honors 939 veterans from the Odebolt area who served between 1900-2000 in World War I, World War II, the Korean War and the Vietnam War.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3300 S Des Moines St.<br />Odebolt Cemetery<br />Odebolt, IA 51458<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Anstey Barn",
            "lat": "41.191869",
            "lon": "-94.835159",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Anstey Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.191869,-94.835159\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1878, George Anstey emigrated from England to Cass County to raise purebred Herefords. After years of hard work, every major Hereford show winner in the United States was a product of Anstey Barn by 1927. The Antsey barn was built in 1920 and continues to be used in the family cattle business.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t71717 710th St.<br />Massena, IA 50853<br />Cass County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Plagmann Round Barn",
            "lat": "41.725098",
            "lon": "-92.056455",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/iowa-barn-plagmannroundbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Plagmann Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.725098,-92.056455\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn, built in 1912, is one of the largest Iowa Agricultural Experimental Station type barns in Iowa. The central clay tile silo, circular interior arrangement, and clay tile exterior wall are characteristic of this type. It was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1941 MM Ave.<br />Marengo, IA 52301<br />Iowa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Buren Sherman Gravesite",
            "lat": "42.161390",
            "lon": "-92.009830",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-notableiowan-governorshermangravesite.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Buren Sherman Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.161390,-92.009830\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Buren Robinson Sherman (May 28, 1836 – November 11, 1904) served as the 11th Governor of Iowa from 1882 to 1886. Sherman is buried at Evergreen Cemetery in Vinton.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1002 E 10th St.<br />Evergreen Cemetery<br />Vinton, IA 52349<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Big Bertha and Fat Albert Grain Silos",
            "lat": "42.780245",
            "lon": "-94.945081",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buenavista-historicunique-bigberthaandfatalbergrainbins.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Big Bertha and Fat Albert Grain Silos</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.780245,-94.945081\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;Big Bertha&quot; and &quot;Fat Albert&quot; were the largest concrete grain silos in the United States when they were built in the mid-1970s. Big Bertha has a capacity of 1,045,000 bushels and Fat Albert has a capacity of 1,000,000 bushels.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st St.<br />Albert City, IA 50510<br />Buena Vista County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "The Stuga - Old Swedish Home",
            "lat": "42.304988",
            "lon": "-95.248728",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Stuga - Old Swedish Home</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.304988,-95.248728\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>A typical Swedish home of the older days, a “stuga”, (meaning little house), was built by John Nelson&#039;s father and mother in the southeast part of Minnesota in 1872. In 1874 they came to Sac County, never returning to their former home. The Nelsons purchased the old home and moved it to their home in Odebolt. It was taken down piece by piece and shipped to their home. When it arrived it was carefully reconstructed just as it was with the boards running up and down rather than in a horizontal position as we are used to seeing them. The Nelsons placed all of the old family relics, many of Swedish origin, in this little house.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t708 Locust St.<br />Odebolt, IA 51458<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Kinze Innovation Center",
            "lat": "41.690538",
            "lon": "-92.061926",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kinze Innovation Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.690538,-92.061926\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kinze Innovation Center is a center to educate people about the history of Kinze Agriculture. The Innovation Center is a 25,000-square-foot complex houses many of the original machines, design concepts and artifacts produced primarily by founder/inventor Jon Kinzenbaw. The center includes the first-ever adjustable-width 12-bottom plow, a replica of one of Jon&#039;s first business pickups, the very first Kinze Grain Cart, innovation timelines (planters, carts, modern manufacturing, seed delivery), displays of Kinze&#039;s newest products and innovations, and much more.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2172 M Ave.<br />Williamsburg, IA 52361<br />Iowa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.668.1300</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.kinze.com/visit-us.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Dunkerton Bridge",
            "lat": "42.573223",
            "lon": "-92.162025",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-bridge-dunkertonbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dunkerton Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.573223,-92.162025\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dunkerton Bridge was once the main approach to the town of Dunkerton from the north. In April 1908, the Black Hawk County Board of Supervisors directed its bridge committee to investigate the construction of a bridge on a new road being built at Dunkerton. According to county records, there had been a bridge built over Crane Creek at Dunkerton in 1894 by the Hannibal Bridge Company, but was replaced by this bridge. The Dunkerton Bridge now carries pedestrian traffic between Charma Park and Marble Street in downtown Dunkerton. The modern highway into town, carried over Crane Creek by a newer bridge, runs along the park&#039;s eastern border. The 1909 Dunkerton Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCharma Park Trail<br />Dunkerton, IA 50626<br />Black Hawk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Monument Circle",
            "lat": "42.312146",
            "lon": "-95.250364",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Monument Circle</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.312146,-95.250364\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>W.P. Adams of Odebolt donated the Monument Circle as a World War I veterans&#039; memorial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2nd St. and Main St.<br />Odebolt, IA 51458<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Albert City Historical Museum (Chicago, Milwaukee and Pacific Railroad Passenger Station)",
            "lat": "42.783445",
            "lon": "-94.948215",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Albert City Historical Museum (Chicago, Milwaukee and Pacific Railroad Passenger Station)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.783445,-94.948215\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Albert City Historical Museum was built in the old Chicago, Milwaukee and Pacific Railroad Station in 1977. The museum has exhibits on the railroad depot, a 1900s house, 1875 furnished schoolhouse, and a small grocery store replica. Albert City was a town the spring up with the creation of the railroad. The railroad came to the area in 1899 and the town was platted in the same year. The town existed solely due to the railroad that brought in manufactured goods to the community and in turn shipped their agricultural goods to the eastern market. The depot is a two story building, with the passenger waiting room and offices on the first floor, and the station agent&#039;s apartment on the second floor. The depot was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t212 2nd St. N<br />Albert City, IA 50510<br />Buena Vista County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.843.5684</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Odebolt Historical Museum",
            "lat": "42.312211",
            "lon": "-95.251744",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Odebolt Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.312211,-95.251744\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Odebolt Historical Museum showcases a large collection of historical items including a military display, tools and equipment from farm and home, and a buffalo robe brought to town by Buffalo Bill. Exhibits also include a 1900s kitchen, barbershop, hospital equipment, school memorabilia, music section, many local artifacts, as well as historical items and photos from Odebolt&#039;s past.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t137 W 2nd St.<br />Odebolt, IA 51458<br />Sac County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.668.2264</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://odebolt.net\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Peterson Pioneer Home",
            "lat": "42.311878",
            "lon": "-95.251635",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Peterson Pioneer Home</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.311878,-95.251635\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Nels Magnus Peterson and his wife Mary Caroline purchased a lot in Odebolt on December 28, 1885 at a price of $100. The Peterson House was completed in 1886. The historical value rests in the fact that the one and a half story house is still in its original form. Recognizing the educational and historical value of the house and yard, members of the Odebolt Questers (a group interested in preservation of the past) called a meeting of representatives of local clubs and organizations to present the possibility of restoration. The first floor was completed in 1975 and the upstairs was completed in time for the Bicentennial observance and open house on July 4th, 1976 with the help of many local volunteers.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t128 W 2nd St.<br />Odebolt, IA 51458<br />Sac County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.668.2231</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://odebolt.net/pioneerhome.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Odebolt Rural School Museum",
            "lat": "42.311861",
            "lon": "-95.251443",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Odebolt Rural School Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.311861,-95.251443\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Rural Schools Museum captures the spirit and pride of Iowa&#039;s rural past. The school once stood in Richland Township, Sac County, Iowa, and was known as Willow Tree or Richland #1. In October 2011 the school was moved to the nearby town of Odebolt by the Rural Legacy Project committee and has been restored to the Victorian look it had when it opened in 1883. It is representative of the 12,623 schools that were part of the Iowa rural schools system and helped shape Iowa&#039;s rural development and character. This museum celebrates the contributions of rural schools in Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t122 W 2nd St.<br />Odebolt, IA 51458<br />Sac County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.830.8328</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Fairfield Township No. 2 School",
            "lat": "42.783114",
            "lon": "-94.948021",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fairfield Township No. 2 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.783114,-94.948021\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fairfield Township No. 2 one-room schoolhouse, built in 1875, is fully furnished and is located on the grounds of the Albert City Historical Museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t212 2nd St. N<br />Albert City, IA 50510<br />Buena Vista County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Carrie Chapman Catt Girlhood Home and Museum",
            "lat": "43.011968",
            "lon": "-92.653836",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/floyd-historymuseum-carrielanechapmancattchildhoodhome.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carrie Chapman Catt Girlhood Home and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.011968,-92.653836\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Visit Springbrook Stock Farm, established in 1865 by Lucius and Maria Clinton Lane, parents of national women&#039;s rights leader Carrie Lane Chapman Catt. The double-brick home, completely restored by the National 19th Amendment Society, is of unique design. A barn constructed at the turn of the century is also located on the property as well as a prairie-grass area. Carrie Lane Chapman Catt was a founder of the League of Women Voters and spent her life working for the rights of women and the passage of the 19th Amendment giving women the right to vote.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2379 Timber Ave.<br />Charles City, IA 50616<br />Floyd County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.228.3336</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://catt.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "First National Bank",
            "lat": "42.312239",
            "lon": "-95.250931",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sac-historicsite-firstnationalbank.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First National Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.312239,-95.250931\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First National Bank building in Odebolt was built in 1915 by W.P. Adams and designed by Chicago architects, Graham, Burnham and Company. The bank was in operation until 1934 when Adams paid off the depositors and closed the bank. The building sat unused for 33 years until it was purchased by the Odebolt State Bank in 1967 and later by First State Bank of Ida Grove in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Main St.<br />Odebolt, IA 51458<br />Sac County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Kirkville Community Church",
            "lat": "41.144713",
            "lon": "-92.504200",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-historicsite-kirkvillecommunitychurch.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kirkville Community Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.144713,-92.504200\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The first United Methodist Church in Kirkville was organized in 1844. Reverend T.M. Kirkpatrick, of Eddyville, organized the Kirkville congregation.The congregation completed their first church building in 1853 and the present church was constructed about 1900. A basement was added in 1917.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Cedar St.<br />Co. Hwy. T67<br />Kirkville, IA 52566<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Pilot Knob State Park",
            "lat": "43.251723",
            "lon": "-93.557080",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/admin/content/photos/view/?id=276\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pilot Knob State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.251723,-93.557080\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Pilot Knob State Park was a project of the Civilian Conservation Corps during the New Deal Era. In 1920, a group of citizens met in Forest City to recommend the creation of the state park at Pilot Knob so that its natural setting might be enjoyed by later generations. The system of trails is excellent for hikers and horseback riders. It was added to the National Register of Historic Places in 1991. \r\n\r\nMixed Media Artist Christopher Yanulis will be working at Pikes Peak State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2148 340th St.<br />Forest City, IA 50436<br />Hancock County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.581.4835</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610140\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Pilot Grove State Preserve",
            "lat": "41.630182",
            "lon": "-92.084336",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pilot Grove State Preserve</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.630182,-92.084336\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This wooded knoll was known from the early 1840s as a landmark for pioneers going west across Iowa. During the early years of settlement, from 1840-1860, there was no timber in the area except for this grove, which could be seen from miles away. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t260th St.<br />Williamsburg, IA 52361<br />Iowa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Pleasant View Stock Farm Historic District",
            "lat": "41.787932",
            "lon": "-95.266673",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pleasant View Stock Farm Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.787932,-95.266673\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>As of 2010, no fewer than 99.9 percent of purebred Angus cattle registered by the American Angus Association were descendants of one bull, named Earl Marshall, who spent his reproductive life at Pleasant View Stock Farm. The farm was established by Thomas Ryan in 1882 and operated as an Angus cattle operation until 1924. Thomas Ryan’s son, Earl Ryan, purchased the herd that included Earl Marshall in 1916, a savvy purchase that eventually ensured the farm’s place in livestock history.\r\n\r\nPleasant View Stock Farm was added to the National Register of Historic Places in 2019.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1933-1935 Co. Rd. M36<br />Irwin, IA 51146<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "A Place to Remember Historical Museum",
            "lat": "42.210569",
            "lon": "-95.289214",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">A Place to Remember Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.210569,-95.289214\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>A Place to Remember Historical Museum features an early 1900s home with various historical displays. They also have a restored 1915 Model T, scale model tractors, 1800s shanty, and a one room school house.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2973 Hwy. 39<br />Kiron, IA 51448<br />Crawford County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.675.4382</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Spotts Round Barn",
            "lat": "43.059122",
            "lon": "-92.724734",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spotts Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.059122,-92.724734\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Spotts Round Barn was built in 1914 with a unique design, specifically characterized as a Johnston Brothers’ sub-type. It was added to the National Register of Historic places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2540 7 Mile Rd.<br />Charles City, IA 50616<br />Floyd County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Spanish-American War Cannon Barrel",
            "lat": "43.262750",
            "lon": "-93.638611",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winnebago-monument-spanishamericanwarcannon.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spanish-American War Cannon Barrel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.262750,-93.638611\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The original cannon barrel dated to 1869. Engraved in Spanish “Fundicion de Artilleria,” the cannon was manufactured in Seville, Spain, commissioned by royal decree by Spain’s Queen Isabella II. During the Spanish-American War, the cannon was captured in 1898 at the Spanish Fort San Felipe, located in Manila Bay, Philippines. The original barrel was obtained by Forest City’s David Secor in 1899 from the United States government, honoring Winnebago County Spanish-American War Veterans. In 1942, the original cannon barrel was donated to the World War II war effort, via a scrap metal drive. The barrel weighed 2,070 lbs. of solid brass. Today on the Winnebago County Courthouse lawn, the cannon barrel on display is a replica of the original.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t126 S Clark St.<br />Winnebago County Courthouse<br />Forest City, IA 50436<br />Winnebago County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Civil War Soldier Monument and Fountain",
            "lat": "43.263008",
            "lon": "-93.638654",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winnebago-monument-civilwarsoldier.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Civil War Soldier Monument and Fountain</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.263008,-93.638654\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Union Soldier monument was purchased by the Women’s Relief Corps (WRC) in 1899 and was unveiled and dedicated in 1900. The local WRC chapter was founded in 1891 and was committed to caring for Civil War Union Soldiers, extending aid to their widows and orphans, and honoring the heroic dead. 151 Civil War soldiers are buried in Winnebago County. The statue and fountain were separate pieces crafted by J. L. Mott Iron Works of Trenton, New Jersey. The soldier cost $155, and the fountain with French Victorian design cost $700. Only one other combination identical to this Civil War Soldier Monument and Fountain exists nationwide. Per the Smithsonian Institute, 124 Union and 26 Confederate Soldier statues are in existence today. Few grace courthouse squares.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t126 S Clark St.<br />Winnebago County Courthouse<br />Forest City, IA 50436<br />Winnebago County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Winnebago County Courthouse",
            "lat": "43.262988",
            "lon": "-93.638936",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winnebago-nhr-winnebagocountycourthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Winnebago County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.262988,-93.638936\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The first courthouse in Winnebago County was a two-room log cabin located on the courthouse square. The current courthouse was completed January 6, 1897 and was built in the Romanesque style and made of red brick and trimmed with stone constructed by Kinney and Orth and contractor F. A. Gross. The courthouse was added to the National Register of Historic Places on July 2, 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t126 S Clark St.<br />Forest City, IA 50436<br />Winnebago County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.winnebagocountyiowa.gov\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Kline Museum",
            "lat": "41.022900",
            "lon": "-94.609680",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adams-historymuseum-klinemuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kline Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.022900,-94.609680\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kline Museum features a wide array of historical objects, including restored farm machinery and an assortment of family heirlooms such as furniture, dishes and musical instruments. The museum also houses a 1911 Carter Automobile, one of only 500 made.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t228 6th Ave.<br />Prescott, IA 50859<br />Adams County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.344.4873</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Ellston Pioneer Museum",
            "lat": "40.839889",
            "lon": "-94.109722",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ellston Pioneer Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.839889,-94.109722\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ellston Pioneer Museum is a collection of historical buildings that includes the restored Cornwall Pioneer Home, the Hazel Glen School (Washington No. 8 School), and the National Old Thresherman’s Hall of Fame.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Ellston, IA 50074<br />Ringgold County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.783.2155</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Salveson Hall (Waldorf Hotel)",
            "lat": "43.263289",
            "lon": "-93.639977",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winnebago-historicsite-salvesonhall.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Salveson Hall (Waldorf Hotel)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.263289,-93.639977\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Waldorf Hotel, built at the turn of the century, was instrumental in the establishment of Waldorf College. The college was founded in 1903 as a result of &quot;The Great Hotel War of Forest City&quot;. The competitive battle between two first-class hotels, built simultaneously, in Forest City left the Waldorf Hotel vacant after only four months of operation. Rev. C.S. Salveson took this opportunity to acquire the resources to establish Waldorf College. The original four-story Waldorf Hotel, now called Salveson Hall, houses the college&#039;s administrative offices.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t106 S 6th St.<br />Waldorf College<br />Forest City, IA 50436<br />Winnebago County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.292.1903</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.waldorf.edu\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Gritter Creek Country School",
            "lat": "41.524943",
            "lon": "-92.124997",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gritter Creek Country School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.524943,-92.124997\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Gritter Creek Country School was a brick school was operated from 1874-1956. It was a basic 19th century schoolhouse, with a single stove, wooden desks, slate writing boards, and other antique school supplies. The school is currently being used as a museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1851-1863 336th St<br />North English, IA 52316<br />Iowa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Donna Reed Historic Site",
            "lat": "41.934879",
            "lon": "-95.305642",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Donna Reed Historic Site</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.934879,-95.305642\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This memorial marker sits 100 feet east of the birthplace and childhood home of film and television actress, Donna Reed. Born as Donnabelle Mullenger on January 27, 1921, she was the oldest of William and Hazel Mullenger&#039;s five children and grew up on this farm. The farmhouse was lost to fire in 1983.\r\n\r\nIn 1938 Donna moved to Los Angeles to attend college. By 1954 she had won the Academy Award® for her performance in the acclaimed film &quot;From Here to Eternity.&quot; From 1958-1966 Donna co-produced and starred in her own television series, &quot;The Donna Reed Show.&quot; After her death in 1986, family and friends established The Donna Reed Foundation for the Performing Arts in her memory at the theater center in Denison.\r\n\r\nMemorial constructed and designed by\r\nPat Houston, Chris C. Petersen and the Donna Reed Foundation - 2015</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. M36<br />Denison, IA 51442<br />Crawford County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://DonnaReed.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Forest Theatre",
            "lat": "43.264817",
            "lon": "-93.638010",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winnebago-theater-foresttheatre.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Forest Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.264817,-93.638010\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lyric Theater opened in the early 1930s and occupied the site of The Forest Theatre until it was destroyed by fire in 1950, leaving only three walls of the structure standing. The theater was rebuilt in 1950 as The Forest Theatre and retains integrity from its original period of construction and conveys its historic movie theater associations. Today, the theater seating and decor date to 1965 and the equipment dates to 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t215 N Clark St.<br />Forest City, IA 50436<br />Winnebago County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 541.585.2790</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.forestcitytheatre.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Mansion Museum (Charles J. Thompson House)",
            "lat": "43.266248",
            "lon": "-93.638629",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winnebago-historymuseum-nhr-mansionmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mansion Museum (Charles J. Thompson House)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.266248,-93.638629\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mansion Museum was originally a residence built in 1899 by Charles J. Thompson, a president of the Forest City National Bank. The building is an expression of Georgian Revival architecture, designed by the Chicago firm of Peabody and Beauley. Today, much of the delicate detail is gone, however, the house well exhibits the more obvious features of the style including, the rectangular plan, hipped roof with deck, symmetrical front and the portico with its Corinthian columns and pilasters. The Mansion Museum that now occupies the former residence is run by the Winnebago Historical Society and includes many historical exhibits as well as the Leibrand-Whiteis Research Center. It was added to the National Register of Historic Places on Nov. 30, 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t336 N Clark St.<br />Forest City, IA 50436<br />Winnebago County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.mansionmuseumforestcityiowa.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Leibrand-Whiteis Historical Center",
            "lat": "43.266133",
            "lon": "-93.638640",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winnebago-historymuseum-leibrandwhiteis-historicalcenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Leibrand-Whiteis Historical Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.266133,-93.638640\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">85.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Leibrand-Whiteis Historical Center in the Mansion Museum officially opened June 3, 2012. Headed by Ruth Leibrand and Carol Whiteis, the air-conditioned center holds historical documentation from Winnebago County — Britt, Buffalo Center, Lake Mills, Leland, Rake and Forest City. It holds local and regional news from 1874 to 1921 and microfilm from 1874 to 1950.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t336 N Clark St.<br />Mansion Museum<br />Forest City, IA 50436<br />Winnebago County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Yellow Smoke Park Bridge",
            "lat": "42.026844",
            "lon": "-95.317979",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/crawford-nhr-yellowsmokeparkbridge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Yellow Smoke Park Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.026844,-95.317979\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bowstring pony truss bridge was built in 1945 on a pedestrian walkway over an unnamed stream in Denison, Iowa. During World War II, steel was placed on the “Priorities Critical List” of materials deemed essential to the war effort, so many of Iowa’s counties, including Crawford, reverted to timber construction for small scale bridges during the 1940s. After heavy flooding in May 1945, Crawford County had to rebuild many of these bridges. They chose to use new steel riveted trusses supported by timber substructures, creating hybrid construction types like the Beaver Creek Bridge. This is one of 6 bridges of this type that remain in Crawford County and serve as examples of wartime bridge construction in Iowa. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tYellow Smoke Park<br />Denison, IA 51442<br />Crawford County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cook Farm",
            "lat": "43.030807",
            "lon": "-92.645135",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cook Farm</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.030807,-92.645135\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction on the Cook Farm began in 1850 and lasted a decade, and resulted in two houses and a block of connected barns built of locally-quarried limestone. It is one of few surviving properties which contain a variety of stone structures. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2260 Old US Highway 218<br />Charles City, IA 50616<br />Floyd County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Readlyn Historical Society",
            "lat": "42.701162",
            "lon": "-92.225157",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Readlyn Historical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.701162,-92.225157\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Readlyn Historical Society was founded in 1994. It preserves historical artifacts from the City of Readlyn and the surrounding area and publishes &quot;The Good Old Days of Readlyn, Iowa.&quot;</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t128 Main St.<br />City Hall<br />Readlyn, IA 50668<br />Bremer County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.279.3677</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rhodes Mill",
            "lat": "43.263977",
            "lon": "-93.421631",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rhodes Mill</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.263977,-93.421631\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Rhodes Mill was built on Lime Creek, now known as the Winnebago River in 1858 by the founder of the town of Fertile, Iowa. William Rhodes came from Canada in 1858 and built the mill to process wheat into flour. The mill operated into the 1930s and was restored in 1971 and now has rooms for guest accommodations. It was added to the National Register of Historic Places on Nov. 24, 1978. Also, plan to visit the surrounding William Rhodes Island Park and enjoy the shelter houses, wood burning fireplace and an original grinding stone from the mill.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t298 W Main St.<br />Fertile, IA 50434<br />Worth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.797.2121</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.fertileiowa.us/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wildwood Park Historic District",
            "lat": "43.062175",
            "lon": "-92.692672",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wildwood Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.062175,-92.692672\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Wildwood Park was acquired as a municipal park in 1912, and shortly thereafter developed as a nine-hole municipal golf course. The park had numerous improvements under the Works Progress Administration (WPA) and the Civilian Conservation Corps (CCC). In 1944-1945, the clubhouse served as a prisoner of war camp for captured German soldiers. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1 Wildwood Rd.<br />Charles City, IA 50616<br />Floyd County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rock Falls Bridge",
            "lat": "43.206679",
            "lon": "-93.084508",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rock Falls Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.206679,-93.084508\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Rock Falls Bridge was built in 1929 by C.A. Holvic from Mason City after it was designed by the Iowa State Highway Commission. Since its construction, it has carried Spring Street over the Shell Rock River in unaltered condition. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tSpring St.<br />Rock Falls, IA 50467<br />Cerro Gordo County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Gravesite of Carl King - Oldest Civil War Soldier",
            "lat": "41.097566",
            "lon": "-92.519966",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-cemetery-gravesiteofoldestcivilwarsoldier-12b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gravesite of Carl King - Oldest Civil War Soldier</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.097566,-92.519966\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Curtis King, age 80, was a member of the Iowa 37th Infantry Regiment, also known as the &quot;Graybeard Regiment.&quot;  He is believed to be the oldest Civil War soldier.  He served several months and was discharged in March 1863.  He farmed near Chillicothe and had 3 wives and 21 children.  This memorial has his tombstone and a plaque and is located on the south side of US Highway 63.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUS Hwy. 63<br />Chillicothe, IA 52548<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Ferguson Barn &amp; Crib",
            "lat": "42.902745",
            "lon": "-94.857524",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pocahontas-barn-fergusonbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ferguson Barn &amp; Crib</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.902745,-94.857524\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ferguson Barn and landmark &quot;conehead&quot; crib were built in 1912. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t40415 130th Ave.<br />Laurens, IA 50554<br />Pocahontas County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Little Brown Church in the Vale",
            "lat": "42.961905",
            "lon": "-92.509665",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Little Brown Church in the Vale</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.961905,-92.509665\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Little Brown Church in the Vale was built in 1864. The church was built for almost zero cost, as all of the materials were donated, except for the paint. The people of the then town of Bradford wanted to use the cheapest paint, and all they could find was the dull brown the church got its name from. The church closed in 1888 because of lack of patronage stemming from the town being bypassed by the railroad. It soon reopened in 1914 because of concern from the Society for the Preservation of the Little Brown Church. The congregation of the church grew from the development of the automobile and people&#039;s increased mobility. Attendance to services and wedding celebrations skyrocketed. The Little Brown Church in the Vale is still operating today, and was recently remodeled by the State Historical Society of Iowa Site Preservation Grant Program.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2730 Cheyenne Ave.<br />Nashua, IA 50658<br />Chickasaw County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.435.2027</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://littlebrownchurch.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Old Bradford Pioneer Village",
            "lat": "42.961330",
            "lon": "-92.508644",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Bradford Pioneer Village</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.961330,-92.508644\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old Bradford Pioneer Village is a replica of the old Native American trading post of Bradford. Chief Bradford was the leader at the post. As settlers moved west, the trading post grew into a town of over 1,000 people and had four hotels, general stores, a blacksmith shop, and a school. The town disappeared in the early 1900s after the railroad bypassed the town in order to go through Nashua and New Hampton. The Old Bradford Pioneer Village gives visitors a chance to relive the town of Bradford by visiting a log cabin, a general store, Dr. Pitt&#039;s Office, toy shop, church and even the jail. Two one-room schools have been relocated to the Old Bradford Pioneer Village - the Kraft School and the Greenwood School. Old Bradford Pioneer Village is a project of the Chickasaw County Historical Society.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2729 Cheyenne Ave.<br />Nashua, IA 50658<br />Chickasaw County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.435.2567</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.chickasawtourism.com/bradford.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Coon Center No. 8 School",
            "lat": "42.789255",
            "lon": "-94.993535",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Coon Center No. 8 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.789255,-94.993535\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Coon Center No. 8 School is located on the grounds of the Albert City Threshermen and Collectors Show and is open to visitors during the 3-day threshing show held in the summer.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5015 210th Ave.<br />Albert City, IA 50510<br />Buena Vista County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Floyd County Historical Society and Museum",
            "lat": "43.062916",
            "lon": "-92.678935",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Floyd County Historical Society and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.062916,-92.678935\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Floyd County Museum is considered one of the top ten county museums in the nation. It has an extensive collection of tractors and other farm equipment that tell the story of Charles Hart and Charles Parr and how they built the first factory for tractor production in 1901. The museum also displays artifacts, and memorabilia of early pioneer life in the home, school, church, businesses and military. The museum is located in the former Dr. Salisbury&#039;s Laboratories building. Dr. Joseph Salisbury was an English immigrant and veterinarian who arrived in Charles City in 1924. Apart from his veterinary practice, Salisbury had a side business specializing in the treatment of poultry diseases. Soon he decided to devote his entire career to developing pharmaceuticals for poultry and organized Dr. Salisbury&#039;s Poultry Service Company. The company was renamed Dr. Salisbury’s Laboratories and this building was completed in 1937. Eventually, the laboratories’ operations were expanded to include biologics for larger animals, such as cattle and hogs. The building was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t500 Gilbert St.<br />Charles City, IA 50616<br />Floyd County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.228.1099</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://floydcountymuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Beaconsfield Supply Store",
            "lat": "40.807573",
            "lon": "-94.050419",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/ringgold-nhr-beaconsfieldsupplystore-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Beaconsfield Supply Store</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.807573,-94.050419\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Beaconsfield Supply Store is the only surviving commercial building in Beaconsfield. Charles Hyde and David Vredenburg operated a grocery store in the building from 1930 to 1933. The partners were incoporated as Hyde &amp; Vredenburg, Inc. and opened numerous stores were first known as Supply Stores and Hyde Service Stores. The stores were renamed Hy-Vee in 1952, forming the name from the last name of co-founder Charles Hyde - the Hy- portion - and taking the Vee from co-founder David Vredenburg&#039;s surname. The Beaconsfield Supply Store was added to the National Register of Historic Places in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1621 Main St.<br />Beaconsfield, IA 50074<br />Ringgold County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Alvin Miller House",
            "lat": "43.067452",
            "lon": "-92.684492",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alvin Miller House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.067452,-92.684492\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Miller House is the smallest of the seven Usonian homes Frank Lloyd Wright designed in Iowa. This is one the earlier Iowa Usonians, designed in 1946. Usonian homes were typically small, L-shaped, single-story structures that featured flat roofs and large cantilevered overhangs. They often used solar heating and natural cooling, and were designed to incorporate plenty of natural lighting with clerestory windows. The house was expanded in 2007, with plans based on Wright sketches an using stone from the same quarry as the original. The Miller House was added to the National Register of Historic Places on Nov. 16, 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1107 Court St.<br />Charles City, IA 50616<br />Floyd County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Floyd County Courthouse",
            "lat": "43.065196",
            "lon": "-92.681450",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/floyd-nhr-floydcountycourthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Floyd County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.065196,-92.681450\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Floyd County Court House is one of ten county courthouses built in Iowa during the New Deal Era as part of the federal Public Works Administration and its successor agencies. It is an example of the PWA style of public building architecture developed during the 1930s and early 1940s. It was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 S Main St.<br />Charles City, IA 50616<br />Floyd County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Cook No. 8 School",
            "lat": "42.400652",
            "lon": "-95.263722",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cook No. 8 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.400652,-95.263722\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cook No. 8 School was built in on the former Cook Ranch in 1902 when Mr. Cook deeded land to the county to have a schoolhouse built for his children and tenants. The school still stands at its original site in Section 27, Cook Township, alongside the ranch which has been transformed into the Prairie Pedlar Gardens. In addition to the school house, the gardens feature more than 75 display gardens, the refrubished bow-truss barn and five greenhouses.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1609 270th St.<br />Odebolt, IA 51458<br />Sac County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.668.4840</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.prairiepedlar.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Main Street Bridge",
            "lat": "43.066047",
            "lon": "-92.679898",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/floyd-nhr-mainstreetbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Main Street Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.066047,-92.679898\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Main Street Bridge crosses the Cedar River in Charles City. It was built in 1909 by the Advance Construction Co. of Waukesha, Wisconsin. This concrete arch bridge is noteworthy among the remaining urban arch bridges for its relatively early construction date and its well-preserved condition. It was added to the National Register of Historic Places on March 12, 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Charles City, IA 50616<br />Floyd County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Central Park - North Main Street Historic District",
            "lat": "43.068547",
            "lon": "-92.677731",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/floyd-nhr-centralparknorthmainstreethistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Central Park - North Main Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.068547,-92.677731\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Charles City was first established in 1855 with the major street, Mill Street (now North Main Street) aligned with the river ford. The district is comprised of 16 structures that housed the following historic commercial businesses and homes: Farmers Trust and Savings Bank (101-103 N. Main), Legel Building/Casino Theater (105 N. Main), Legel Drug Store (107 N. Main), Herrington Building (109 N. Main), Gilbert&#039;s Stone Block (119-123 N. Main), Lindon-Commercial Bank-Dyke Building (205-209 N. Main), Waller Building (211 N. Main), May Building (213 N. Main), John Kuck Harness Shop (217 N. Main), Carl Merckel Hardware (219 N. Main), J.W. Lehmkuhl Building (221 N. Main), First National Bank (223 N. Main), Public Library (301 N. Jackson), H.J. Fitzgerald Home (305 N. Jackson), Milo Gilbert House (307 N. Jackson) and Central Park. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t213 N Main St.<br />Charles City, IA 50616<br />Floyd County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Charles Theater",
            "lat": "43.069259",
            "lon": "-92.677276",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/floyd-theater-charlestheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.069259,-92.677276\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Charles Theater opened in 1938 as a subsidiary of Paramount Pictures. The theater had an original seating capacity of 600. It eventually went bankrupt and was sold in 1990, however, the new owners continued to operate it as a theater. The historic marquee has been rehabilitated and is a show piece of downtown Charles City. The Charles Theater is a non-profit volunteer run organization.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t409 N Main St.<br />Charles City, IA 50616<br />Floyd County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.228.3821</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://charlescity365.com/movies/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "A.B.C. Dodd House",
            "lat": "43.065259",
            "lon": "-92.668652",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">A.B.C. Dodd House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.065259,-92.668652\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The A.B.C. Dodd House is an excellent example of the Prairie School Style—inspired by Frank Lloyd Wright. It is one of only two buildings in Iowa designed by Purcell and Elmslie. Purcell and Elmslie worked for the great architect Louis Sullivan of Chicago, who was also the mentor of Frank Lloyd Wright. It was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310 3rd Ave.<br />Charles City, IA 50616<br />Floyd County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles Henry Paar House",
            "lat": "43.073121",
            "lon": "-92.682335",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles Henry Paar House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.073121,-92.682335\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1902, this house was the home of Charles Henry Parr. Parr and Charles W. Hart were co-founders of the Hart-Parr Co., a firm that pioneered the development of gasoline tractors during the first decades of the 20th century. It was added to the National Register of Historic Places on Jan. 24, 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Hulin St.<br />Charles City, IA 50616<br />Floyd County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Leo Elthon Gravesite",
            "lat": "43.279874",
            "lon": "-93.408990",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Leo Elthon Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.279874,-93.408990\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Leo Elthon (June 9, 1898 - April 16, 1967) served as the 32nd Governor of Iowa from November 21, 1954 to January 13, 1955, filling the unexpired term of Gov. William Beardsley. Elthon is interred at his hometown of Fertile at Brush Point Cemetery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tEvergreen Ave.<br />Fertile, IA 50434<br />Worth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Fred G. Turner House",
            "lat": "41.557021",
            "lon": "-92.065775",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fred G. Turner House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.557021,-92.065775\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fred Turner House, built around 1903, is a well-preserved example of the free classic Queen Anne style, rarely applied in a rural setting in Iowa County. It is one of four such examples in its immediate area. Turner served as a state representative for two terms, represented his county in the Farmer&#039;s Grange, and was County Supervisor for six years. His home was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3079 M Ave.<br />IA Hwy. 149<br />North English, IA 52316<br />Iowa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles Walter Hart House",
            "lat": "43.065224",
            "lon": "-92.660631",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles Walter Hart House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.065224,-92.660631\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hart house, built around 1913, is a well-preserved and interesting example of Craftsman style architecture. The house was the home of Charles Walter Hart, co-founder with Charles H. Parr of the Hart-Parr Co., a firm that pioneered the development of gasoline tractors during the first decades of the 20th century. It was added to the National Register of Historic Places on Jan. 25, 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t800 3rd Ave.<br />Charles City, IA 50616<br />Floyd County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Yezek Barn",
            "lat": "43.225259",
            "lon": "-93.082568",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-barn-yezekbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Yezek Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.225259,-93.082568\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Yezek Barn, dating to 1930,  is one of the only barns left standing in the area. It measures 32’ x 52’ and has a metal cupola. The barn was in a vulnerable condition when the Yezeks chose to restore it. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t22881 Vine Ave.<br />Co. Rd. S62<br />Plymouth, IA 50464<br />Cerro Gordo County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "William A. McHenry House",
            "lat": "42.018196",
            "lon": "-95.352282",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/crawford-nhr-williammchenryhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William A. McHenry House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.018196,-95.352282\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1886, The McHenry House is a white, 2 ½ story building in the Late Victorian shingle style, sitting on a hill in the heart of Denison. It is currently maintained as the headquarters for the Crawford County Historical Society and houses many historical artifacts. Donna Reed&#039;s Oscar for Best Supporting Actress in her 1953 film &quot;From Here to Eternity&quot; is on display. The house was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1428 1st Ave. N<br />Denison, IA 51442<br />Crawford County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.674.3750</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Clarence D. Chamberlin House",
            "lat": "42.014739",
            "lon": "-95.352145",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/crawford-nhr-clarencechamberlainhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clarence D. Chamberlin House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.014739,-95.352145\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This frame house was constructed in the 1890s and was the boyhood home of Clarence D. Chamberlin, the pilot of the first trans-Atlantic passenger flight, which took place on June 4, 1927. The house is architecturally unique, with a number of projected wings, bays, and vestibules. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1434 2nd Ave. S<br />Denison, IA 51442<br />Crawford County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John T. and Marietta Carey House",
            "lat": "42.018089",
            "lon": "-95.351558",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/crawford-nhr-johnmariettacareyhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John T. and Marietta Carey House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.018089,-95.351558\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John T. and Marietta (Greek) Carey House was built in 1893 and added to the National Register of Historic Places in 2004. Carey was an active civic leader who held several positions in city and county government. Marietta Carey’s parents had been among the early pioneers to settle in Crawford County and she was among the first born children there.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1502 1st Ave. N<br />Denison, IA 51442<br />Crawford County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Opa&#039;s Tractor Barn Museum",
            "lat": "41.806471",
            "lon": "-91.964387",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Opa&#039;s Tractor Barn Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.806471,-91.964387\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Opa&#039;s Tractor Barn Museum features Minneapolis-Moline tractors, machinery, agricultural history memorabilia, barnyard in miniature and more. At the museum you can enjoy the Amana Colonies&#039; Largest Bowling Ball Run.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t609 7th Ave.<br />West Amana, IA 52203<br />Iowa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.622.3315</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Citizens Savings Bank Museum",
            "lat": "43.281497",
            "lon": "-93.378821",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Citizens Savings Bank Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.281497,-93.378821\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Citizens Savings Bank building was built in 1919 and designed by Einar O. Broaten. The exterior of the building combines elements from a variety of architectural styles, predominately the Classical Revival style. The interior is done in the Prairie School style with oak woodwork, stained glass and marble. The bank operated as the Citizens Savings Bank until Sept. 1, 1981. The building currently houses a museum focusing on the history of Hanlontown.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Hanlontown, IA 50444<br />Worth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.324.1180</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.worthhistory.org/index.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Sime-Oswald Cabin",
            "lat": "43.281545",
            "lon": "-93.379223",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sime-Oswald Cabin</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.281545,-93.379223\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This pioneer cabin was built in 1869 by Norwegian immigrant Arne Sime. The 18&#039; x 30&#039; two-story cabin has been moved at least three times in its past and now resides in downtown Hanlontown. The original location of the cabin is unknown, but was likely built south of Highway 105 on or near the southbound lane of Interstate 35.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Hanlontown, IA 50444<br />Worth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.324.1180</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.worthhistory.org/index.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Henry Moore&#039;s Mini Americana Barn Museum",
            "lat": "41.777868",
            "lon": "-91.967742",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry Moore&#039;s Mini Americana Barn Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.777868,-91.967742\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Henry Moore Mini Americana Barn Museum is a collection of miniature wood workings. The museum has an Amana reproduction, pioneer Iowa farmsteads, Abraham Lincoln&#039;s village of New Salem, Illinois, California logging camp of the late 1800&#039;s, Plains Indian village, The Little Brown Church and a Louisiana sugar plantation of the 1840s. The museum is an interesting look into the culture and architecture of historical rural America.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t413 P St.<br />South Amana, IA 52334<br />Iowa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.622.3058</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://barnmuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Donna Reed Center for the Performing Arts",
            "lat": "42.016573",
            "lon": "-95.354883",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/crawford-artperforming-donnareedcenterforperformingarts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Donna Reed Center for the Performing Arts</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.016573,-95.354883\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Donna Reed Center for the Performing Arts opened in 1914 as the Germania Opera House, and was later known as the Ritz Theatre. The building was purchased by the Donna Reed Foundation in 1988 and converted into the venue it is today. The theatre seats 550 and offers films as well as live concerts and theatrical presentations year round.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1305 Broadway<br />Denison, IA 51442<br />Crawford County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.263.3334</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://donnareed.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Heflin Barn",
            "lat": "41.627094",
            "lon": "-95.265396",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-barn-heflinbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Heflin Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.627094,-95.265396\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Once there were several of these unique barns in the area, but this is the only one remaining. The barn, built in 1901 and featuring a roofline of four equidistant gabled sides, has been used by four generations of Heflins. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t837 Orange Rd.<br />Harlan, IA 51537<br />Shelby County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Communal Agriculture Museum",
            "lat": "41.777681",
            "lon": "-91.966807",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Communal Agriculture Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.777681,-91.966807\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The seven villages of the Amana Colonies were settled by a German religious group in the 1850s. They established a communal village-based agricultural system that is a marked contrast to the Midwest family farm tradition. The story of Amana&#039;s past and present is told by its landscape and historic buildings that include barns, stores, churches and communal kitchen houses.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t505 P St.<br />South Amana, IA 52203<br />Iowa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.622.3567</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://amanaheritage.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "David and Maria Hughes House",
            "lat": "41.659429",
            "lon": "-92.007789",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">David and Maria Hughes House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.659429,-92.007789\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">87.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1901, the David and M. Maria Hughes home exemplifies the free classic Queen Anne style of residence popular with prosperous families at the turn of the century. It was described as &quot;the finest residence in Iowa County&quot; in an April 1903 issue of the local newspaper, the Journal-Tribune. The house was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 W Penn St.<br />Williamsburg, IA 52361<br />Iowa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Crawford County Courthouse",
            "lat": "42.017216",
            "lon": "-95.356851",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/crawford-nhr-crawfordcountycourthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Crawford County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.017216,-95.356851\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">88mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Crawford County Courthouse was designed by George A. Berlinghof in the Beaux Arts style of architecture and was completed in 1904. The building is the focus of county government and a representation of the political power and prestige Denison has gained from its position as the seat of Crawford County. The courthouse was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBroadway, Between B Ave. and C Ave.<br />Denison, IA 51442<br />Crawford County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Keokuk County Courthouse",
            "lat": "41.333293",
            "lon": "-92.204499",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Keokuk County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.333293,-92.204499\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">88.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>After the Keokuk County seat was returned to Sigourney in 1856, the courthouse was constructed in 1911. The courthouse is constructed with Bedford limestone and its central tower rises above the surrounding business district and the historic trees on the courthouse and library grounds donated by poet Lydia Huntley Sigourney. The trees were planted in appreciation of the final decision by the government to establish the county seat in Sigourney. Inside the courthouse you will find six murals painted by C.E. Rang of Chicago in 1912. They were rediscovered and restored in 1983 by Des Moines artist Sven Paulson. The Keokuk County Courthouse was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 S Main St.<br />Sigourney, IA 52591<br />Keokuk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sigourney Public Library",
            "lat": "41.334870",
            "lon": "-92.203727",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sigourney Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.334870,-92.203727\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">88.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1913-1914, the Sigourney Public Library is a unique architectural hybrid of Georgian upper-class values and rustic bungalow amalgamation. The library features a remarkable hipped roof above the rafters supporting the central pavilion. The Sigourney Public Library was added to the National Historic Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t203 N Jefferson St.<br />Sigourney, IA 52591<br />Keokuk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Public Square Historic District",
            "lat": "41.333552",
            "lon": "-92.204567",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Public Square Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.333552,-92.204567\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">88.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Composed of many original brick buildings, as well as the Keokuk County Courthouse, this district demonstrates how important the county seat has been to towns across Iowa. The district provides a large selection of popular and commercial architectural designs. The Public Square Historic District was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 S Main St.<br />Sigourney, IA 50268<br />Keokuk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Park Motel",
            "lat": "42.012038",
            "lon": "-95.362894",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/crawford-nhr-parkmotel.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Park Motel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.012038,-95.362894\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">88.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Park Motel, built in the Spanish Colonial Revival style, was built at the junction of the Lincoln Highway and two other major routes through Western Iowa. The Denison Review touted the new Park Motel: “Nightly the huge neon sign burns brightly - lights shine from the windows - and in the daytime the flashy red tiles of the roof blaze above the creamy-white of the Spanish stucco walls! All this, and more too, heralds the opening of Denison&#039;s newest haven for tourists—the Park Motel, constructed at the intersection of Highways 30, 59 and 141 by Ted Port.” Many postcards jointly advertised the Park Motel and Cronk&#039;s Cafe as a haven for Lincoln Highway travelers. The Park Motel has been in continuous operation since it was built in 1940 and it was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t803 4th Ave. S<br />Denison, IA 51442<br />Crawford County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.263.4144</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.theparkmotel.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Keokuk County Historical Society and Museum",
            "lat": "41.334902",
            "lon": "-92.201225",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Keokuk County Historical Society and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.334902,-92.201225\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">88.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Keokuk County Historical Society and Museum, located in the historic St. Paul&#039;s United Church of Christ building, displays a collection of local artifacts, photographs, maps and more. Research your family history in the genealogy department using cemetery records and obituaries.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t402 E Elm St.<br />Sigourney, IA 52591<br />Keokuk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George Rewerts House",
            "lat": "41.829336",
            "lon": "-95.342624",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-nhr-georgerewertshouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Rewerts House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.829336,-95.342624\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">88.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The George Rewerts House is locally significant because it exemplifies the work of a German immigrant designer/craftsman George Rewerts. Rewerts&#039; skills in carpentry and design are best illustrated in this home which he constructed in 1902 with the assistance of local carpenters Nels Gregersen and Lee Hulsebus. The house was an example of the local building industry developed by German immigrants. The George Rewerts House was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t306 8th St.<br />Defiance, IA 51527<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Chapel Hill Cemetery",
            "lat": "43.299001",
            "lon": "-93.443114",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chapel Hill Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.299001,-93.443114\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">88.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The historic Chapel Hill Cemetery was established in 1878 and was first known as the Norwegian-Danish Evangelical Lutheran Conference Cemetery (later known as the North Fertile Cemetery). The last burial in the cemetery was in 1939. In 1982, the Worth County Historical Society placed a miniature 8&#039; x 12&#039; church, which was built in 1930 for Father Ehl, the pastor of the Sacred Heart Church in Manly, Iowa at the cemetery site. The church is open by appointment only.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t370th St.<br />Fertile, IA 50434<br />Worth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.324.1180</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.worthhistory.org/index.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "High Amana General Store",
            "lat": "41.803356",
            "lon": "-91.940457",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/iowa-nhr-amanacolonies-highamanastore.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">High Amana General Store</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.803356,-91.940457\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">88.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The High Amana General Store is replica of the communal general store from 1857. The store is filed with unique trinkets and food items. The interior and exterior architecture remain virtually untouched and give the general store that true 1850s look and feel.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1308 G St.<br />Amana, IA 52203<br />Iowa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.622.3232</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://amanaheritage.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ottumwa Naval Air Station Administration Building",
            "lat": "41.106342",
            "lon": "-92.440927",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-ottumwanavalairstation.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ottumwa Naval Air Station Administration Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.106342,-92.440927\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">88.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The U.S. Naval Air Station Ottumwa was a airfield used by the US Navy to train Naval Airmen from 1943-1947. The station was built immediately following the Pearl Harbor bombing, and quickly trained 4,626 new pilots. Future President Richard Nixon served at the Ottumwa Naval Air Station. When built, the Naval Air Station consisted of 65 buildings covering 1,440 acres. The Administration Building was completed on February 1, 1943 at a cost of $93,702.92. The building, and many of the others on the complex, were built of glazed hollow tile rather than lumber as the original plans called for. Tile was readily available from a local company, Ottumwa Brick and Tile. The Administration Building was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t14550 Terminal Ave.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.nasottumwa.org/home\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Iowa Baseball Museum of Norway",
            "lat": "41.902734",
            "lon": "-91.920797",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-historymuseum-iowabaseballmuseumofnorway.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Baseball Museum of Norway</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.902734,-91.920797\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">88.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Iowa Baseball Museum of Norway tells the story of how baseball became wildly popular and successful in Norway (population 600). Before closing in 1991, the Norway High School Baseball team won 20 State Championships and produced major leaguers Mike Boddicker, Bruce Kimm and Hal Trosky. The Norway team&#039;s last season is detailed in the 2007 film &quot;The Final Season.&quot;</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t112 E Railroad St.<br />Norway, IA 52318<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "South Central Iowa Theatre",
            "lat": "40.740869",
            "lon": "-93.747055",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">South Central Iowa Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.740869,-93.747055\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89mi.</span></div>\n\t\t</div>\n\n\t\t<p>The South Central Iowa Theatre was constructed in 1924. The theatre switched to Vaudeville shows prior to WWII, but has subsequently switched back to movies. The theatre was renovated in the 1990s and remains in operation today at its original location.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t208 N Main St.<br />Leon, IA 50144<br />Decatur County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Decatur County",
            "lat": "40.740926",
            "lon": "-93.746554",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Decatur County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.740926,-93.746554\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Decatur County Freedom Rock® is a thank you to veterans from across all eras, portrayed by a group of soldiers running together – a female soldier carrying the national banner and a Revolutionary War and World War II soldier both carrying their rifles. The drama in the scene is increased with an aircraft carrier, submarine, jet and helicopter in the background. Area Korean War veteran Master Sergeant D. Darrell Johnston is featured on the south side of the rock. Part of Johnston’s citation for earning his medals reads: &quot;...Sergeant Johnston unhesitatingly exposed himself to the deadly enemy fire, charging boldly toward the critical enemy position and firing his weapon with extreme accuracy. He then unleashed a barrage of grenades and returned to friendly elements to replenish his depleted supply of ammunition. He advanced on the enemy bunker once again and destroyed it, thus enabling his comrades to continue the attack and ultimately secure the objective.&quot; The other two sides of the rock honor those who paid the ultimate price serving the country and those who served time as POW/MIA. The Decatur County (Leon) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Main St. and NE 3rd St.<br />Courthouse Square<br />Leon, IA 50144<br />Decatur County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Warren No. 9 School",
            "lat": "42.809724",
            "lon": "-92.257864",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Warren No. 9 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.809724,-92.257864\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Warren No. 9 School is a one room school house built in the 19th century. It is open by appointment, for school tours, and during Tripoli Days.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t103 N Main St.<br />North Park<br />Tripoli, IA 50676<br />Bremer County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.882.3164</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Grant Township Schoolhouse No. 5",
            "lat": "43.299100",
            "lon": "-93.911578",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grant Township Schoolhouse No. 5</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.299100,-93.911578\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grant Township School House No. 5 was built about 1920 and stands on its original location. It was the home of the first consolidated school west of the Mississippi River. The structure served as a schoolhouse into the 1950s and then was used as a township voting center.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t30th Ave. and 370th St.<br />Grant Township<br />Buffalo Center, IA 50424<br />Winnebago County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Decatur County Courthouse",
            "lat": "40.740695",
            "lon": "-93.746366",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Decatur County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.740695,-93.746366\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Decatur County Courthouse was constructed in 1908 by Smith, Wetherell, and Gage. It is a variation on the Renaissance Revival style with a clock tower. It also has two historic murals painted in 1908 by an unknown artist. The courthouse was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t207 N Main St.<br />Leon, IA 50144<br />Decatur County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lenox Township Church of the New Jerusalem",
            "lat": "41.847295",
            "lon": "-91.928706",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lenox Township Church of the New Jerusalem</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.847295,-91.928706\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lenox Township Church of the New Jerusalem is a historic Swedenborgian church in Norway, Iowa. It was built in 1880 and is an example of a vernacular frame church building. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1053 T Ave.<br />Norway, IA 52318<br />Iowa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Decatur County Museum",
            "lat": "40.739781",
            "lon": "-93.746714",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Decatur County Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.739781,-93.746714\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Decatur County Museum houses the largest collection of historical artifacts in the county. The museum includes unique collections of historical artifacts and antiques displayed in various room settings, such as a general store, parlor, kitchen, dining room, bedroom and blacksmith shop.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t111 N Main St.<br />Leon, IA 50144<br />Decatur County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.446.4841</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Veterans Memorial Park",
            "lat": "42.809823",
            "lon": "-92.257843",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Veterans Memorial Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.809823,-92.257843\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89mi.</span></div>\n\t\t</div>\n\n\t\t<p>Veteran&#039;s Memorial Park is a great tribute to veterans. It features three flag poles and several full size statues.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t103 N Main St.<br />Tripoli, IA 50676<br />Bremer County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Wabash Combination Depot Museum",
            "lat": "40.891947",
            "lon": "-92.825116",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/statewide-appanoose-nhr-wabashcombinationdepotmuseum-1a-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wabash Combination Depot Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.891947,-92.825116\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wabash Combination Depot is believed to be one of the two remaining standard plan wooden Wabash combination freight and passenger depots in Iowa. Railroad artifacts are on display and there is an operational model train layout. There is also a restored railroad section car. The Wabash Combination Depot was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t800 W North St.<br />Moravia, IA 52571<br />Appanoose County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.724.3777</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "L. M. and O. Railroad Museum",
            "lat": "42.855277",
            "lon": "-94.981258",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">L. M. and O. Railroad Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.855277,-94.981258\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The L. M. and O. Railroad Museum has exhibits with a fully functioning depot, restored caboose, and a railroad yard. It is operated by the Marathon Area Historical Society.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t508 S Neptune St.<br />Marathon, IA 50565<br />Buena Vista County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "America&#039;s French Icarian Village",
            "lat": "40.990192",
            "lon": "-94.671834",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adams-historicsite-americasfrenchicarianvillage.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">America&#039;s French Icarian Village</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.990192,-94.671834\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The French Icarian Colony Foundation seeks to preserve the cultural heritage of the French Icarians who came to Adams County in 1848. They are working to create an open-air, living-history museum. The Icaria Colony was the longest existing, non-religious and pure communal experiment in American history, lasting fifty years with colonies in Texas, Louisiana, Illinois, Missouri, Iowa and California. The Icaria Colony at Corning lasted from 1852-1879. This museum will feature interactive exhibits in the America&#039;s French Icarian Village and the Icarian Schoolhouse. The village features a restored Icarian cemetery, a communal one-room dining hall, and the one-room Icarian schoolhouse, which was built in 1860. This schoolhouse has been restored, with aid from the Adams County Historical Society, and is now available for tours.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2349 220th St.<br />Corning, IA 50841<br />Adams County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.322.4717</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://icaria.net\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Corydon Opera House (Wayne Theatre)",
            "lat": "40.758300",
            "lon": "-93.319051",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wayne-theater-corydonoperahousewaynetheatre.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Corydon Opera House (Wayne Theatre)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.758300,-93.319051\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Corydon Opera House, also known as the Wayne Theatre, was built in 1936 with cinder block in an art deco design. Today, the Wayne Theatre offers movies in digital projection and 3D.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 N Franklin St<br />Corydon, IA 50060<br />Wayne County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.872.2750</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Cass County",
            "lat": "41.305589",
            "lon": "-95.078513",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Cass County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.305589,-95.078513\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cass County Freedom Rock® focuses on the area’s rich Civil War history. The rock features the Reverend Hitchcock’s House, a stop on the Underground Railroad and today a National Historic Landmark. When the Civil War broke out, sparsely populated Cass County raised an entire company of men: Company I of the 23rd Infantry. The image of Company I is made to look like photos of the men riding their horses down what is now known as the White Pole Road. Major Belle Reynolds is also featured on the rock.  She worked as a teacher in Cass County before marrying and joining her husband in the Civil War.  Reynolds earned an officer’s commission, being named a Major after the Battle of Shiloh.  She was the only woman to officially be given rank in the Union Army during the Civil War. The Cass County (Lewis) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Main St. and 5th St.<br />Lewis, IA 51544<br />Cass County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Wayne County",
            "lat": "40.757428",
            "lon": "-93.318569",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Wayne County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.757428,-93.318569\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wayne County Freedom Rock® is dedicated to wars of the past. The road facing side of the rock showcases the World War I monument that is next to the rock. Veterans of the Civil War, Mexican American War and World War I are honored with a ribbon stating “May we never forget the service in wars past.” The other side of the rock is dedicated to &quot;Mad&quot; Anthony Wayne, the namesake of Wayne County and a famous officer in the Revolutionary War. Battle after battle Wayne showed intense leadership and earned his nickname by never being willing to surrender. At the Battle of Germantown, Wayne led his forces against the British and his soldiers pushed ahead of other American units, and, according to his report, when the British retreated, they &quot;pushed on with their bayonets – and took ample vengeance.&quot; The Wayne County (Corydon) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Jefferson St. and S Franklin St.<br />Corydon, IA 50060<br />Wayne County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Prairie Trails Museum of Wayne County",
            "lat": "40.757427",
            "lon": "-93.311446",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prairie Trails Museum of Wayne County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.757427,-93.311446\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Prairie Trails Museum of Wayne County is a historical museum and historical and genealogical library. The museum has 25,000 artifacts in its five galleries including exhibits: 1940s-1950s Theater, 20th Century Exhibit, Armed Forces Exhibit, The Heritage Barn, Jesse James Exhibit, Mormon Trail Exhibit and others.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t515 E Jefferson St.<br />Corydon, IA 50060<br />Wayne County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.872.2211</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.prairietrailsmuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "W. H. Tedford House",
            "lat": "40.755247",
            "lon": "-93.322232",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">W. H. Tedford House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.755247,-93.322232\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Tedford House, built in 1880, is a well-preserved example of late 19th century vernacular Italianate residential architecture. It is highly typical of houses of this style in Iowa, with its low, crested hipped roof, rectangular form with protruding bays, and prominent veranda. The house displays a good variety of exterior ornamentation. The house was originally the home of the Judge W. H. Tedford family. Tedford served in Company F, 11th Iowa Infantry in the Civil War, taking part in the battles of Shiloh, Corinth, Vicksburg and Atlanta. After attending Iowa State University and graduating from the law department he settled at Corydon and commenced a law practice. It was added to the National Register of Historic Places on March 26, 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t312 West S<br />Corydon, IA 50060<br />Wayne County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Floral Hall",
            "lat": "41.664675",
            "lon": "-95.313220",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-nhr-floralhall-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Floral Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.664675,-95.313220\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Floral Hall is the centerpiece of the Shelby County fairgrounds. This building is the oldest surviving structure on the 106 year old fairgrounds complex, and it is probably one of the oldest county fair exhibition buildings in the state. Constructed sometime between 1879 and 1882 to house exhibits, this wood frame edifice, erected in the shape of a cross, has been utilized annually for a wide range of activities. Cross-shaped buildings of this vintage are rare in Iowa as are 19th century fair buildings in predominantly agricultural counties. The Floral Hall was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t314 4th St.<br />Harlan, IA 51537<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Monroe No. 8 School House",
            "lat": "41.477535",
            "lon": "-95.221263",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-countryschool-monroeno8.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Monroe No. 8 School House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.477535,-95.221263\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Monroe No. 8 One-Room Country Schoolhouse was built in the early 1900&#039;s. The school has been restored to its 1920s era, and is currently being used as a museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t610 Highland St.<br />Walnut, IA 51577<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.784.2100</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Rock Island Caboose No. 17054",
            "lat": "43.283760",
            "lon": "-93.201362",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rock Island Caboose No. 17054</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.283760,-93.201362\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Rock Island Caboose No. 17054, Donated to the city of Manly by the Manly Development Corporation. Retired to the site Oct. 16, 1986. Our railroad heritage is honored with a restored Rock Island Railroad Caboose Number 17054 at the corner of Hwy 9 and Broadway. The plaque reads: &quot;Donated to the City of Manly by the manly Development Corporation Retired to this site October 16, 1986&quot;</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t106 S Broadway<br />Manly, IA 50456<br />Worth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.454.3090</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Walnut Creek Historical Museum",
            "lat": "41.477622",
            "lon": "-95.222453",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-historymuseum-walnutcreekhistoricalmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Walnut Creek Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.477622,-95.222453\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Walnut Creek Historical Museum is dedicated to preserving and displaying the rich history of Walnut, Iowa. Located on Antique City Drive, this museum is filled with photos, clothing, and all manner of items for our past, this museum will educate and entertain.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t304 Antique City Dr.<br />Walnut, IA 51577<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.784.2100</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://walnutiowa.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "German Bank Building",
            "lat": "41.477399",
            "lon": "-95.222293",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-germanbankbuilding-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">German Bank Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.477399,-95.222293\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The German Bank Building of Walnut was originally built in 1916 is a distinctive product of the design work of the St. Louis Bank Equipment Company. The company was an innovator in the field of bank remodeling and the bank in Walnut is an early example of their work. In a major remodeling project, Mission stylistic features were applied to a 19th century commercial building. The project reflected the prosperity Walnut enjoyed in the early years of the 20th century and reveals insights into how major bank remodeling projects were accomplished. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t510 Highland St.<br />Walnut, IA 51577<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "underground-railroad.png",
            "title": "Nishnabotna Ferry House",
            "lat": "41.308336",
            "lon": "-95.093923",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/underground-railroad.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nishnabotna Ferry House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.308336,-95.093923\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Nishnabothna Ferry House is a rare surviving ferry keeper’s house. It was the home of Samuel Harlow Tefft. The road and ferry were used by emigrants heading west and the stage coach and mail routes. The Underground Railroad, the Mormon Trail, the Mormon handcart companies, and emigrants in search of gold and silver in Colorado also used the crossing. It is frequently considered the &quot;I-80 of the 1850s&quot; as it saw thousands of travelers during its use. The Ferry House was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Minnesota St.<br />Lewis, IA 51544<br />Cass County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.243.1931</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Harlan Theater",
            "lat": "41.657610",
            "lon": "-95.318670",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-theater-harlantheatre-4.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Harlan Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.657610,-95.318670\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Harlan Theater building was constructed in 1882 as Long&#039;s Opera Hall. Beginning in 1928, the building was converted into a single-screen movie theater with 550 seats. The Backer family ran the theater between the 1940s and 1975. Al Woodraska, who made major modifications to the building, including renovations to the lobby, storefront and marquee, and infilling of the balcony level, ran the theater between 1975 and 2005. The Lucke&#039;s, family members of both the Backer and Woodraska families, purchased the theater in 2005, and added two screens in the adjacent building. The Harlan Theater is still operating today under the Lucke family. The building is listed as contributing to the Harlan Courthouse Square Commercial District.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t621 Court St.<br />Harlan, IA 51537<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Shelby County Courthouse",
            "lat": "41.658149",
            "lon": "-95.318161",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-nhr-shelbycountycourthouse-4.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Shelby County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.658149,-95.318161\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Shelby County Courthouse was the first county seat for Shelby County in Shelbyville. After the seat was moved to Harlan, a two-story frame building was erected in 1860 for the courthouse. A second courthouse was built for $4,250 in 1875. Construction on the present courthouse began in 1892 and it was built for $62,733.90. The cornerstone was laid on August 4, 1892 and the building was dedicated on November 13, 1893. A $300,000 renovation of the building, which included installation of its first elevator, was completed in 1978. The Shelby County Courthouse was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t7th St<br />Harlan, IA 51537<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Harlan Courthouse Square Commercial District",
            "lat": "41.658136",
            "lon": "-95.318270",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-historicdistrict-harlansquarecommercialdistrict-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Harlan Courthouse Square Commercial District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.658136,-95.318270\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Courthouse sits in as the center of the Historic Courthouse Square district with 51 buildings surrounding it. Of the 51 buildings, 19 were built before 1892; 27 were built between 1892-1902; and only 5 were built after 1902. In addition to the buildings, the district includes two monuments. As a result, the district conveys a very strong sense of what the Harlan commercial district looked like in the 1890s-early 1900s when commercial development was at its peak. Today the Square is full of delightful specialty shops, has an international flavor for your dining experience and offers a walking tour. The Harlan Courthouse Square Commercial District was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHarlan, IA 51537<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Shetland Pony Farm Barn (Kala Leeper Barn)",
            "lat": "40.725778",
            "lon": "-93.653384",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Shetland Pony Farm Barn (Kala Leeper Barn)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.725778,-93.653384\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn was originally the home to Fashion Club Pony Farms. Many ponies from the farm were featured in Spiegel catalogs. The farm was owned by Gene “Cowpuncher” Harris, a Leon native, who moved to Chicago. The barn was built by Bud Sims between 1910 and 1918. The redwood used for the foundation was pre-cut and sent from the Northwest. The loft barn held 146 tons of hay. Cowpuncher worked in partnership with Dr. Wayne Munn, President of the American Shetland Pony Club and Chairman of the Herd Registration Committee of the American Guernsey Association. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t21588 Pony Farm Rd.<br />Co. Rd. R58<br />Leon, IA 50144<br />Decatur County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Buddy Monument",
            "lat": "42.635811",
            "lon": "-95.197874",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buddy Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.635811,-95.197874\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">89.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Chautauqua Park boasts a World War I statue unique to the Midwest: a &quot;Buddy&quot; Monument sculpted by an Italian-born American sculptor named Joseph P. Pollia. In 1925, Pollia created a statue called &quot;My Buddy&quot; for the Richmond Hill World War Memorial at Forest Park in Queens, New York City. At least three replicas of the statue were made and installed: one in Storm Lake; another in Tarrytown, New York; and a third in Franklin, Massachusetts. The Buddy Monument at Storm Lake was dedicated on May 29, 1927, by the Storm Lake Service Star Legion. According to the Sioux City Journal, 500 to 600 people attended the dedication, in spite of inclement weather.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Lakeshore Dr.<br />Chautauqua Park<br />Storm Lake, IA 50588<br />Buena Vista County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Paul&#039;s Episcopal Church",
            "lat": "41.654288",
            "lon": "-95.319166",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-nhr-stpaulepiscopalchurch-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Paul&#039;s Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.654288,-95.319166\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Paul’s Episcopal Church is a parish church in the Diocese of Iowa founded in 1896. The Queen Anne Shingle, Gothic Revival, and Arts and Crafts style building was designed by the Des Moines architectural firm of Proudfoot and Bird. The St. Paul&#039;s Episcopal Church was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t712 Farnham St.<br />Harlan, IA 51537<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Dumont Museum",
            "lat": "41.287229",
            "lon": "-92.207397",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dumont Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.287229,-92.207397\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dumont Museum is a 24,000 sq. ft. building with a variety of historical artifacts. The museum holds over 100 beautifully restored tractors, horse drawn equipment, buggies and gas engines, toys, dolls, and dishes, and an extensive Roy Rogers memorabilia collection.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t20545 255th St.<br />Sigourney, IA 52591<br />Keokuk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.622.2592</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://dumontmuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Manly Junction Railroad Museum",
            "lat": "43.287004",
            "lon": "-93.202993",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Manly Junction Railroad Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.287004,-93.202993\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Manly Junction Railroad Museum brings to life the days when Manly (once called Manly Junction) was a hub for the Rock Island Railroad, with as many as 14 passenger trains stopping per day. The museum, located at the site of the Rock Island Terminal, displays railroad artifacts including an orange rail motorcar, weathered lanterns, signs, timetables and mural-size photographs.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t111 E Main St.<br />Manly, IA 50456<br />Worth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.454.8029</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Littleton &amp; Chatham Historical Society",
            "lat": "42.533605",
            "lon": "-92.022988",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buchanan-historicalsociety-littletonchatham.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Littleton &amp; Chatham Historical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.533605,-92.022988\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Littleton and Chatham Historical Society strives to accurately document, promote and preserve the history of the Littleton and Chatham area to cultivate interest and educational understanding for future generations. Open by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 State St.<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.415.1175</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://freepages.history.rootsweb.ancestry.com/~littletonia/LCHS.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "White Oak School (Van Buren Township No. 5)",
            "lat": "41.381168",
            "lon": "-92.122153",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">White Oak School (Van Buren Township No. 5)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.381168,-92.122153\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The White Oak School (also called Vernon Township No. 5) is an 1883 one-room school house that was originally located in Van Buren Township, Section 16, immediately south of the Johnson Cemetery. The one-acre property for the school was originally deeded to the school district on Nov. 12, 1867 by Oliver Johnson and wife, Phebey Johnson. The school served the 5th school district in the township and was later moved to Belva Deer County Park and is maintained by the Keokuk County Conservation Board.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t250th Ave.<br />Belva Deer County Park<br />Harper, IA 52231<br />Keokuk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Harker House",
            "lat": "42.640658",
            "lon": "-95.201284",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buenavista-nhr-harkerhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Harker House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.640658,-95.201284\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction on the Harker House began in 1874, and was finished in 1875. James Harker provided sketches of ideas he wanted for his home and it was built in 1875 by J.M. Russell and the result was one of the first stately homes in Storm Lake. Three generations of the Harker family lived in the home, which remains as it was when the Harker family left it to the Harker House Board of Preservation in 1981. The home was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t328 Lake Ave.<br />Storm Lake, IA 50588<br />Buena Vista County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://harkerhouse.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Buck Grove Bridge",
            "lat": "41.916401",
            "lon": "-95.392889",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buck Grove Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.916401,-95.392889\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bowstring pony truss bridge was built in 1945 over Buck Creek in Buck Grove, Iowa. During World War II, steel was placed on the “Priorities Critical List” of materials deemed essential to the war effort, so many of Iowa’s counties, including Crawford, reverted to timber construction for small scale bridges during the 1940s. After heavy flooding in May 1945, Crawford County had to rebuild many of these bridges. They chose to use new steel riveted trusses supported by timber substructures, creating hybrid construction types like the Beaver Creek Bridge. This is one of 6 bridges of this type that remain in Crawford County and serve as examples of wartime bridge construction in Iowa. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBuck Creek Ave.<br />Buck Grove, IA 51528<br />Crawford County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Living Heritage Tree Museum",
            "lat": "42.638119",
            "lon": "-95.206117",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buenavista-historymuseum-livingheritagemuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Living Heritage Tree Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.638119,-95.206117\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Living Heritage Tree Museum, founded in 1987, is an educational and recreational attraction. Located on the shores of Storm Lake, the museum is made up of trees that are descended from famous trees. Visitors will find the Moon Tree, an American Sycamore grown from a seed that was taken to the moon on Apollo 12, among many other notable trees. Plaques near each tree describe their significance.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 W Lakeshore Dr.<br />Sunset Park<br />Storm Lake, IA 50588<br />Buena Vista County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.stormlake.org/301/Heritage-Tree-Museum\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Illinois Central Railroad: Storm Lake Passenger Depot",
            "lat": "42.643121",
            "lon": "-95.201823",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Illinois Central Railroad: Storm Lake Passenger Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.643121,-95.201823\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The passenger depot in Storm Lake is an excellent example of the Illinois Central&#039;s &quot;corporate&quot; architecture. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Railroad St.<br />Storm Lake, IA 50588<br />Buena Vista County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Former Storm Lake Public Library",
            "lat": "42.644639",
            "lon": "-95.199655",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buenavista-nhr-formerstormlakepubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Former Storm Lake Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.644639,-95.199655\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The former Storm Lake Public Library is one of 22 libraries built in Iowa in 1903 with funds from the Carnegie Foundation. It is unique among Iowa libraries for its air of festive informality. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 E 5th St.<br />Storm Lake, IA 50588<br />Buena Vista County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Reverend George B. Hitchcock House",
            "lat": "41.303250",
            "lon": "-95.103472",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-nhr-revgeorgehitchcockhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Reverend George B. Hitchcock House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.303250,-95.103472\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The town of Lewis played an important part in the antislavery movement in Iowa. Rev. George B. Hitchcock was active in the antislavery efforts and his house was one of the best known stations on the Underground Railroad in Iowa. The house still stands today and is open for tours, where visitors can see in the secret room in the basement that was used to provide shelter for freedom seekers. It was added to the National Register of Historic Places in 1977. A sign at the Hitchcock house calls attention to another active abolitionist, Oliver Mills. He was a cousin of John Brown, and provided safe harbor for freedom seekers at his farm near Lewis. This is stop #4 on the Freedom Trail tour: On February 13, 1859, the group arrived at the farm of Brown’s cousin, Oliver Mills. Located half a mile north of Lewis. The Mills farm had become a frequent Underground Railroad stop for those escaping slavery in western Missouri via Kansas and Nebraska during the late 1850s. John Brown and his party rested here overnight before moving on to Grove City.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t63788 567th Ln.<br />Lewis, IA 51544<br />Cass County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://hitchcockhouse.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Nelson Kraschel Gravesite",
            "lat": "41.658826",
            "lon": "-95.328137",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-govgravesite-nelsonkraschell.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Nelson Kraschel Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.658826,-95.328137\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Nelson George Kraschel (October 27, 1889 - March 15, 1957) served as the 27th Governor of Iowa from 1937-1939. His gravesite is located at Harlan Cemetery in Harlan.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t911 12th St.<br />Harlan, IA 51537<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Vista 3 Theater",
            "lat": "42.645985",
            "lon": "-95.201151",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buenavista-theater-vista3theater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vista 3 Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.645985,-95.201151\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Vista 3 Theater was built in 1940, as a single screen theatre with approximately 650 seats. Fridley Theatres expanded the Vista to a three screen theatre later expanded to three screens in the late 1980s.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t712 Lake Ave.<br />Storm Lake, IA 50588<br />Buena Vista County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Buena Vista County Historical Society Museum",
            "lat": "42.644284",
            "lon": "-95.202792",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buenavista-historymuseum-buenavistacountyhistoricalsocietymuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buena Vista County Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.644284,-95.202792\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Buena Vista County Historical Society was founded in 1960. The society preserves the heritage of the Storm Lake area and Buena Vista County. Their museum holds exhibits on wildlife and ice harvesting, as well as a large mural and a model bank.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t214 W 5th St.<br />Storm Lake, IA 50588<br />Buena Vista County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.732.4955</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://stormlake-ia.com/bvchs\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Prairie Log House and Country School",
            "lat": "42.643895",
            "lon": "-95.203624",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buenavista-prairieloghouseandcountryschool.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prairie Log House and Country School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.643895,-95.203624\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Prairie Log House and Country School was constructed in 1871 by Scandinavian builders. The Log House was donated to the Buena Vista County Historical Society and now serves as part of their museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 Railroad St.<br />Storm Lake, IA 50588<br />Buena Vista County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.732.4955</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://stormlake-ia.com/bvchs\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Upper Stone School",
            "lat": "42.174454",
            "lon": "-91.891742",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-nhr-upperstoneschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Upper Stone School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.174454,-91.891742\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Upper Stone Schoolhouse is an early surviving example of a single room country school, unusual due to its stone construction. It was built in 1875 and is the older of two similar stone school buildings in the county, both of which were constructed in the same township using yellow limestone. The second stone school, known as the Lower Stone School was built in the 1880s and is located approximately two miles to the southeast. The school house and property were sold in 1905 to Elmer Scott and been a residence since that time.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t58th St. Dr. and 31st Ave.<br />Vinton, IA 52349<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Shelby County Historical Society and Museum",
            "lat": "41.650879",
            "lon": "-95.327371",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-historymueum-shelbycountyhistoricalsocietyandmuseum-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Shelby County Historical Society and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.650879,-95.327371\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Shelby County Historical Museum houses thousands of artifacts that relate to a broad spectrum of history, and whose earliest artifacts date all the way back to prehistoric times. They also possess Native American artifacts that educate visitors about the people who first settled this land before pioneers pushed the American frontier westward. The bulk of the collection, including two original log cabins dating to 1856 and 1857, detail Shelby County&#039;s history since the pioneers arrived and visitors can see how life in this part of the country changed over time and towns sprouted up ( and some disappearing) around Shelby County. The museum houses a two-headed, taxidermied calf named after the emeritus State Historian, Loren Horton. Dr. Horton spent his career assisting local history museums like the Shelby County Historical Museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1805 Morse Ave.<br />Harlan, IA 51537<br />Shelby County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.755.2437</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.shelbycoiamuseum.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Airpower Museum",
            "lat": "40.978518",
            "lon": "-92.586495",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-historymuseum-airpowermuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Airpower Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.978518,-92.586495\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Airpower Museum was founded in 1965 for the preservation of aviation history. About 25 complete aircraft, including planes from World War I and World War II, are on display, and historic aircraft parts are for sale. In addition, the Airpower Museum maintains a research library with countless books, periodicals and technical drawings. Also on site is the Antique Airfield, which boasts all-grass runways and is the site of an annual Antique Airplane Association Fly-In.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t22001 Bluegrass Rd.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.938.2773</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://antiqueairfield.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Johnny Carson Birthplace",
            "lat": "40.994729",
            "lon": "-94.734525",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adams-notableiowan-johnnycarsonbirthplace.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Johnny Carson Birthplace</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.994729,-94.734525\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Johnny Carson was born in this house on October 23, 1925. His family lived in several towns around Southwest Iowa, including Corning, Avoca, Clarinda and Red Oak before moving to Norfolk, Nebraska when he was eight years old. At age 12, Carson purchased a mail order magician&#039;s kit and fell in love with magic. In 1962, he replaced Jack Paar as host of &quot;The Tonight Show.&quot; He hosted &quot;The Tonight Show&quot; until Jay Leno took over in 1992.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t500 13th St.<br />Corning, IA 50841<br />Adams County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.322.3212</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://johnnycarsonbirthplace.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Grand River Bridge",
            "lat": "40.721749",
            "lon": "-93.876020",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand River Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.721749,-93.876020\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bridge over Grand River near Leon was built in 1882 by Phoenix Iron Co. Its design is a unique hybrid of the through truss and pony truss types and is the only known example of its kind in Iowa. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRiver Rd.<br />Leon, IA 50144<br />Decatur County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Communal Kitchen and Cooper Shop Museum",
            "lat": "41.796688",
            "lon": "-91.902702",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Communal Kitchen and Cooper Shop Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.796688,-91.902702\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The seven villages of the Amana Colonies were settled by a German religious group in the 1850s. They established a communal village-based agricultural system that is a marked contrast to the Midwest family farm tradition. The story of Amana&#039;s past and present is told by its landscape and historic buildings that include barns, stores, churches and communal kitchen houses.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1003 26th Ave.<br />Middle Amana, IA 52307<br />Iowa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.622.3567</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://amanaheritage.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Daniel Turner Gravesite",
            "lat": "40.997499",
            "lon": "-94.742797",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adams-govgravesite-danielwturner.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Daniel Turner Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.997499,-94.742797\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91mi.</span></div>\n\t\t</div>\n\n\t\t<p>Daniel Webster Turner (March 17, 1877 - April 15, 1969) served as the 25th Governor of Iowa from 1931-1933. Turner served during the Great Depression which gravely impacted the way he ran the state. He dealt with a multitude of crisises during his time as Governor, including a tuberculosis outbreak in the cattle industry. Turner unsuccessfully ran for reelection in 1932. After leaving the Office of the Governor, Turner served on War Production Board in Washington D.C. His gravesite is located in his hometown of Corning at Walnut Grove Cemetery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tGrove Ave.<br />Walnut Grove Cemetery<br />Corning, IA 50841<br />Adams County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Shellsburg Bridge",
            "lat": "42.093439",
            "lon": "-91.869473",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-nhr-shellsburgbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Shellsburg Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.093439,-91.869473\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Shellsburg Bridge was built in 1915, and carries Pearl Street across Bear Creek. It is a concrete filled spandrel arch bridge designed by the Iowa State Highway Commission. Most rural bridges designed by the highway commission were very plain, but the Shellsburg Bridge was designed with more architectural details, including molded concrete balustrades, because it was in town. It was constructed by Alfred Vinall at a total cost of $6,081.06. The bridge has functioned in place with no major alterations. It was added to the National Register of Historic Places in 1998.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tPearl St.<br />Over Bear Creek<br />Shellsburg, IA 52332<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Adams County House of History",
            "lat": "40.992029",
            "lon": "-94.734933",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adams-historymuseum-houseofhistory.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Adams County House of History</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.992029,-94.734933\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Adams County House of History, located in the former Adams County Jail, showcases the life and time of Adams County residents. At the House of History, visitors will see a trunk that was on the Mayflower, a large collection of military uniforms, and a jail cell. The building was used as the Adams County Jail and Sheriff&#039;s Office from 1877 through 1955. The building is an example of Greek Revival architecture and is the oldest public building in the county. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 Benton Ave.<br />Corning, IA 50841<br />Adams County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.322.3241</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "American Theater",
            "lat": "40.989258",
            "lon": "-94.734273",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adams-theater-americantheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">American Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.989258,-94.734273\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The American Building was built as the Jacob F. Lutz Building in 1897. It was built in the Late Victorian Queen Anne style and has been known as the American Theater and the Lyric Theater. The theater was closed in 2009 but renovated and reopened in 2012. It houses 100 seats and one theater.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t704 Davis Ave.<br />Corning, IA 50841<br />Adams County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Adams County",
            "lat": "40.988208",
            "lon": "-94.733617",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adams-artpublic-corningfreedomrock-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Adams County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.988208,-94.733617\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Adams County Freedom Rock® in Corning honors all veterans with a 34th Infantry &quot;Red Bull&quot; Soldier, important to the history of the county and state. An aircraft carrier and AC 130 Gunship are also depicted. The east side of the rock honors those Killed in Action, from Adams County, in Vietnam, Korea, and World War II, including Ron Bunting who was killed in Vietnam in 1968 and was the only child of Kenneth and Wilma Bunting. The north side features an eagle with a ribbon in his beak speaking to this county&#039;s patriotic spirit. The American Flag is draped over the top of the rock leading down to the artist&#039;s signature. The Adams County (Corning) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6th St.<br />Corning, IA 50841<br />Adams County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Corning Opera House Cultural Center",
            "lat": "40.990066",
            "lon": "-94.734225",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adams-nhr-corningoperahouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Corning Opera House Cultural Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.990066,-94.734225\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1902, the Corning Opera House was established as the primary venue for performing arts in Corning. The Corning Opera House offered a variety of theatrical productions to residents of Corning and the surrounding area for over thirty years, serving as a community gathering place and the center of the town&#039;s cultural life. Its construction was noted as a culminating achievement in Corning&#039;s social history. It has been called &quot;an ornament to the city&quot; which shows its importance as a source of civic pride. The Corning Opera House was fully restored in 2012 and now functions as a Cultural Center for the community and features performances and events year round.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t800 Davis Ave.<br />Corning, IA 50841<br />Adams County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.418.8037</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://corningoperahouse.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Dreyer Barn",
            "lat": "43.210955",
            "lon": "-94.438674",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/kossuth-barn-dreyerbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dreyer Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.210955,-94.438674\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dreyer Barn was built in 1903 and was used as a dairy barn through 1944. The 1,000 gallon wooden water storage tank and manure loading system are both intact. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 310th St.<br />Co. Rd. B19<br />Fenton, IA 50539<br />Kossuth County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Corning Commercial Historic District",
            "lat": "40.988543",
            "lon": "-94.734494",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adams-nhr-corningcommercialhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Corning Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.988543,-94.734494\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Corning is the county seat of Adams County. Designation as the county seat nearly always ensured a community economic prosperity. Construction of this district began around 1873. The district buildings are almost all commercial ones, except four-two residences, a church and a parsonage.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t513-824 Davis Ave. and 701-829 Benton Ave.<br />Corning, IA 50841<br />Adams County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-ballrooms.png",
            "title": "Memorial Union",
            "lat": "41.996522",
            "lon": "-91.862172",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-nhr-atkinsmemorialbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-ballrooms.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Memorial Union</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.996522,-91.862172\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Memorial Union is a multi-function dance hall, hosting everything from dances to wedding receptions, fish frys, auctions, and other community activities. It was built in 1949-50 by the local American Legion Post and has an oak dance floor.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t89 Main Ave.<br />Atkins, IA 52206<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Walnut Grove School (Cedar No. 7)",
            "lat": "43.237936",
            "lon": "-92.919648",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Walnut Grove School (Cedar No. 7)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.237936,-92.919648\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Walnut Grove School (also known as Cedar No. 7) was built in 1873 and is significant as the only remaining structurally sound, unaltered, one-room rural school on its original site, in Mitchell County. It was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3272 Foothill Ave.<br />Osage, IA 50461<br />Mitchell County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Victorian Museum on Main",
            "lat": "43.112346",
            "lon": "-94.673137",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/paloalto-historymuseum-victorianmuseumonmain.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Victorian Museum on Main</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.112346,-94.673137\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Victorian Museum on Main was built in 1883. A prominent member of the community built the home as a wedding gift to his daughter. It was restored to it&#039;s former glory by volunteers in 1992, including being furnished as it would have been when it was built. The home is the crown jewel of Emmetsburg&#039;s many Victorian homes. The home is part of a four-building museum complex.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1703 E Main St.<br />Emmetsburg, IA 50536<br />Palo Alto County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.852.3871</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Ringgold County",
            "lat": "40.808495",
            "lon": "-94.339751",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Ringgold County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.808495,-94.339751\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ringgold County Freedom Rock® in Diagonal portrays a train stopping in Diagonal to bring home a fallen veteran (as remembered by one of the residents). The back side features a cross-section of the Vietnam Memorial Wall with a little girl pointing to a name. The name she is pointing at is Ronald Yashack who was the only Diagonal citizen killed in Vietnam. As she is pointing to the name Ronnie&#039;s reflection reaches back as if to hold her hand. The rest of the names on the wall are all Iowans who were killed in action in Vietnam and randomly selected by the artist but is not inclusive of all of Ringgold County&#039;s soldiers killed in action in Vietnam. The Ringgold County (Diagonal) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW 3rd St.<br />Diagonal, IA 50845<br />Ringgold County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Palo Alto County Historical Museum",
            "lat": "43.112639",
            "lon": "-94.673577",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Palo Alto County Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.112639,-94.673577\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Palo Alto County Historical Museum was established in 1969 to house the many treasures of the past, reflecting life in Palo Alto County.  The Free Methodist Church was purchased for the museum and later an annex was added in memory of the first president of the Historical Society, John Kelly. The Palo Alto County Historical Society maintains the museum.  It is open for tours by appointment only.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t804 Monroe St.<br />Emmetsburg, IA 50536<br />Palo Alto County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712-852-3781</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Carnegie Library Building",
            "lat": "43.110681",
            "lon": "-94.677111",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carnegie Library Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.110681,-94.677111\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Emmetsburg was the recipient of a Carnegie Library Building in 1912. In 2002, the public library moved to the Smith Wellness Center and the Carnegie building was renovated to office space. The building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2008 10th St.<br />Emmetsburg, IA 50536<br />Palo Alto County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "McGregor Barn",
            "lat": "41.964935",
            "lon": "-91.861053",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-barn-mcgregorbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McGregor Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.964935,-91.861053\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The McGregor Barn is one of the remaining original barns in the area. It was built in 1883 with a limestone first story and retains original hand hewn pegged mortise and tenon construction.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3271 73rd St.<br />US Hwy. 30<br />Atkins, IA 52206<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Diagonal Printing Museum",
            "lat": "40.807283",
            "lon": "-94.339769",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Diagonal Printing Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.807283,-94.339769\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Diagonal Printing Museum is dedicated to the history of printing in Iowa. The museum has multiple exhibits including an actual working press and a Linotype machine. The museum also houses a genealogical center and displays local historical artifacts.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBroadway St.<br />Diagonal, IA 50845<br />Ringgold County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.734.5540</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Riviera Theater",
            "lat": "43.112159",
            "lon": "-94.679431",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/paloalto-theater-rivieratheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Riviera Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.112159,-94.679431\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Opera House opened in 1905. The opera house portion of the building was destroyed by fire in 1936 and the Iowa Theater was built on that same site shortly after the fire. The Iowa Theater opened in 1937, and was operated by Iowa Unity Theaters until the 1960s. In the 1980s, Fridley Theaters took ownership and renamed the theater the Riviera Theater.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2209 Main St.<br />Emmetsburg, IA 50536<br />Palo Alto County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Ross Farm Barn",
            "lat": "40.700426",
            "lon": "-93.584127",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ross Farm Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.700426,-93.584127\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This farm is referred to as on &quot;the old Bedford Ross place.&quot; Bedford Ross bred, raised and exhibited American Saddlebreds, Percherons, and Belgian, all of which he had stallions he stood at stud. He also had a Hackney-Shetland pony stud. He kept horses and worked them on the farm until seven or eight years before he died in 1998. The barn was built in the 1930s.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t24977 327th Ave.<br />Lineville, IA 50147<br />Decatur County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ormsby-Kelly House",
            "lat": "43.114102",
            "lon": "-94.682010",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/paloalto-nhr-ormsbykellyhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ormsby-Kelly House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.114102,-94.682010\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">91.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ormsby-Kelly house is a two-story private residence in a vernacular Italianate style. In 1890 two additions were made by Ormsby, the original owner. A two-story wing for a library and extra bedroom was added at the right angles to the rear of the house. This house was commissioned by A. L. Ormsby, and early Emmetsburg Banker, Civil War veteran, and landowner both in Iowa and Canada. The Ormsby-Kelly House was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2403 W 7th St.<br />Emmetsburg, IA 50536<br />Palo Alto County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Lower Stone School",
            "lat": "42.167429",
            "lon": "-91.855046",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-countryschool-lowerstoneschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lower Stone School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.167429,-91.855046\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lower Stone School is an early surviving example of a single room country school, unusual due to its stone construction. It was built in the 1880s and is one of two similar stone school buildings in the county, both of which were constructed in the same township using yellow limestone. The roof of the Lower Stone School was destroyed by fire in the 1940s and replaced and the school house still stands in its original location.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3298 59th St.<br />Vinton, IA 52349<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Lancaster School",
            "lat": "41.275178",
            "lon": "-92.167274",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lancaster School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.275178,-92.167274\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lancaster was a pioneer town situated on a major wagon route and the county seat for Keokuk County from 1846 through 1856. The Lancaster School was built in 1881. It is believed to be the only remaining two-story wood frame school in Iowa. The school is used today as a meeting and polling place. The Lancaster School House was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. V5G<br />Sigourney, IA 52591<br />Keokuk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Amana Heritage Museum",
            "lat": "41.800167",
            "lon": "-91.873183",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Amana Heritage Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.800167,-91.873183\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The seven villages of the Amana Colonies were settled by a German religious group in the 1850s. They established a communal village-based agricultural system that is a marked contrast to the Midwest family farm tradition. The story of Amana&#039;s past and present is told by its landscape and historic buildings that include barns, stores, churches and communal kitchen houses.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t705 44th Ave.<br />Amana, IA 52203<br />Iowa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.622.3567</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Dragoon Monument",
            "lat": "43.121587",
            "lon": "-94.679849",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/paloalto-historicmarker-dragoonmonument.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dragoon Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.121587,-94.679849\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dragoons were the first mounted infantry unit in the United States. In the summer of 1835, they scouted the area that would become Iowa. The property had been purchased by the US Government in the Black Hawk Purchase of 1832. There is a Dragoon Monument at Kearny State Park, next to the golf course.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. N40<br />Kearny State Park<br />Emmetsburg, IA 50536<br />O&#039;Brien County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lenox Hotel",
            "lat": "40.880913",
            "lon": "-94.559264",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/taylor-nhr-lenoxhotel.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lenox Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.880913,-94.559264\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lenox Hotel was built in 1915, replacing the original local hotel which was lost in a fire. The hotel was built of brick and concrete and featured a grand double stair porch and second floor balcony.  Allegedly, the Harlem Globetrotters stayed at the Lenox Hotel after playing in town in 1934, 1940 and 1949. The well-known White Way Café operated at the hotel from 1942 through 1979. The hotel ceased operation, but was used as a residence through 1992. Two owners have attempted to restore the Lenox Hotel, but as of 2014 it remained dilapidated. The Lenox Hotel was added to the National Register of Historic Places in 2002, which means it’s worthy of preservation.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 S Main St.<br />Lenox, IA 50833<br />Taylor County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Grant Commercial Historic District",
            "lat": "41.142032",
            "lon": "-94.984402",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grant Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.142032,-94.984402\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grant Commercial Historic District is representative of a small town business district from the 1870s - 1950s. Although the name of the town&#039;s post office was Grant, the town itself went by the name of Milford until the early 1900s. The district is comprised of the historic Main Street (now 2nd Street), Vetter&#039;s Store (northeast corner of 2nd and U Ave.), Bryant-Ashbaugh Building (2nd St.), Masonic Lodge Building (2nd St.), Samuel Smith House (511 2nd St.),   Grant Auto Company (southeast corner of 2nd and Adams Ave.), Red Oak Auto Company (506 2nd St.), Kenworthy Building (504 2nd St.), Dr. D.J. Chalmers Veterinarian (502 2nd St.), Milford Methodist Episcopal Church and Parsonage (207 U Ave.) Grant Fire Department (500 2nd St.), Wahlund Building (102 U Ave.), Shell Oil (northwest corner of 2nd and U Ave.), J.F. Mueller Hardware (U Ave.), and the Baptist Parsonage (U Ave.) The district was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t455 2nd St.<br />Grant, IA 50847<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Amana Colonies",
            "lat": "41.800198",
            "lon": "-91.872361",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/iowa-nhr-amanacolonies-highamanastore.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Amana Colonies</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.800198,-91.872361\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Amana Society was a religious and benevolent community that came to America from Germany in 1843 seeking religious freedom. They first settled near Buffalo, New York, but moved west to Iowa when they needed more farmland for the growing community. They arrived in Iowa in 1855 and established six villages: Amana, East Amana, West Amana, South Amana, High Amana, and Middle Amana. Another village, Homestead, was added in 1861. In the villages, the residents created a self-sufficient, communal way of life. Men and women were assigned jobs by the village council, but no one received a wage because all property and resources were shared. Everyone received a home, medical care, meals, schooling for children, and other basic necessities. By 1932, changes in the rural economy led to a shift from the communal way of life. They established the Amana Society, Inc., a profit-sharing corporation to manage the farmland and mills, and residents were also free to pursue private enterprise. The colonies were listed on the National Register of Historic Places in 1966, and now feature a number of Heritage Sites that allow visitors to learn about their unique history and culture.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t220th Trail<br />Amana, IA 52203<br />Iowa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "International Center for Rural Culture and Art",
            "lat": "40.706295",
            "lon": "-93.345648",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">International Center for Rural Culture and Art</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.706295,-93.345648\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The International Center For Rural Culture And Art is a 93 acre site just outside of Allerton, Iowa, and is home to the fully restored 1912 Nelson Round Barn, New York Christian Church, which dates from 1887, a country school from 1868 and the Wilson House. The fully restored Nelson Round Barn is a 50-foot diameter barn and features a spectacular loft, free of any support columns due to its web-like construction.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t120th and Maple St.<br />Allerton, IA 50008<br />Wayne County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.872.1536</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Mickelson Barn",
            "lat": "42.773746",
            "lon": "-95.146364",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mickelson Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.773746,-95.146364\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This huge 100x70 feet is 45 feet tall! It was built in 1901 to house 22 work horses.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5126 Hwy. 71<br />Storm Lake, IA 50588<br />Buena Vista County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Nelson Round Barn",
            "lat": "40.706071",
            "lon": "-93.345410",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nelson Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.706071,-93.345410\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Nelson Barn was built in 1912 and is characterized as a dairy barn by the existence of original cow stanchions built at the perimeter of the barn. The construction, in the early 20th century, of special function barns represented an important experimental shift in the traditional use of the barn. The Nelson Round Barn is a 50-foot diameter barn and features a spectacular loft, free of any support columns due to its web-like construction. It was added to the National Register of Historic Places on Nov. 19, 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t120th and Maple St.<br />International Center for Rural Culture and Art<br />Allerton, IA 50008<br />Wayne County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Blacksmith Shop",
            "lat": "41.761606",
            "lon": "-91.877803",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Blacksmith Shop</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.761606,-91.877803\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The seven villages of the Amana Colonies were settled by a German religious group in the 1850s. They established a communal village-based agricultural system that is a marked contrast to the Midwest family farm tradition. The story of Amana&#039;s past and present is told by its landscape and historic buildings that include barns, stores, churches and communal kitchen houses.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4119 V St.<br />Homestead, IA 52235<br />Iowa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.622.3567</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-historic-landmarks.png",
            "title": "Amana Colonies Visitors Center",
            "lat": "41.800892",
            "lon": "-91.867995",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-historic-landmarks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Amana Colonies Visitors Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.800892,-91.867995\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Amana Colonies Visitors Center is located in the village of Amana, in a restored corn crib. The Visitors Center is your first stop for information about the Amana Colonies; providing visitors guides, maps and brochures for area businesses.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t622 46th Ave.<br />Amana, IA 52203<br />Iowa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.622.7622</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://amanacolonies.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "St. Boniface Catholic Church District",
            "lat": "41.720664",
            "lon": "-95.395139",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-nhr-stbonafacecatholicchurchdistrict-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Boniface Catholic Church District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.720664,-95.395139\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Saint Boniface Catholic Church is a parish of the Diocese of Des Moines and is also known as the Saint Boniface Catholic Church District. The historical district includes the church, rectory, cemetery, school, Our Lady of Grace Shrine, St. Isadore Shrine, baseball diamond, clubhouse, and First Fruits (corn crib). The area that is now Westphalia was settled by German Catholics in the 1870s. The St. Boniface Catholic Church District was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 Duran St.<br />Westphalia, IA 51578<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Amana Community Church",
            "lat": "41.760576",
            "lon": "-91.875788",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Amana Community Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.760576,-91.875788\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The seven villages of the Amana Colonies were settled by a German religious group in the 1850s. They established a communal village-based agricultural system that is a marked contrast to the Midwest family farm tradition. The story of Amana&#039;s past and present is told by its landscape and historic buildings that include barns, stores, churches and communal kitchen houses.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4210 V St.<br />Homestead, IA 52203<br />Iowa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.622.3567</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://amanaheritage.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Heartland Acres Agribition Center",
            "lat": "42.448598",
            "lon": "-91.923807",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buchanan-historymuseum-heartlandmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Heartland Acres Agribition Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.448598,-91.923807\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Heartland Acres Agribition Center is located off US Hwy. 20 - Exit 252. Dedicated to exhibiting the past, present and future of agriculture in the National Heritage Area, Heartland Acres has something fun and educational for people of all ages. Heartland Acres has livestock, new and antique farm equipment, a classic car museum, events center and a one-room schoolhouse, the Summit School. The School was built in the late 1860s near Rowley and was moved to Heartland Acres Agribition Center in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2600 Swan Lake Blvd.<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.332.0123</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.heartlandacresusa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Emmetsburg Public and College Libraries",
            "lat": "43.126486",
            "lon": "-94.688874",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/paloalto-historymuseum-vanderveldecollection.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Emmetsburg Public and College Libraries</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.126486,-94.688874\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Emmetsburg Public and College Libraries have a genealogy room and numerous historical displays, including the Hobson Stone Collection and the VanderVelde Primitive Cultures Collection. Visitors will enjoy Dr. A.H. Hobson&#039;s (1912-1990) vast collection of rocks, Native American artifacts, antique eyeglasses, walking canes and scale models as well as the personal collection of Marjorie Mills Vandervelde, a photojournalist who lived and worked with different cultures in order to learn about them. This collection is a permanent exhibit of Vandervelde&#039;s writings, photographs, primitive artifacts, correspondence and precious letters from famous people. The collection has over 250 artifacts and 30 letters.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3200 College Dr.<br />Smith Wellness Center<br />Emmetsburg, IA 50536<br />Palo Alto County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.852.3287</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Amana Woolen Mill and Salesroom",
            "lat": "41.796714",
            "lon": "-91.864672",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Amana Woolen Mill and Salesroom</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.796714,-91.864672\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction of the Woolen Mill in Amana began in 1859, and the mill complex was continually added to until 1943. A salesroom was later added in the 1960s. The production and sale of wool items has a long history in the Amana Colonies, and Amana&#039;s first settlers brought their looms in crates from Germany. The practice of selling woolen blankets, suiting and fabric began in 1838, when the Inspirationists lived at the Arnsburg Estate in Germany. Producing the wool for the Amana Colonies required more than just the looms and dyeing vats. The millwrights and metalworkers played an integral role in woolen production, repairing and servicing the machinery and mills. The wool itself, when possible, came from sheep raised near East Amana. The Amana Woolen Mill was originally water-powered generated from the seven-mile millrace, but this source was replaced by steam and finally electricity, including water powered generators. The impact of the sprawling complex of buildings that makes up the Woolen Mill reached far beyond its walls. The sound of the machines could be heard throughout the village of Amana and is remembered fondly by the local residents. Profits from the mill have supported the community throughout its history.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t800 48th Ave.<br />Amana, IA 52203<br />Iowa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.222.6430</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://amanawoolenmill.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Scheer Barn",
            "lat": "41.961841",
            "lon": "-91.835798",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Scheer Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.961841,-91.835798\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Scheer barn was built by Mrs. Scheer&#039;s family in 1881 and was recently meticulously restored. The interior has a wooden silo.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3386 73rd St.<br />Fairfax, IA 52228<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Shelby County",
            "lat": "41.773892",
            "lon": "-95.418386",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Shelby County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.773892,-95.418386\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Shelby County Freedom Rock® in Earling features one of Earling&#039;s natives, Lt. Col. Paul Finken who was killed in action in Iraq in November 2006. It also honors a Shelby County fireman along with policeman and emergency officers. The church is a prominent landmark in Earling and it, like the rest of Iowa, is a large farming community and is symbolized by a combine. The Shelby County (Earling) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t257 Railway St.<br />Earling, IA 51530<br />Shelby County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Linden No. 5 Country School",
            "lat": "43.367089",
            "lon": "-93.767977",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Linden No. 5 Country School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.367089,-93.767977\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">92.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Linden No. 5 country school was originally located in Section 29, Linden Township at the northeast corner of 350th St. and 70th Ave. west of Forest City. The school house was moved to the Winnebago County Fairgrounds and is maintained as a museum. Open during the fair and by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tFairgrounds Dr.<br />Winnebago County Fairgrounds<br />Thompson, IA 50478<br />Winnebago County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.584.2011</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Haugen Barn",
            "lat": "43.372566",
            "lon": "-93.628362",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winnebago-barn-haugenbarn-2.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Haugen Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.372566,-93.628362\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">93mi.</span></div>\n\t\t</div>\n\n\t\t<p>This farm was purchased by Peter Haugen in 1912. At that time, the farm already had a barn, built in the late 1800s. In 1924, he enlarged the barn by cutting it in half.  According to the Mason City Globe Gazette, family lore says that Haugen didn’t tell anyone what he was doing. He used poles and horses to pull the barn apart and then added a center section.  The barn, originally built as a 54’ x 26’ x 27’ barn, was enlarged to 54’ x 46’ x 38’. The barn was restored in 2004 by Peter Haugen’s grandson, Kim Haugen, and his family. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t18446 420th St.<br />Leland, IA 50453<br />Winnebago County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Amish Community",
            "lat": "42.583875",
            "lon": "-91.983746",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Amish Community</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.583875,-91.983746\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">93.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Amish Community in Hazleton was founded in 1914. This community, The Buchanan County community, abides by some of the most strict rules in the Amish diaspora - including not having their photographs taken.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. W13<br />West of Hazleton and South of IA Hwy. 281<br />Hazleton, IA 50641<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Homestead Store Museum",
            "lat": "41.759345",
            "lon": "-91.867842",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Homestead Store Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.759345,-91.867842\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">93.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The seven villages of the Amana Colonies were settled by a German religious group in the 1850s. They established a communal village-based agricultural system that is a marked contrast to the Midwest family farm tradition. The story of Amana&#039;s past and present is told by its landscape and historic buildings that include barns, stores, churches and communal kitchen houses.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4430 V St.<br />Homestead, IA 52235<br />Iowa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.622.3567</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://amanaheritage.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Fairview School",
            "lat": "40.885496",
            "lon": "-92.682291",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fairview School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.885496,-92.682291\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">93.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in the southeast quarter of Section 3 in Union Township, the Fairview School (also known as Union Township No. 2) was in operation from 1873 to 1957.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t313th Ave.<br />Union Township<br />Unionville, IA 52544<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Dennis Zuber Barn (Moerschel Buggy Barn)",
            "lat": "41.758636",
            "lon": "-91.865671",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dennis Zuber Barn (Moerschel Buggy Barn)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.758636,-91.865671\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">93.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Zuber Barn is a two-bay barn with a local stone foundation. In 1890, it was constructed as Dr. Moerschel’s buggy barn. Moerschel was a member of the Amana Society. Members lived communally in the seven Amana villages. Moerschel was chosen by other society members to be trained as a doctor. The house in front of the barn was built in 1865 and was the Moerschel family residence. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4460 V St.<br />Homestead, IA 52236<br />Iowa County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Partridge Barn",
            "lat": "40.675450",
            "lon": "-93.592590",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/decatur-barn-partridgebarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Partridge Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.675450,-93.592590\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">93.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Partridge Barn was built in 1930 by William Massey who wanted the largest and fanciest barn in the area. The blocks used to build the barn were delivered by train from Lineville and then carried by horse and wagon 10 miles to the Massey Farm. Mr. Massey lost his property and barn during the Great Depression. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t28381 Lineville Rd.<br />Co. Rd. R52<br />Lineville, IA 50147<br />Decatur County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Grand Valley Museum (Foland School)",
            "lat": "40.709217",
            "lon": "-94.047174",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand Valley Museum (Foland School)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.709217,-94.047174\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">93.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Foland School was built by Michael Foland in the 1880s, approximately 5.5 miles northeast of Grand River, Iowa. The Foland School served rural residents in an area known as “Little Tennessee” because so many of the families living in the area came from the State of Tennessee. Country schools closed in the 1950s and the Foland School was moved to Kellerton and used as the music room for the Grand Valley Community School District. The Grand Valley Community School District closed in 1992 and the school board gave the building to the community for use as a school museum. The Foland School was moved to uptown Kellerton and in July 2011, it was moved again, this time back to the former Grand Valley School grounds in Kellerton. The Foland School, now known as the Grand Valley Museum, contains all kinds of memorabilia related to Grand Valley Community Schools, including yearbooks, trophies and photographs.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Appanoose St.<br />Kellerton, IA 50133<br />Ringgold County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "television-and-movie-sites.png",
            "title": "&quot;The Crazies&quot; Movie Site",
            "lat": "40.851216",
            "lon": "-94.548340",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/television-and-movie-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">&quot;The Crazies&quot; Movie Site</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.851216,-94.548340\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">93.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;The Crazies&quot; is a 2010 science fiction horror film about a fictional Iowa town. In the film, town residents are turned into violent killers by a biological agent. \r\n\r\nThe film was primarily shot in Central Georgia and near Lenox, Iowa.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUtah Ave.<br />Lenox, IA 50851<br />Taylor County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ottumwa Cemetery Historic District",
            "lat": "41.033290",
            "lon": "-92.408585",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-ottumwacemeteryhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ottumwa Cemetery Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.033290,-92.408585\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">93.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ottumwa Cemetery Historic District is locally significant because it illustrates the evolution in cemetery design that took place during the late 19th and very early 20th centuries (1887-1906) leading to the influence of the “City Beautiful” movement. It is also significant because it contains distinctive examples of public building design. The Ottumwa Cemetery Historic District was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1302 N Court St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Vogel Place Historic District",
            "lat": "41.037395",
            "lon": "-92.402826",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-vogelplacehistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vogel Place Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.037395,-92.402826\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">93.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Vogel Place Historic District is locally significant as a very good example of an early 20th century residential neighborhood containing architectural designs and pattern book examples of the most popular architectural styles of the period. The period of significance begins in 1908 with the platting of the addition and ends 1940 with the last major construction prior to WWII. Vogel Place was the first neighborhood to really have “streetcar suburbs” be developed. The Vogel Place Historic District was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCourt St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-ballrooms.png",
            "title": "Ponderosa Ballroom",
            "lat": "41.874079",
            "lon": "-91.831915",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/benton-historicballroom-ponderosaballroom.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-ballrooms.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ponderosa Ballroom</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.874079,-91.831915\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">93.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The former Walford School has become the Ponderosa Ballroom. It has a 4,000 square foot wood floor and can seat up to 550 people.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t195 1st St. S<br />Walford, IA 52228<br />Benton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Dahlonega School No. 1",
            "lat": "41.058293",
            "lon": "-92.370643",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-historicschool-dahlonega.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dahlonega School No. 1</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.058293,-92.370643\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">93.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dahlonega School was built in 1921, and is locally significant as an important unaltered example of rural schools in Iowa from the first quarter of the 20th century, and is also important as an example of the popular Craftsman style used for institutional purposes, designed by Ottumwa architect George M. Kerns. The Dahlonega School was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDahlonega Rd.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Herschel Loveless Gravesite",
            "lat": "41.034165",
            "lon": "-92.404836",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-govgravesite-loveless.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Herschel Loveless Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.034165,-92.404836\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">93.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Herschel Cellel Loveless (May 5, 1911 – May 4, 1989) served as the 34th Governor of Iowa from 1957 to 1961. His gravesite is located at the Ottumwa Cemetery in Ottumwa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1302 N Court St<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Michael&#039;s Church, Cemetery, Rectory and Ancient Order of Hiberians Hall",
            "lat": "41.589913",
            "lon": "-91.913826",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Michael&#039;s Church, Cemetery, Rectory and Ancient Order of Hiberians Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589913,-91.913826\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Catholic buildings in the village of Holbrook provide a visual reminder of an early rural Irish settlement in Iowa and were added to the National Register of Historic Places in 1983. Most Irish immigrants remained in urban centers, but in 1850, 13 of the 32 families in Greene township had originated in Ireland. Despite the absence of any large city, Iowa County ranked 18th of those counties with a significant Irish-born population.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2960 Co. Rd. F52<br />Parnell, IA 52325<br />Iowa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mathias C. and Eva B. Crowell Fuhrman Farm",
            "lat": "42.518733",
            "lon": "-91.928358",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mathias C. and Eva B. Crowell Fuhrman Farm</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.518733,-91.928358\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction on the Fuhrman Farm began in 1901. Individually, the buildings on the farm are similar to many others across the state, but it is unusual for all of them to be on one site. The Fuhrmans owned the farm for three generations, and their farm offers a good representation of how farming developed in Buchanan County. The current owners have restored the exterior of the house to original condition and are maintaining the buildings. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1780 185th St.<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Snider Bridge",
            "lat": "40.986555",
            "lon": "-94.817597",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/adams-nhr-bridge-sniderbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Snider Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.986555,-94.817597\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Snider Bridge, named for George Snider who requested the bridge be built, is a medium-span pony truss bridge. It was constructed in 1885 using Pratt through-truss design, patented in 1844 by Caleb and Thomas Pratt. The bridge was built to carry a gravel-surfaced country road over a small stream and was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t220th St.<br />Corning, IA 50841<br />Adams County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Court Hill Historic District",
            "lat": "41.023889",
            "lon": "-92.408870",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-courthillhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Court Hill Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.023889,-92.408870\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Court Hill Historic District contains significant examples of the Italianate, Queen Anne and Late 19th and 20th Century Revival architectural styles from 1865-1915. It also illustrates the important role played by the Des Moines River in the physical development of the City of Ottumwa. The bluffs along the north side of the river in Ottumwa are a major landscape feature, and have played a role in community development since the town was established in 1843. The earliest settlement occurred on the flat along the riverbank, a marshy area prone to flooding. As the small town prospered, local business owners could afford more comfortable housing, and many began building higher and higher on the hills. The District was home to many of Ottumwa’s early industrial and commercial leaders who established this as a prestigious neighborhood. The Court Hill Historic District was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCourt St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "First Methodist Episcopal Church Museum",
            "lat": "43.351428",
            "lon": "-93.210754",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Methodist Episcopal Church Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.351428,-93.210754\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First Methodist Episcopal Church, also known as the Kensett United Methodist Church, was built in 1899 and served as a church until 1997. The church is now the Kensett Methodist Church Museum and has photos and other items on display. It was added to the National Register of Historic Places on Aug. 16, 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 2nd St.<br />Kensett, IA 50448<br />Worth County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.worthhistory.org/index.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Wapello County Historical Museum",
            "lat": "41.018671",
            "lon": "-92.414961",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-historymuseum-wapellocountyhistorymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wapello County Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.018671,-92.414961\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wapello County Historical Museum offers interactive displays that illustrate life in Wapello County during the 19th and 20th centuries. There is a scale replica of the 1890 Ottumwa Coal Palace, and an early fire station featuring a completely restored 1925 America LaFrance fire truck. The museum is housed in the Burlington Depot, dedicated in 1951. The Burlington Depot is a fine example of the Modern Movement by the noted architectural firm of Holabird, Root and Burgee. It displays a simplicity of design, form and materials that is consistent with this period and style. The Burlington Depot is a symbol of the important role the Chicago, Burlington and Quincy Railroad played in Ottumwa’s development from 1859-1958. In addition, it has significance as a major new building constructed during the period of Post-World War II development in Ottumwa, 1944-1959. The Railroad Historic District where the museum is located was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210 W Main St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.682.8676</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://wapellocountymuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Loberg Pioneer Log Cabin",
            "lat": "43.353275",
            "lon": "-93.210415",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Loberg Pioneer Log Cabin</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.353275,-93.210415\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The restored Loberg Pioneer Cabin, built in the late 1850s in Silver Lake Township, now rests in Roadside Park, just off Highway 65 in Kensett.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHwy. 65<br />Kensett, IA 50448<br />Worth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ottumwa Public Library",
            "lat": "41.019785",
            "lon": "-92.411445",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-ottumwapubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ottumwa Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.019785,-92.411445\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ottumwa Public Library is a fine example of the Classical Revival style. One of 101 Carnegie libraries constructed in Iowa, the relatively unaltered condition of the building speaks to its place of importance within the community and the support it has received over the years. The frescoes (watercolor ceiling paintings) of Johannes Scheiwe represent the same classical taste in art that the building displays architecturally. The Ottumwa Public Library was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 W 4th St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ottumwa Young Women&#039;s Christian Association",
            "lat": "41.019542",
            "lon": "-92.412690",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-ottumwaywca.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ottumwa Young Women&#039;s Christian Association</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.019542,-92.412690\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ottumwa Young Women&#039;s Christian Association was built in 1925 and is locally significant because it represents the social movement to encourage the business and professional development of young women by providing safe lodging, and educational programs. It is also significant as a fine, virtually unaltered example of the Italian Renaissance Revival style designed by the Minneapolis architectural firm of Croft and Boerner. It links to the 1995 &quot;Architectural and, Historical Resources of Ottumwa, Iowa&quot; The Ottumwa Young Women&#039;s Christian Association was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t133 W 2nd St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wapello County Courthouse",
            "lat": "41.019960",
            "lon": "-92.410717",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-wapellocountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wapello County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.019960,-92.410717\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wapello County Courthouse in Ottumwa was built in 1894. The courthouse is the fourth building the county has used for court functions and county administration. It is part of the Central Park area, which includes the Ottumwa Public Library, Ottumwa City Hall and St. Mary of the Visitation Catholic Church. Wapello County’s first courthouse was a single-story log cabin that was replaced in 1846 by a two-story brick structure that was built for $1,000. The first floor was used as a school house, church, courthouse, dancehall and a place for political meetings. The second floor was used for office space. The building was destroyed in a fire in 1872 and was replaced by another brick structure that served the county until 1891. The present courthouse was built for $135,000 and was dedicated in 1894. The Wapello County Courthouse was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCourt St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Eliphalet W. and Catherine E. Jaquish Purdy House",
            "lat": "42.467102",
            "lon": "-91.896777",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buchanan-nhr-purdyhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Eliphalet W. and Catherine E. Jaquish Purdy House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.467102,-91.896777\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Eliphalet Purdy and his wife, Catherine, moved to Independence in 1856. Eliphalet was active in manufacturing and banking, and he worked as an officer of the Independence Mills Company which owned and operated the Independence Mill. In 1881, the Purdys contracted with David J. Roberts to build this home. The home remained within the family until around 1985. It was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t215 3rd Ave. SW<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Nodaway River Bridge",
            "lat": "41.147024",
            "lon": "-95.041869",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-nhr-nodawayriverbridge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nodaway River Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.147024,-95.041869\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Nodaway River Bridge was fabricated and erected in 1877 by the Missouri Valley Bridge and Iron Works. This small-scale bowstring arch truss carried traffic over the Nodaway River until it was moved to Pilot Grove County Park about 1968, where can now enjoy this historical structure of early Iowa transportation development.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tPilot Grove County Park<br />Grant, IA 50847<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First National Bank",
            "lat": "41.017362",
            "lon": "-92.411694",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-firstnationalbank-ottumwa.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First National Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.017362,-92.411694\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The first National Bank building was constructed on this location in 1868, and it was rebuilt following a fire in 1881. For a number of years there were bank buildings occupying three corners at the intersection of Market and Main. By 1915 the bank officers determined the need for a more modern building. The use of a Chicago architect, H.H. Stocddard, selected the Neo-classical style for his design. This style was becoming very popular for bank buildings as it evoked a feeling of trust, as well as elegance, and was considered to be appropriate for a banking institution. The 1st National Bank was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t131 E Main St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hofmann Building",
            "lat": "41.017901",
            "lon": "-92.411139",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-hoffmanbuilding.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hofmann Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.017901,-92.411139\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hoffman Building is locally significant as the center for health and medical services in downtown Ottumwa and as a good example of modern commercial design by a noted Des Moines architectural firm, Proudfoot, Rawson, Brooks and Borg. The Hoffman Building was added to the National Register of Historic Places in 2010</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 S Market St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jay Robertson Funeral Home",
            "lat": "41.020212",
            "lon": "-92.409484",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-jayrobertsonfuneralhome.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jay Robertson Funeral Home</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.020212,-92.409484\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jay Funeral Home is locally significant as a noteworthy example of Mediterranean revival architecture from 1929 and as an early example of funeral home design. This was the first building in Ottumwa designed specifically for use as a funeral home, and the only one for over thirty years. Other local funeral homes were housed in what were originally large residences or in commercial storefronts. The Jay Funeral Home was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t220 N Court St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ottumwa City Hall",
            "lat": "41.018942",
            "lon": "-92.410567",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-ottumwacityhall.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ottumwa City Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.018942,-92.410567\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ottumwa City Hall (formerly the Ottumwa Municipal Building and U.S. Post Office) is representative of the Italian Renaissance style of Michelangelo – the objective to create a form, not just to enclose a space; to bring changing patterns of lights and shadows, not just to arrange blocks and pillars. The building, well detailed of enduring materials, remains in excellent condition, crisp in line and form. It could not be replaced. Modern materials and labor costs would prohibit the creation of this unique type of art form today. The Ottumwa City Hall was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t105 E 3rd St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "zoos-and-wildlife.png",
            "title": "Hawkeye Buffalo Ranch",
            "lat": "42.916161",
            "lon": "-92.238857",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/zoos-and-wildlife.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hawkeye Buffalo Ranch</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.916161,-92.238857\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Tours at the Hawkeye Buffalo Ranch include history and facts about bison, as well as a history of the farm, which has been in operation for over 150 years. Buffalo dinners and family stays are available by reservation.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3034 Pembroke Ave.<br />Fredericksburg, IA 50630<br />Chickasaw County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.237.5318</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"www.hawkeyebuffalo.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-hotels.png",
            "title": "Hotel Ottumwa",
            "lat": "41.018683",
            "lon": "-92.411846",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-hotelottumwa.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-hotels.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Ottumwa</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.018683,-92.411846\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Family owned and operated, the Hotel Ottumwa is Ottumwa&#039;s only full service hotel. It is conveniently located in historic downtown Ottumwa, within walking distances to attractions and the Amtrak station. Hotel Ottumwa offers a variety of room styles and boasts Southeast Iowa&#039;s finest meeting and banquet facilities, including a grand ballroom. The Hotel Ottumwa was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t107 E 2nd St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.682.8051</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://hotelottumwa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Mountain Brush School (Liberty No. 7)",
            "lat": "40.711556",
            "lon": "-94.148486",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mountain Brush School (Liberty No. 7)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.711556,-94.148486\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mountain Brush School (also known as Liberty No. 7) was built in 1878 and located in Liberty Township. It was later moved to Mount Ayr and used as a private residence. The schoolhouse is currently located at Lesanville.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2285 270th Ave.<br />Mount Ayr, IA 50854<br />Ringgold County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.464.2450</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wapsipinicon River Bridge",
            "lat": "42.459257",
            "lon": "-91.890841",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wapsipinicon River Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.459257,-91.890841\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>In early 1926, Mr. Hoffman, a state highway commission engineer, presented three options to the Buchanan County Supervisors for a bridge on &quot;primary road 11&quot; on the south edge of Independence. The bridge was designed by the Iowa State Highway Commission and built by the Miller-Taylor Construction Company which was based out of Waterloo, Iowa. The bridge still stands and is open for traffic, although it has been flooded several times. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tState Hwy 150<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Wapsipinicon Mill Museum",
            "lat": "42.468994",
            "lon": "-91.895197",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buchanan-nhr-millmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wapsipinicon Mill Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.468994,-91.895197\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wapsipinicon Mill is one of Iowa&#039;s largest grist mills, towering six stories above the Wapsipinicon River. The Wapsipinicon Mill was built in 1867 and originally called New Haven Mills. It was intended to be a woolen mill, but owner-operators Sanford Clark and Samuel Sherwood converted it to a grain mill. For 25 years, the mill even provided the city with electric power! The museum interprets the grist milling process from 1870 to the 1940s and features original buhr stones, milling equipment, early agricultural artifacts and hands-on exhibits. It was added to the National Register of Historic Places in 1975.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 1st St. W<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.334.4616</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://buchanancountyhistory.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Wapello County",
            "lat": "41.013044",
            "lon": "-92.415406",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-monument-wapellocountyfreedomrock-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Wapello County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.013044,-92.415406\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wapello County Freedom Rock® in Ottumwa features a gold star flag waving beside a soldier grasping a folded flag, representing those who&#039;ve lost their lives serving our country and in honor of Ottumwa native Corporal Jon Schiller. The back side is a shout out to the Ottumwa-based 833rd Engineer Company and a Bald Eagle carrying a ribbon with a thank you to all who serve. On the smaller sides are the Ottumwa Naval Air Station, that trained naval aviators among the farm fields of the Midwest. Also depicted are a couple of the Tuskegee Airmen with one of their distinct red-tailed planes flying above them. The Tuskegee Airmen, some with ties to Wapello County, were an all black fighter group that led the way in overcoming segregation in the military. The Wapello County (Ottumwa) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 Church St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Benson Building",
            "lat": "41.017322",
            "lon": "-92.410393",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-bensonbuilding.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Benson Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.017322,-92.410393\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>When the Benson Building was constructed in 1930, its first use was as an indoor miniature golf course. Although there were three outdoor “Pee Wee Golf” facilities in the community, this was the first that would be available during the winter months. The Ottumwa Courier noted that “It will be equipped with a fiber green which has been patented by Mr. Rudy and which he claims is the newest approach to bent grass that is available.” The Benson Building was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t214 E 2nd St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Foster/Bell House",
            "lat": "41.019790",
            "lon": "-92.407614",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-fosterbellhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Foster/Bell House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.019790,-92.407614\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Foster/Bell house is a very good example of Tudor revival architecture from the early 1920’s, executed on a large scale. The exterior is unaltered from the 1923 original design and exhibits the major characteristics of the style. The structure is of interest locally because it was built by Thomas D. Foster. The remodeled exterior negates the historical significance which linked Foster with the original house, as only the scale of the residence and the interior remain from this period. The location and size of the house comment on the social and economic importance of the Foster and Bell families in the community. The Foster/Bell House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t205 E 5th St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Benson Block",
            "lat": "41.017945",
            "lon": "-92.410254",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-bensonblock.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Benson Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.017945,-92.410254\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Benson building exemplifies how the availability of decorative cladding materials enabled owners of early commercial buildings to completely transform their building facades. This well preserved neo-classical front, designed but never used as a theater use, is locally of interest due to its ornate detailing, and its scale. It is one successor to the use of metal in cornices or fronts, and presaged the appearance of aluminum and other later materials. The Benson Block was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t112 N Market St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fifth Street Bluff Historic District",
            "lat": "41.019256",
            "lon": "-92.407720",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-fifthstreetbluffhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fifth Street Bluff Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.019256,-92.407720\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fifth Street Bluff Historic District contains significant examples of the Italianate, Queen Anne and Tudor Revival architectural styles from 1860-1930, as well as designs by 9 different architects/firms from the late 19th and early 20th century. The district also illustrates the important role played by the Des Moines River in the physical development of the City of Ottumwa. The bluffs along the north side of the river in Ottumwa are a major landscape feature, and have played a role in community development since the town was established in 1843. The earliest settlement occurred on the flat along the riverbank, a marshy area prone to flooding. Log cabins served as both housing and places of business during the early years. As the small town prospered, local business owners could afford more comfortable housing, and many began building on “the bluff”. The District was home to many of Ottumwa’s early industrial and commercial leaders who established this as a prestigious neighborhood. The Fifth Street Bluff Historic District was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE. 5th St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "North Fellows Historic District",
            "lat": "41.026493",
            "lon": "-92.396498",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-northfellowshistoricdistrict-1.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">North Fellows Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.026493,-92.396498\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The North Fellows neighborhood is locally significant as a good example of the residential building boom that occurred when World War II veterans returned to their communities, married, and started families. The Historic District is also significant as the only completely brick residential development in Ottumwa and it is representative of the minimum type of house recommended by the Federal Housing Authority from the mid-1930s through the 1950s. The North Fellows Historic District was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1200 N Fellows St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Pickar Barn",
            "lat": "42.827491",
            "lon": "-92.141183",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pickar Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.827491,-92.141183\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This large barn was painstakingly restored over three years by David and Ruth Pickar. The Pickars received an Iowa Barn Foundation Award of Distinction for the project and the barn was featured in the Fall 2000 edition of the Iowa Barn Foundation Magazine.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1538 Viking Ave.<br />Sumner, IA 50674<br />Bremer County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Farmall-Land USA",
            "lat": "41.495790",
            "lon": "-95.335068",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-historymuseum-farmallusa-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Farmall-Land USA</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.495790,-95.335068\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Farmall-Land USA Museum is dedicated to the history of farm equipment especially Case IH tractors. Opening in 2010, the museum features a large collection of Case IH, as well as Hi-Crop and Wheatland tractors and equipment, including a 1962 IH 4300 which is 1 of only 36 in existence. The museum also has a small antique doll collection.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2101 N Lavista Heights Dr.<br />Avoca, IA 51521<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.307.6806</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://farmall-land-usa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Malek Theatre",
            "lat": "42.469381",
            "lon": "-91.893151",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buchanan-theater-malektheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Malek Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.469381,-91.893151\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Malek Theater opened on October 29, 1946. It was designed by Wetherell and Harrison of Des Moines and built by Bob Malek, who named it for his father. In 1982, the auditorium was divided into two screening rooms. The theatre closed in the mid-2000s, after a new theatre opened on the south side of town. The Malek was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t116 2nd Ave. NE<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Robert R. and Julia L. (Finney) Plane House",
            "lat": "42.466331",
            "lon": "-91.892153",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buchanan-nhr-robertjuliaplanehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Robert R. and Julia L. (Finney) Plane House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.466331,-91.892153\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The house was built for Robert R. and Julia L. (Kinney) Plane after their marriage in 1882. Construction was completed by Jacob Manz, a German immigrant. The Planes also owned a millinery shop in Independence, but it was destroyed in the fire of 1874. The house remained in the Plane family until 1960. It was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 3rd Ave. SE<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fisher-Plane Commercial Building",
            "lat": "42.468582",
            "lon": "-91.893035",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buchanan-nhr-fisherplanecommercialbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fisher-Plane Commercial Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.468582,-91.893035\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fisher-Plane commercial building was constructed in 1874 by George Netcott, Jr. Originally, the east half of this double wide commercial building was owned by Henry A. Fisher, and the west half was owned by Robert R. Plane. The building was built after a fire which destroyed most of the commercial property in town. The first floor was used as stores, and the second floor had a room that was rented as office space and another as storage space. The building is still used for commercial reasons. It was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t119 1st St. E<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Maas Commercial Building",
            "lat": "42.468578",
            "lon": "-91.892899",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buchanan-nhr-maascommericalbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Maas Commercial Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.468578,-91.892899\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Following disastrous fires of 1873 and 1874, Downtown Independence was quickly rebuilt, including a line of buildings erected as a single project along the south side of First Street East. Each of the store fronts was separately owned. The buildings form a stair step as the project descends a hill. The Maas Building is one of the few single store front buildings of the group. The building still presents its original Italianate decoration. Nathan Maas owned the store and sold clothing there. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t209 1st St. E<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Weins Commercial Building",
            "lat": "42.469676",
            "lon": "-91.893535",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Weins Commercial Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.469676,-91.893535\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>After a fire destroyed almost all of Independence’s business district in 1874, Theodore A. Weins, a local businessman, purchased the building site in 1887. Construction began in 1892. There were two store spaces on the first floor, and the second floor had small apartments and a doctor’s office. Weins and Shillinglaw, his partner, were grocers, and the other half of the first floor was rented to Charles A. McEwen who opened a drug store. Recent work was done by the current owners to eventually rent the first floor space to a retailer and the second floor as apartments. It was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t129 2nd Ave. NE<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Jefferson Street Viaduct",
            "lat": "41.013305",
            "lon": "-92.412088",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-jeffersonstreetviaduct.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jefferson Street Viaduct</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.013305,-92.412088\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Although it was built in 1935-1936, the Jefferson Street Viaduct traces its roots 15 years earlier. Beginning in 1921 Ottumwa city officials began meeting with the CBandQ, the CRIandP and the CMandStP railroads with the idea of building a viaduct over the numerous tracks that paralleled the Des Moines River. Because the proposed bridge was to carry U.S. Highways 34 and 63, the city sought financial and design help from the Iowa State Highway Commission. ISHC agreed to fund construction of a new bridge over the Des Moines River, provided the city would pay for construction of the viaduct on the northern end. Between 1930 and 1935 ISHC presided over meetings with the city and the railroads in an effort to resolve differences among the three entities. Finally, highway commission engineers drew up a five-span, riveted Warren deck truss, cantilevered from massive concrete piers in the river. At the dedication ceremonies on May 28th, Iowa Governor Clyde Herring and Ottumwa Mayor Edwin Manning spoke before a crowd of about 15,000 people, before two Ottumwa girls christened the bridge with bottles of champagne. The Jefferson Street Viaduct has carried heavy traffic since, with a major rehabilitation in 1983 as its most substantial alteration. The Jefferson Street Viaduct was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tJefferson St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Grafton Heritage Museum and Depot",
            "lat": "43.330226",
            "lon": "-93.070654",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grafton Heritage Museum and Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.330226,-93.070654\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grafton Depot was built by the Chicago, Milwaukee and St. Paul Railroad following the architectural lines of their depot plan. It is a two story, gabled roof frame building with original clapboards made from native timber cut six inches wide. The roof, also original, is covered with wood shingles. Decorative roof brackets are found at regular intervals under the eaves. The foundation is of brick and cement, and there are two inside and chimneys made of brick. It was added to the National Register of Historic Places on June 23, 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Grafton, IA 50440<br />Worth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.324.1180</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.worthhistory.org/index.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dr. Judd C. and Margaret S. Clarke Shellito House",
            "lat": "42.465857",
            "lon": "-91.889057",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buchanan-nhr-juddshellitohouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. Judd C. and Margaret S. Clarke Shellito House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.465857,-91.889057\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was commissioned by Dr. and Mrs. Amos G. Shellito and presented to their son Dr. Judd Shellito and his new wife, Margaret Clarke Shellito, as a wedding gift. The younger Dr. Shellito enlisted in the Army in the spring of 1917, just after America entered World War I. According to the Cedar Rapids Evening Gazette of Aug. 22, 1917, &quot;Shellito went to Chicago in response to war department orders. He left his practice, his nearly completed office building, an elegant new residence, nearly finished, and bride of three months.&quot; Dr. Shellito was serving in France when the home was completed, so a portfolio of photographs was produced and sent to him. The &quot;elegant new residence&quot; was designed by Independence architect Harry Netcott in the Colonial Revival style. After World War I, Shellito returned to Independence and specialized in X-ray work. Tragically, his very successful career was cut short on Easter Sunday, April 16, 1933, when he and another doctor were returning from the spring meeting of the Iowa Clinical Medical Society in Council Bluffs. Their car collided with another car just west of Cedar Rapids, and Dr. Shellito died that morning. His widow, Margaret, and two children continued to live in the wedding-gift home, which was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310 5th Ave. SE<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Munson Building",
            "lat": "42.469987",
            "lon": "-91.892543",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Munson Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.469987,-91.892543\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Perry Munson lived in Independence from 1857 until his death in 1893. He was a machinist and blacksmith by trade. Although in later years he ran a grocery, he never lost his interest in manual crafts, and the Munson Building, was to be a memorial to that interest. For nearly 60 years, the young people of Independence were trained in a variety of mechanical arts, including printing, drafting, and manual skills such as woodworking. Use of the building was not limited to practical instruction, however; the Y.M.C.A., the public library, Boy and Girl Scouts, and community groups have, since the beginning, found space in the Munson Building for their activities. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210 2nd St. NE<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Griswold National Bank",
            "lat": "41.234576",
            "lon": "-95.142921",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-nhr-griswoldnationalbank-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Griswold National Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.234576,-95.142921\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Griswold National Bank building is a representative example of a small town, late 19th century banking facility. With it&#039;s street corner location and decorative structure stood out prominently on the streetscape. Established in 1879, the town of Griswold was expected to be along the railroad line. This bank was established by one of the town&#039;s founders, F.H. Whitney, in the early 1880s. Along with establishing the bank, Whitney developed Griswold&#039;s first hardware store, first hotel and first grain elevator. \r\nThe Girswold National Bank merged with Theodore H. Brown&#039;s First National Bank in 1883. It operated until 1930 and was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t414 Main St.<br />Griswold, IA 51535<br />Cass County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Rush International Harvester Antique Farm Display",
            "lat": "41.234487",
            "lon": "-95.142461",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-historymuseum-rushinternationalfarmdisplay-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rush International Harvester Antique Farm Display</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.234487,-95.142461\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rush International Harvester Antique Farm Display was opened in 1997 in a building that once occupied a car dealership and a John Deere dealership. The museum features an authentic display of farm equipment from the 1800s to the 1950s. It houses 12 International Harvester tractors as well as other International Harvester farm equipment, an antique fire truck, and vintage farm home items.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t500 Main St.<br />Griswold, IA 51535<br />Cass County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.778.2213</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Cass County Historical Society Museum",
            "lat": "41.234562",
            "lon": "-95.143068",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-historymuseum-casscountyhistoricalsocietymuseum-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cass County Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.234562,-95.143068\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cass County Museum exhibits feature the history of Cass County from Native Americans to the present. The museum contains over 7,000 artifacts from 25 areas of history.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t412 Main St.<br />Griswold, IA 51535<br />Cass County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.778.5040</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://cchmiowa.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "B&#039;nai Jacob Synagogue",
            "lat": "41.013968",
            "lon": "-92.406923",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-bnaijacobsynagogue.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">B&#039;nai Jacob Synagogue</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.013968,-92.406923\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Synagogue is locally significant as it illustrates the importance of the Jewish community in Ottumwa&#039;s business and social history, and because it was composed of an ethnically cohesive group of people. It is also significant as the only synagogue in Ottumwa&#039;s history, and as an example of a design executed by local master architect George M. Kerns. The B&#039;Nai Jacob Synagogue was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t529 E Main St.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Graceland Cemetery Chapel",
            "lat": "41.492096",
            "lon": "-95.337708",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-gracelandcemeterychapel.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Graceland Cemetery Chapel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.492096,-95.337708\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Graceland Chapel is one of only two octagonal cemetery chapels in the state of Iowa. It was built in 1875 and added to the National Register of Historic Places in 1986. The architect and builder are unknown, but the octagonal design can be traced to the influence of Orson Squire Fowler and his widely publicized writing about the advantages of this kind of architectural design.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHwy. 59<br />Graceland Cemetery<br />Avoca, IA 51521<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Buchanan County Courthouse",
            "lat": "42.470350",
            "lon": "-91.888711",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buchanan-nhr-buchanancocourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buchanan County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.470350,-91.888711\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Buchanan County Courthouse was built in 1939 at a cost of $254,000. It was one of ten county courthouses built in Iowa during the New Deal Era as part of the federal Public Works Administration (PWA) program&#039;s operation in the 1930s and early 1940s. It is an example of the PWA Moderne style of public building architecture developed during the 1930s and early 1940s. Its design blends Art Deco and Moderne elements. It was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210 5th Ave. NE<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Jackson Hill School (Monroe No. 8)",
            "lat": "40.723046",
            "lon": "-94.222708",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jackson Hill School (Monroe No. 8)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.723046,-94.222708\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jackson Hill School (also known as Monroe No. 8) was built in the 1880s and located in Monroe Township. The school ceased operations in 1954 and is now located on the Ringgold County Fairgrounds. The school house is open during the fair and by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2214 Hwy. 169<br />Ringgold County Fairgrounds<br />Mount Ayr, IA 50854<br />Ringgold County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.464.2450</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.ringgoldcountyfair.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Francis and Rose M. Turner House",
            "lat": "41.483371",
            "lon": "-95.334645",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-francisroseturnerhouse-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Francis and Rose M. Turner House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.483371,-95.334645\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Francis and Rose Turner House is the best preserved example of an early twentieth-century Classical Revival style house in the Avoca community. The house was added to the National Register of Historic Places in 1997 and retains a high degree of its historical integrity.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t801 N Cherry St.<br />Avoca, IA 51521<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Bierbaum AC Tractor Museum",
            "lat": "41.230741",
            "lon": "-95.142045",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cass-historymuseum-bierbaumACtractormuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bierbaum AC Tractor Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.230741,-95.142045\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Opened in 2005, The Bierbaum Aliss Chalmers Tractor Museum has one of the largest tractor collections in the state. The museum is owned by Royal Bierbaum who shares his collection of 40 tractors from 1914 to 1972 in the industrial garage museum space. Bierbaum has traveled the world collecting AC Tractors. The museum also houses an extensive collection of antique farm equipment and home amenities. The museum is open by appointment only.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t706 Cass St.<br />Griswold, IA 51535<br />Cass County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.778.2586</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Lake LaJune and HMS Bounty",
            "lat": "42.334972",
            "lon": "-95.451827",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lake LaJune and HMS Bounty</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.334972,-95.451827\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95mi.</span></div>\n\t\t</div>\n\n\t\t<p>Byron Godberson (1925-2003) built Lake LaJune, named for his wife, in 1969 to demonstrate recreational equipment for the customers of Midwest Industries. A half-scale reproduction of the HMS Bounty is usually visible from the road.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUS Hwy. 59<br />Ida Grove, IA 51445<br />Ida County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Illinois Central Railroad: Independence Depot",
            "lat": "42.478707",
            "lon": "-91.889818",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buchanan-nhr-illinoiscentralrailroad.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Illinois Central Railroad: Independence Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.478707,-91.889818\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Illinois Central Railroad Depot was founded in 1859. This rail depot was the first of its kind in Independence. In 1891, it was remodeled to add a passenger depot to accommodate the flocking crowds of passengers. The depot was moved and re-purposed as an office and visitor center for Buchanan County Tourism.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1111 5th Ave. NE<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.334.3439</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Captain Daniel S. and Fannie L. (Brooks) Lee House",
            "lat": "42.468193",
            "lon": "-91.884254",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buchanan-nhr-captaindanialshouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Captain Daniel S. and Fannie L. (Brooks) Lee House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.468193,-91.884254\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95mi.</span></div>\n\t\t</div>\n\n\t\t<p>Daniel S. Lee was the first Civil War Volunteer from Buchanan County and the first mayor of Independence. His home, and only residence, was built by David J. Roberts in 1867. In 1917, the house became home of the Peoples Memorial Hospital and additions were added in 1923, 1930, 1950, and 1957. These additions were demolished when the city of Independence took ownership of the property. Plans were made to restore the home to its original state, with exhibits focusing on the life of Daniel Lee and his law career. It was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t803 1st St. E<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles Henry and Charlotte Norton House",
            "lat": "41.479706",
            "lon": "-95.336133",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-charlescharlottenortonhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles Henry and Charlotte Norton House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.479706,-95.336133\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Norton House was built in 1878 and features a distinguished architectural design combining the Italian Villa and Gothic Revival styles. This elemental blend was high style for the time, reflecting a fashion that began in England as the noted &quot;Picturesque Movement&quot;. The house was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 N Chestnut St.<br />Avoca, IA 51521<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Sweet Vale of Avoca Museum",
            "lat": "41.480681",
            "lon": "-95.339713",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-historymuseum-sweetvaleavocamuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sweet Vale of Avoca Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.480681,-95.339713\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sweet Vale of Avoca Museum is dedicated to the history of the city of Avoca and the surrounding area. The museum has a variety of exhibits available including a large collection of Danish Plates, dating from 1899-1990. The building also houses the Avoca Historical Society.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t504 N Elm St.<br />Avoca, IA 51521<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.343.2477</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Buffalo Center Heritage Museum and Historical Society",
            "lat": "43.385257",
            "lon": "-93.948891",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buffalo Center Heritage Museum and Historical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.385257,-93.948891\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Buffalo Center Heritage Museum is located in the Heritage Town Center and features displays and artifacts curated by the Buffalo Center Historical Society.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 2nd Ave. SW<br />Heritage Town Center<br />Buffalo Center, IA 50424<br />Winnebago County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.562.2419</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.bchistoricalsociety.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Harold Hughes Gravesite",
            "lat": "42.356393",
            "lon": "-95.451462",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Harold Hughes Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.356393,-95.451462\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Harold Everett Hughes (February 10, 1922 – October 23, 1996) served as the 36th Governor of Iowa from 1963 - 1969. Hughes is interred at his hometown of Ida Grove at the Ida Grove Cemetery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t240th St.<br />Ida Grove, IA 51445<br />Ida County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Pottawattamie County Sub Courthouse",
            "lat": "41.478082",
            "lon": "-95.339060",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-pottawattamiecountysubcourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pottawattamie County Sub Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.478082,-95.339060\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Since Avoca was once the seat of Pottawattamie County, this courthouse is significant as a historical center of county government and politics. It was listed on the National Register of Historic Landmarks in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tElm St.<br />Avoca, IA 51521<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Dow House Historic Site",
            "lat": "41.923618",
            "lon": "-95.497773",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dow House Historic Site</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.923618,-95.497773\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dow House is a two-story red brick house with 13 rooms, built in 1872 by Simon E. Dow. Three years earlier, Dow had been one of the co-founders of Dow City, eventually becoming one of its leading businessmen. In 1970, the house was purchased by the Crawford County Conservation Board for restoration and it was listed on the National Register of Historic Places 2 years later. The house is now open seasonally for public tours.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t513 S Prince St.<br />Dow City, IA 51528<br />Crawford County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.263.2748</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.crawfordcountyconservationboard.com/historic.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Tenold Barn",
            "lat": "43.394303",
            "lon": "-93.360684",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/worth-barn-tenoldbarn-2.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tenold Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.394303,-93.360684\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Tenold Barn dates to the early 1900s and was built on the farm of Elmer and Annie Tenold. The barn was originally painted red with white trim and housed dairy cattle and horses. The farm has remained in for four generations and was featured on the Iowa Barn Foundation&#039;s All-State Barn Tours in 2011 and 2016.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4356 Wheelerwood Rd.<br />Co. Rd. S28<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ringgold County Courthouse",
            "lat": "40.714304",
            "lon": "-94.238140",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ringgold County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.714304,-94.238140\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ringgold County Courthouse is locally significant as the historical focus of county government and a symbol of Mount Ayr&#039;s prestigious status as the seat of Ringgold County. It was built in 1927, following a long list of previous courthouse buildings that were either destroyed in a natural disaster or proved to be structurally inadequate. The courthouse was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t109 W Madison St.<br />Mount Ayr, IA 50854<br />Ringgold County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Cedar Valley Memories Museum",
            "lat": "43.285046",
            "lon": "-92.857223",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cedar Valley Memories Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.285046,-92.857223\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cedar Valley Memories Museum is a collection of historic steam powered vehicles. The museum has five fully functional antique steam engines: A Reeves 40-140 cross compound tractor, 1913 Case model 110, 1910 Phoenix Caterpillar log hauler, 1922 32-hp Advance-Rumley, and 1878 Bluementrit two-cylinder. It also is the Home of the Smolik exhibit of steam engines, vintage machinery and an old railroad depot. On display in the Smolik Exhibit, includes Osage’s own 1901 Frazee automobile, the first gas-powered car manufactured in Iowa, and the only one ever made, designed and assembled in Osage.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t18791 Hwy 9<br />Osage, IA 50461<br />Mitchell County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.732.1269</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ringgold County Jail",
            "lat": "40.713625",
            "lon": "-94.235881",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ringgold County Jail</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.713625,-94.235881\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ringgold County Jail was built in 1895 by Pauly Jail Building and Manufacturing Company and James McCombs of Mount Ayr. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 E Monroe St.<br />Mount Ayr, IA 50854<br />Ringgold County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Princess Theater",
            "lat": "40.713679",
            "lon": "-94.237675",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Princess Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.713679,-94.237675\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Princess Theater building was built about 1887 as the W.A. Simpson Department Store. The building operated as the Princess Theater from 1910 to 1985. The Moonlighters Theatre Group performs live theatrical shows at the theater and was the driving force in securing funds for the restoration of the theater.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 W Monroe St.<br />Mount Ayr, IA 50854<br />Ringgold County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Chain Lakes Bridge",
            "lat": "42.050099",
            "lon": "-91.775469",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chain Lakes Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.050099,-91.775469\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chain Lakes Bridge is a substantial two-span structure over the Cedar River northwest of Cedar Rapids, just south of the small community of Palo. The bridge now serves pedestrians visiting a nature area maintained by the Linn County Conservation Board. A picnic area and boat landing are near the bridge&#039;s south approach; the northern bank is heavily wooded. The bridge was built in 1884, and was remodeled in 1999. It closed for a short time following the 2008 floods, but is now open to pedestrians. The Chain Lakes Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4320 Chain Bridge Rd.<br />Hiawatha, IA 52233<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Danish Lutheran Church",
            "lat": "42.671673",
            "lon": "-95.305054",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Danish Lutheran Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.671673,-95.305054\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Danish Lutheran Church was built in 1887, in the Danish settlement of Alta. The period of significance is from about 1887 to 1930, the time when the congregation that built the church worshipped there. It was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t113 W 4th St.<br />Alta, IA 51002<br />Buena Vista County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ida County Courthouse",
            "lat": "42.342030",
            "lon": "-95.467649",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ida County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.342030,-95.467649\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ida County Courthouse was built in 1883, after the previous courthouse was destroyed in a fire. The building was designed in the Italianate style and features a 110-foot tower. It was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 Moorehead St.<br />Ida Grove, IA 51445<br />Ida County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Union Church",
            "lat": "40.638304",
            "lon": "-93.806114",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Union Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.638304,-93.806114\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Union Church was constructed in 1878 and is made of red brick on a stone foundation, featuring a slightly protruding pavilion with a square clock and bell tower. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Clark St.<br />Davis City, IA 50065<br />Decatur County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Alvin Bushnell Bell House",
            "lat": "42.342910",
            "lon": "-95.474360",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alvin Bushnell Bell House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.342910,-95.474360\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1895, the Bell house is one of the finest extant examples of vernacular Queen Anne architecture in Ida County. The structure bears resemblance to a design by George Franklin Barber, perhaps the most outstanding mail order architect of the late 19th century. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310 Quinby St<br />Ida Grove, IA 51445<br />Ida County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "1901 Victorian House and Gardens",
            "lat": "43.416845",
            "lon": "-93.530374",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">1901 Victorian House and Gardens</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.416845,-93.530374\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Queen Anne Victorian Home, built in 1901, was the home of the Soren Larson family. The home is now a museum owned and operated by the Lake Mills Area Historical Society. The museum features local furnishings and traditions along with stories of the home when it was a rest home and hospital. The home also has 14 gardens.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t308 S Lincoln St.<br />Lake Mills, IA 50450<br />Winnebago County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.592.5253</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Ida County Veteran&#039;s Memorial",
            "lat": "42.351452",
            "lon": "-95.473131",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/ida-monument-idacountyveteransmemorial.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ida County Veteran&#039;s Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.351452,-95.473131\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ida County Veterans Memorial consists of a memorial wall and walkways that recognize all branches of military.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA 175<br />Cobb Memorial Park<br />Ida Grove, IA 51445<br />Ida County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Mills Theater",
            "lat": "43.419507",
            "lon": "-93.534413",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mills Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.419507,-93.534413\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mills Theater, built in the Art Deco style, opened in 1937 and remained in operation until 2001. The theater was rennovated and reopened in 2008 with the support of the community.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t216 W Main St.<br />Lake Mills, IA 50450<br />Winnebago County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.592.6455</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.themillstheater.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Mitchell County Historical Museum",
            "lat": "43.278673",
            "lon": "-92.808867",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mitchell County Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.278673,-92.808867\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mitchell County Historical Museum is one of seven sites owned and operated by the Mitchell County Historical Society. The museum’s mission is to keep an active interest in Mitchell County history by collecting, preserving and interpreting artifacts, books, papers, records and other materials relative to the county’s history. Currently, the Historical Museum cares for more than 10,000 items, including one of the largest clothing collections in Iowa.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t809 Sawyer Dr.<br />Cedar River Complex<br />Osage, IA 50461<br />Mitchell County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.832.2574</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://sites.google.com/site/mitchellcohistoricalsociety\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Union No. 1 School",
            "lat": "43.279882",
            "lon": "-92.805654",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Union No. 1 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.279882,-92.805654\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Union No. 1 School is a one room schoolhouse located on the Mitchell County Fairgrounds. The school was purchased by the Mitchell County Historical Society. The school is used as a museum containing, 20th century desks, slate writing plates, and other school supplies.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1098 Chestnut St.<br />Mitchell County Fairgrounds<br />Osage, IA 50461<br />Mitchell County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Wickiup Hill Learning Center",
            "lat": "42.083016",
            "lon": "-91.764971",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wickiup Hill Learning Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.083016,-91.764971\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The 683-acre complex includes an interpretive center and surrounding wetlands, reconstructed prairie, savanna, timber and five miles of trails. Numerous outdoor recreation opportunities such as hiking, snowshoeing, cross country skiing, bird watching and wildlife observation are available. Educational displays in the center highlight Wickiup Hill&#039;s natural resources and its archaeological past.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10260 Morris Hill Rd.<br />Toddville, IA 52341<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.892.6485</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.LinnCountyParks.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Country School Museum",
            "lat": "43.421841",
            "lon": "-93.534463",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Country School Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.421841,-93.534463\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Country School Museum is a rural country school used from 1936-1954. The museum is owned and operated by the Lake Mills Area Historical Society and showcases authentic furnishings and books.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t308 N Mill St.<br />Lake Mills, IA 50450<br />Winnebago County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.592.5253</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Osage Commercial Historic District",
            "lat": "43.284070",
            "lon": "-92.812044",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Osage Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.284070,-92.812044\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The historical significance of the Osage Commercial district lies in its representation of the central business district from the 1860s to the present and its reflection of the varied commercial, public, social, cultural, and recreation al enterprises that evolved in the late 19th to early 20th Centuries within this community. It was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t621 Main St.<br />Osage, IA 50461<br />Mitchell County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "C. F. and Mary Singmaster House",
            "lat": "41.381606",
            "lon": "-91.980507",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">C. F. and Mary Singmaster House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.381606,-91.980507\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed during the 1890s, the C.F and Mary Singmaster House, long known as &quot;Maplehurst,&quot; was the family home and center of a once thriving business stretching across multiple states. The family business began in 1875 and was originally known as “Singmaster and Sons.” The family became well known throughout the state, nation, and world as experts in the importation and breeding of draft horses, primarily Percheron, Clydesdales, and Normans. As the family business grew, they would build five of the largest homes in the Keota area. At its peak, Maplehurst Ranch included three mansions, multiple horse barns, out buildings, stables, and even a boarding house so that visitors and clients had a place to stay. In 1902 C. F. Singmaster purchased a bull and two cows from the buffalo herd in Yellowstone National Park. In a field at Maplehurst the herd grew rapidly into one of the largest individual buffalo herds in the United States. Elk and deer herds were also kept with the buffalo which led to an increase in tourists. During the late 1920s, Maplehurst would become the site of the Pete Carr Rodeo. The C. F. and Mary Singmaster House was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t32263 190th St.<br />Keota, IA 52248<br />Keokuk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Hansen Barn",
            "lat": "43.066316",
            "lon": "-94.915188",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hansen Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.066316,-94.915188\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hansen Barn is a historic barn known for its tremendous corn crib. The corn crib holds 7000 bushels of ear corn, and in the center of crib is storage for 4,000 bushels of small grain. In the middle of the crib is a bucket system that transports ear corn to the top of the corncrib and releases it into multiple outlets. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4015 340th Ave.<br />Co. Rd. N18<br />Ruthven, IA 51358<br />Clay County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cedar Valley Seminary",
            "lat": "43.285998",
            "lon": "-92.813853",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cedar Valley Seminary</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.285998,-92.813853\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The former Cedar Valley Seminary building is a very competent rendering of the Italianate style. It is also significant as a private educational institution, founded in 1862, which for 80 years offered extensive and high quality instruction to students in northern Iowa. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN 6th St.<br />Osage, IA 50461<br />Mitchell County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Nathaniel Cobb and Lucretia Deering House",
            "lat": "43.283259",
            "lon": "-92.807464",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nathaniel Cobb and Lucretia Deering House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.283259,-92.807464\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Deering House is significant as the home of a prominent politician of the time, and for its pride to the local community. It was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t903 State St.<br />Osage, IA 50461<br />Mitchell County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Watts Theater",
            "lat": "43.283909",
            "lon": "-92.810511",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Watts Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.283909,-92.810511\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Watts Theatre was opened in 1950 by the Jim Watts family, with a showing of &quot;Dancing in the Dark.&quot; The 44 by 132 foot building was designed and built as a state-of-the-art theater and included 580 seats and living quarters upstairs for the Watts family.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t714 Main St.<br />Osage, IA 50461<br />Mitchell County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Bolan Schoolhouse and Cultural Center",
            "lat": "43.372461",
            "lon": "-93.118773",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bolan Schoolhouse and Cultural Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.372461,-93.118773\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>There were two rural one-room country school houses near Bolan, one a mile north and one a mile south of Bolan. In 1922, the south school burned and the school board decided to rebuild a new two-room school at the Bolan corner called the Barton No. 2 Schoolhouse. The school ceased operation in 1956 and was moved into Bolan to serve as a grocery and hardware store. The schoolhouse has been restored and now serves as a Cultural Center for the north Iowa area. The upper level displays education and local memorabilia spanning the years 1923-1956. The original 1923 Barton No. 2 school bell hangs in the recreated bell tower.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4206 Tulip Ln.<br />Kensett, IA 50448<br />Worth County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.bolaniowa.com/schoolhouse.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Moorehead Pioneer Park",
            "lat": "42.354553",
            "lon": "-95.480879",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Moorehead Pioneer Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.354553,-95.480879\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Moorehead Pioneer Park is on the outskirts of Ida Grove. At the park, visitors can see the Grant Center School, a log cabin house (built in 1901) and the Chicago-Northwestern Railway Depot (used as a park shelter). The Moorehead Stagecoach Inn is also located on the site and is considered to be one of the most historic buildings in Ida County. This substantial frame building was the center of activity for the first fifteen years of Ida County History. John H. Moorehead began construction in 1856, a year after the Western Stage Line began to run coaches from Fort Dodge to Sioux City. The inn was completed in 1863 and was the only structure of any significant size in the area until 1871. The Stagecoach Inn was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t202 Jasper Ave.<br />Ida Grove, IA 51445<br />Ida County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Burlington, Cedar Rapids and Minnesota Railroad: Walker Station",
            "lat": "42.286331",
            "lon": "-91.782272",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Burlington, Cedar Rapids and Minnesota Railroad: Walker Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.286331,-91.782272\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97mi.</span></div>\n\t\t</div>\n\n\t\t<p>The train station at Walker, built in 1873, is a two-story frame structure. The railroad towns are a significant aspect of American history, particularly in the Midwest. The depot at Walker is a symbol of the agency which created this community. It was named after William Williams Walker, chief engineer for the Burlington, Cedar Rapids, and Minnesota Railroad, which later became part of the Rock Island Railroad. The Burlington, Cedar Rapids, and Minnesota Railroad Station was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRowley St.<br />Walker, IA 52352<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Pleasant Hill School",
            "lat": "40.624357",
            "lon": "-93.498798",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pleasant Hill School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.624357,-93.498798\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pleasant Hill one-room schoolhouse was built in 1881 and is located three miles north of Lineville, Iowa. The schoolhouse was originally painted white and in 1940 a red coat of paint was applied and the building became known as the &quot;Little Red Schoolhouse&quot;. After the school ceased operations in 1957 it served as a roadside park in the 1960s. It was added to the National Register of Historic Places on May 28, 1975.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUS Hwy 65 and Davis Rd.<br />Roadside Park<br />Lineville, IA 50147<br />Wayne County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Sunset Theater",
            "lat": "42.847311",
            "lon": "-92.098332",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sunset Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.847311,-92.098332\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sunset Theater opened in 1948. The theater remained in operation until the 1980s, when it was closed and converted to a recreation center. In 2000, it re-opened as a community-owned theater.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t111 W 1st St.<br />Sumner, IA 50674<br />Bremer County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bank of Sumner",
            "lat": "42.847625",
            "lon": "-92.098766",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bank of Sumner</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.847625,-92.098766\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bank of Sumner contributed to the community&#039;s sense of self and has long been an anchor to Sumner&#039;s commercial district. It is associated with the business activities and life of Stephen F. Cass, an early merchant and commercial settler to Bremer County who was important to the founding and success of the community of Sumner. It was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t118 W 1st St.<br />Sumner, IA 50674<br />Bremer County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sumner High School",
            "lat": "42.850839",
            "lon": "-92.100755",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sumner High School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.850839,-92.100755\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sumner High School building was built 1901, and until 1953, it served as the town’s only public school building. Additions were added in 1915 and 1924 to accommodate Sumner’s growing school population as well as curriculum changes required by the Iowa legislature. Today, the school serves as a recreation and cultural center for the community. It was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 W 4th St.<br />Sumner, IA 50674<br />Bremer County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Taylor&#039;s Ford Bridge",
            "lat": "42.399831",
            "lon": "-91.812185",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Taylor&#039;s Ford Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.399831,-91.812185\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This long-span iron bridge was designed and built by the Wrought Iron Bridge Company based out of Canton, Ohio. Taylor’s Ford Bridge was built in 1872 as a replacement for the earlier bridge that was destroyed by flooding in 1863. It is immediately west of the current roadway bridge. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tNolen Ave.<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Fontana Interpretive Nature Center",
            "lat": "42.604441",
            "lon": "-91.908285",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fontana Interpretive Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.604441,-91.908285\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fontana Park Interpretive Nature Center is a full service visitor center with displays that demonstrate how people &quot;make their home in a living environment.&quot; Visitors can see and touch natural objects, play games and find answers to questions. There is also a live wildlife display that includes orphaned, injured or human-raised wildlife that can no longer live in the wild. Programs are available upon request.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1883 125th St.<br />Hazleton, IA 50641<br />Buchanan County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.636.2617</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://buchanancountyparks.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mitchell Powerhouse and Dam",
            "lat": "43.318445",
            "lon": "-92.880975",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mitchell Powerhouse and Dam</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.318445,-92.880975\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The little powerhouse and dam at Mitchell are a reminder of the era of small-scale, private utilities that flourished in the early 20th Century before the advent of large, statewide or regional public power sources. It also represents a final chapter in Mitchell’s history as a community founded on, and for a time made prosperous through, the harnessing of water power. It was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCommercial St.<br />Interstate Park<br />Mitchell, IA 50461<br />Mitchell County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Sioux Rapids Area Historical Society Museum",
            "lat": "42.893347",
            "lon": "-95.149244",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buenavista-theater-nhr-siouxtheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sioux Rapids Area Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.893347,-95.149244\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux Rapids Area Historical Society maintains artifacts about the history off the Sioux Rapids Region Sioux Rapids region. The Sioux Theatre, built in 1946, was the only theatre within several miles. The theatre is also significant because it was designed by the firm of Wetherell and Harrison of Des Moines and is a great example of Post-WWII architecture. It closed in 1976, and was purchased by the Sioux Rapids Area Historical Society in 1985 for use as a museum. It was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t218 Main St<br />Sioux Rapids, IA 50585<br />Buena Vista County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.283.2165</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Douglas Center No. 5 Schoolhouse",
            "lat": "42.893329",
            "lon": "-95.149469",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Douglas Center No. 5 Schoolhouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.893329,-95.149469\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Douglas Center No. 5 Schoolhouse was built in 1879. The school remained in operation until the early 1940s. The school was purchased and moved by the Sioux Rapids Area Historical Society in 2001. The school still includes original books, desks, and writing slates. Hours are by appointment only.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210 Main St.<br />Sioux Rapids, IA 50585<br />Buena Vista County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Logan Center School No. 5",
            "lat": "43.039534",
            "lon": "-94.973364",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Logan Center School No. 5</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.039534,-94.973364\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Logan Township Center School was built in 1894. The school was one of the schools that was accessible without the use of an automobile. The one-acre tract of land, which includes the school, is now listed on the National Register of Historic Places.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t420th St.<br />Dickens, IA 51333<br />Clay County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Old Appanoose County Sheriff&#039;s Residence and Jail",
            "lat": "40.736906",
            "lon": "-92.873855",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/appanoose-historymuseum-appanoosecountyhistorical-sherriffhouse-jail.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Appanoose County Sheriff&#039;s Residence and Jail</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.736906,-92.873855\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Appanoose County Sheriff’s Residence and Jail was built in 1872, and is significant for its century of service as a county jail and because it illustrates Centerville’s importance as the seat of county justice. In the early years of Iowa, a jail facility often meant a single room within the sheriff’s own residence. The county jails became the location of prisoners convicted of misdemeanors and other minor crimes that were serving terms of less than one year. The need for larger jails became apparent. At that time, the counties began building proper jail facilities. These were usually located in the county seat community within a few block of the county courthouse. The most common type built in the state between 1840 and 1950 was the sheriff’s quarters/jail combination. In this type, the sheriff’s residence looked much like any other dwelling, but was physically attached to a wing containing the actual jail cells. County jails were viewed as important public buildings and usually given a place of prominence along a major street, just as this one is located north of the Courthouse Square on Main Street in Centerville. Visitors can also see an 1847 log cabin. The Appanoose County Sheriff’s Residence and Jail was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t527 N Main St.<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.856.8040</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Oxford Commercial Historic District",
            "lat": "41.723310",
            "lon": "-91.790615",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oxford Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.723310,-91.790615\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Oxford Commercial Historic District is a one and a half block district in the heart of the small country town of Oxford. The twenty commercial buildings line the town’s main street of Agusta Avenue and form the four corners of the town’s central intersection of Agusta and Main. The buildings are modest in scale and constructed primarily of red brick, with cornices decorated with pressed tin decorative work. The Oxford Commercial Historic District was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 E Main St.<br />Oxford, IA 52322<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Jensen Barn",
            "lat": "43.296846",
            "lon": "-94.481788",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/emmet-barn-jensenbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jensen Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.296846,-94.481788\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jensen Barn was built in 1938 by Ringsted carpenters Victor and Einer Ostedgaard for Danish immigrants Jens C. and Bertha Jensen. The barn housed dairy cattle, calves and horses, in addition to a hayloft able to hold some 7,000 hay bales. Harald Jensen, son of Jens and Bertha, purchased the farm in 1962 and with the assistance of his sons, David and Terrence, began restoring the barn and in 2003 were awarded a grant by the Iowa Barn Foundation to complete the work. Check the Iowa Barn Foundation annual tour schedule for a possible opportunity to tour the Jensen Barn.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2410 560th Ave.<br />Co. Rd. P12<br />Ringsted, IA 50578<br />Emmet County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Stratton House",
            "lat": "40.736107",
            "lon": "-92.871716",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stratton House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.736107,-92.871716\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Stratton House is significant because of its gothic revival architecture and its owner’s contributions to the community of Centerville. Jonathan F. Stratton was a surveyor, commissioner of highways and a Justice of the Peace. He established the first school in the northern part of the county, at which his wife taught. He also erected the first gristmill and in 1846 surveyed, platted and settled in the county seat. The Stratton House was added to the National Register of Historic Places in 1975.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t303 E Washington St.<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Appanoose County Courthouse",
            "lat": "40.734218",
            "lon": "-92.874145",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/appanoose-nhr-appanoosecountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Appanoose County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.734218,-92.874145\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This courthouse is locally significant as the historical focus of county government. Centerville was the center of government the community was assured of growth, both economically and population wise. The cornerstone was laid for the courthouse on May 21, 1903. The courthouse was designed by architects Smith and Gage and was built for a cost of $90,600. The style of the courthouse is somewhat eclectic as it combines medieval revivals with classical details. The clock tower rises from the middle of the courthouse and sets it apart from downtown Centerville. The Appanoose County Courthouse was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tVan Buren St. and N 12th St.<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Courthouse Square Historic District",
            "lat": "40.734032",
            "lon": "-92.874204",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Courthouse Square Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.734032,-92.874204\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Courthouse Square Historic District shows the importance of a county seat designation to the commercial development of a community. A community was virtually guaranteed prosperity if named the county seat. The Courthouse Square in Centerville is representative of popular commercial architectural design. Building of the courthouse in the center of the square ushered in a period of true commercial development around the Square. As people came to Centerville to transact their legal business at the courthouse, they would take advantage of the variety and number of stores providing goods and services around the Square. While other small communities offered general stores, groceries, schools, churches, and lodge halls, they could not offer the variety of goods commonly found in a larger town. The Courthouse Square was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCourthouse Square<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Continental Hotel",
            "lat": "40.733657",
            "lon": "-92.873093",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/appanoose-historichotel-thecontinentalhotel.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Continental Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.733657,-92.873093\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The historic Continental Hotel, centerpiece of &quot;The World&#039;s Largest Town Square&quot; was built in 1893. Famous (and infamous) people stayed there, including Booker T. Washington and Jesse James. By the 1990s, The Continental had fallen into complete disrepair. It has been renovated into executive suites, well-elderly apartments and one of Centerville&#039;s finest restaurant. The tenderloin is highly recommended by State Curator Jerome Thompson!</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t217 North 13th St.<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.437.1025</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://thecontinental.info/menu/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Appanoose County",
            "lat": "40.733882",
            "lon": "-92.873680",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Appanoose County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.733882,-92.873680\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Appanoose County Freedom Rock® in Centerville for Appanoose County features Francis Drake (Centerville native and former Governor of Iowa) as a Union Army brigadier general. Behind him is the first USS Iowa which was the first ship commissioned in honor of Iowa and saw substantial action in the Spanish–American War. The back side of the rock portrays a father hugging his daughter after returning from service. In the background is the Centerville Square. Over the top of the rock is the American Flag as if it was laid over the top twisted by the breeze. At the end of the flag is a gold star in honor of those lost and around the star are the seals of each military branch. The Appanoose County (Centerville) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN 13th St.<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Vermilion Estate",
            "lat": "40.727787",
            "lon": "-92.892745",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vermilion Estate</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.727787,-92.892745\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house, built in 1870, is an example of Italianate design and frame construction. Dunham and Jordan, the same architects who designed many Iowa courthouses, designed the home. The various outbuildings are authentic to a 19th century estate. The house was built for Dr. W. F. Vermilion who was a commissioned Captain in the Iowa infantry during the Civil War. After the War he was admitted to the bar and served one term as an Iowa State Senator. The Vermilion Estate was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tValley Dr.<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Drake Public Library",
            "lat": "40.732059",
            "lon": "-92.872273",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Drake Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.732059,-92.872273\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>By 1896, Centerville was becoming a bustling little city and needed a modern library. Leading citizens of Centerville proposed to make a request to the Carnegie Library Foundation. Prominent Centerville resident (and former Governor of Iowa) Francis Marion Drake was approached about endorsing the plan to request funds from the Carnegie Foundation, and he said that he could not support the request because he intended to give a library and books to the city. The Drake Public Library was dedicated on January 15, 1903. It is one of the most important examples of Francis Marion Drake’s benevolence in the community, and is a good example of Neo-classical design used for a public building. The Drake Public Library was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 Drake Ave.<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Majestic Theatre",
            "lat": "40.732649",
            "lon": "-92.873399",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/appanoose-theater-majestictheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Majestic Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.732649,-92.873399\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Majestic Theater opened on October 27, 1913 with a silent film. Admission was 10 cents for adults and five cents for children. By the mid-1920s, the Majestic had a full pipe organ, an orchestra pit and a piano for live performances and movies. The theater was renovated in the 1980s, and closed in 2004.The Majestic Theatre was completely renovated in to a multi-use facility featuring facilities for community theater, weddings and banquets.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 N 13th St.<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.437.1025</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.themajestictheater.info/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Otter Creek Bridge",
            "lat": "42.685996",
            "lon": "-91.947224",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-bridge-ottercreekbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Otter Creek Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.685996,-91.947224\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Otter Creek Bridge was built in 1917. The bridge is made of two concrete girder spans and was built using day labor for a cost of $5,153.38. The bridge was built according to an Iowa State Highway Commission plan. It was added to the National Register of Historic Places in 1989.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t40th St.<br />Oelwein, IA 50662<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Francis Drake Gravesite",
            "lat": "40.734848",
            "lon": "-92.864289",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/appanoose-govgravesite-marionfrancisdrake.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Francis Drake Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.734848,-92.864289\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Francis Marion Drake (December 30, 1830 – November 20, 1903) served as the 16th governor of Iowa from 1896-1898. He founded and endowed Drake University in Des Moines, Iowa. His gravesite is located at Oakland Cemetery in Centerville.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1005 E State St.<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Appanoose County Historical and Coal Mining Museum",
            "lat": "40.732348",
            "lon": "-92.874479",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Appanoose County Historical and Coal Mining Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.732348,-92.874479\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Appanoose County Historical Society and Coal Mining museum was opened in 1928 and features exhibits on coal mining within the county and the Mormon Trail. The museum is housed in the former U.S. Post Office building, designed in the Georgian/Federal revival style and completed in 1912. It was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 W Maple St.<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.856.8040</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://appanoosehistory.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Lamoni Coliseum",
            "lat": "40.623885",
            "lon": "-93.931733",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lamoni Coliseum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.623885,-93.931733\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98mi.</span></div>\n\t\t</div>\n\n\t\t<p>Opened in 1911, Lamoni Coliseum was a live performance venue. It was sold to Graceland University in 1925 - and they started showing movies on a single screen with a seating capacity of 463. In the 1950s the name was changed to the Collegian and has since changed back.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 N Maple St.<br />Lamoni, IA 50140<br />Decatur County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Arch of Remembrance",
            "lat": "40.734342",
            "lon": "-92.864820",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Arch of Remembrance</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.734342,-92.864820\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Arch of Remembrance at Oakland Cemetery was dedicated in 1923 and re-dedicated in 2009, following an extensive rehabilitation campaign led by Chapter D of the P.E.O. A bronze tablet on the arch memorializes the dead of Appanoose County, including Wayman Minor, the son of a coal miner. He served in World War I with Company A of the 366th Infantry Regiment, an all African-American combat unit, and was killed in France just hours before the the war ended on Nov. 11, 1918. He was buried at Saint Mihiel American Cemetery in northeast France.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE State St.<br />Oakland Cemetery<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Saints Peter and Paul Roman Catholic Church and Cemetery",
            "lat": "41.305389",
            "lon": "-92.005842",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Saints Peter and Paul Roman Catholic Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.305389,-92.005842\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Serving a parish dating to the early 1860s, the Saints Peter and Paul Roman Catholic Church is a fine example of architecture employing late Victorian Gothic stylistic details. The present church was built during the Golden Age of German culture in America which coincided with the nation’s Golden Age of farming across the Midwest. The parish was directly impacted by the devastation of World War I and increasing anti-foreign social prejudices and xenophobic groups campaigned hard against the previously large German culture in Keokuk County, eventually leading to the church ceasing conducting its services in German. During this period of intolerance, Clear Creek and German Township were re-drawn, carved into different townships and renamed, but the church still proudly stands. The Saints Peter and Paul Roman Catholic Church was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t30749 240th St.<br />Harper, IA 52231<br />Keokuk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sturdivant - Sawyer House",
            "lat": "40.728182",
            "lon": "-92.872049",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sturdivant - Sawyer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.728182,-92.872049\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sturdivant/Sawyer house represents the application of colonial revival stylistic elements to a large Italian villa type plan. It constitutes a major visual landmark and during J. L. Sawyer’s time in this house, it served as a medical clinic. Sawyer also served as the president of the Centerville National Bank. The house was originally constructed for Mary Drake Sturdivant as a wedding present and was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t707 Drake Ave.<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Liberty Hall",
            "lat": "40.624158",
            "lon": "-93.952032",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Liberty Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.624158,-93.952032\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Liberty Hall was built in 1881 to serve as headquarters for the reorganized Church of Jesus Christ of Latter Day Saints and for a time Joseph Smith resided here. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1300 W Main St.<br />Lamoni, IA 50140<br />Decatur County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Porter Hall",
            "lat": "40.728184",
            "lon": "-92.872992",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Porter Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.728184,-92.872992\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Porter Hall is a well kept example of early 20th century picturesque revival domestic architecture. It is an adaptation of the English medieval half-timber form with an overhanging second story. The interior of the home shows craftsman influence. The home was originally owned by Dr. Charles James, but is named for Claude R. Porter (1872-1946), who lived at the address from 1906-1909. Porter was a member of the Iowa General Assembly, United States Attorney and perennial Democratic runner-up to Republicans in three gubernatorial races and six races for US Senator. In that era, Republicans won so often in Iowa that Senator Jonathan P. Dolliver remarked: &quot;Iowa will go Democratic when Hell goes Methodist.&quot; Porter was serving in the State Senate during the years he lived at Porter Hall. Porter Hall was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t706 Drake Ave.<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Second Baptist Church",
            "lat": "40.729833",
            "lon": "-92.868102",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Second Baptist Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.729833,-92.868102\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Second Baptist Church congregation was organized in 1893 by African Americans. The building was constructed in 1902, and is significant for its association with a strong black community in a southern Iowa town. The wood-framed Second Baptist Church was designed in Gothic Revival style. By the 1920s, coal mining in southern Iowa was declining and church membership peaked at 125 people in the 1930s. World renowned opera singer (and Centerville native) Simon Estes first sang at age eight in the Second Baptist Church. The church was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t422 S 18th St.<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Taylor-Van Note House",
            "lat": "42.041987",
            "lon": "-91.728711",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Taylor-Van Note House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.041987,-91.728711\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Taylor-Van Note House exemplifies a simplified Midwestern interpretation of the Vernacular Greek Revival architectural style. The Taylor-Van Note House was built by Charles Taylor, and his family occupied it for 42 years. It is a documented example of the type of early settlement construction that was used during the era when balloon framing was the dominant mode of building. The house is located one mile from the point where Blair Ferry ran, beginning in 1854, and is on the road that leads directly to it. The Taylor-Van Note House was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4600 Blairs Ferry Rd.<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Sumner Bridge",
            "lat": "42.861357",
            "lon": "-92.081506",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sumner Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.861357,-92.081506\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sumner Bridge was constructed over the Wapsipinicon River in 1916. Fayette and Bremer Counties split the $7,058.00 cost of constructing the bridge because it was on the county line. The bridge is comprised of three concrete deck girder spans. Very few multiple span girder bridges were ever constructed, making the Sumner Bridge distinguishable. The Sumner Bridge was added to the National Register of Historic Places on June 25, 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t160th St.<br />Sumner, IA 50674<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Seminole Valley Farmstead Museum",
            "lat": "42.003523",
            "lon": "-91.727144",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Seminole Valley Farmstead Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.003523,-91.727144\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Seminole Valley Farmstead Museum is located in a bend of the Red Cedar River, surrounded by wooded hills. The buildings on the farm were built from 1902-1927 and include the farmhouse, summer kitchen, livestock barn, tool shed, icehouse, chicken house and smoke house. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1400 Seminole Valley Rd. NE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chickasaw County Courthouse",
            "lat": "43.060769",
            "lon": "-92.314659",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chickasaw County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.060769,-92.314659\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The courthouse is the historical focus of county government and of the political power. A community would derive prestige from their status as a county seat. As the center of county government, an Iowa county seat town was reasonably assured of economic and population growth. The present courthouse in Chickasaw County is the third county courthouse there. It was built of Bedford stone during 1929 and 1930 at a cost of about $134,000. It was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t8 E Prospect St.<br />New Hampton, IA 50659<br />Chickasaw County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Carnegie Cultural Center",
            "lat": "43.059630",
            "lon": "-92.312612",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carnegie Cultural Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.059630,-92.312612\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This former public library, built in 1909, features permanent exhibits of models and miniatures focusing on rural culture and small town life including Uncle Joe&#039;s Farm, Bob&#039;s Mini-machines, Paths and Power, the Railroad Room and Ben&#039;s Old Time Autos, Natvig Brother&#039;s Circus, Toy Town, Billy J&#039;s Clown Circus, Carts and Carriages and Jerry&#039;s World. New temporary exhibits arrive every 6-8 weeks.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t7 N Water Ave.<br />New Hampton, IA 50659<br />Chickasaw County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.394.2354</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://carnegieculturalcenter.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Farm House Bed and Breakfast/Engelbrecht Family Winery",
            "lat": "42.964442",
            "lon": "-92.186792",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Farm House Bed and Breakfast/Engelbrecht Family Winery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.964442,-92.186792\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>At the Farm House Bed and Breakfast, guests can enjoy a stay on a real working farm with animals, an 11-acre vineyard and a winery/shop. Children are welcome! Adults can enjoy free wine tasting daily of estate/fruit wines. Winery/vineyard tours are available with advanced notice. Guests love feeding calves, gathering the eggs, fishing in the farm pond, walking, running, biking or picnicking on the six mile nature trail adjacent to the B and B. Guests are served a real Farmer&#039;s Breakfast made with local products.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2866 270th St.<br />Fredericksburg, IA 50630<br />Chickasaw County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.237.5969</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"www.thefarmhousebb.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chicago, Burlington and Quincy Railroad: Centerville Depot",
            "lat": "40.723272",
            "lon": "-92.868164",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago, Burlington and Quincy Railroad: Centerville Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.723272,-92.868164\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chicago, Burlington and Quincy Railroad Depot was built in 1910. It illustrates the importance of the railroad to community development, and is an example of the types of buildings constructed in county seat towns. There is a caboose on site. The depot was added to the National Register of Historic Places in 2003 and currently is home to the Centerville VFW.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1124 S 18th St.<br />Centerville, IA 52544<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John Foley House",
            "lat": "43.064534",
            "lon": "-92.313684",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Foley House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.064534,-92.313684\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>John Foley was a State Senator who immigrated to America from Ireland. His home was built in the 1870s, and it was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t511 N Locust Ave.<br />New Hampton, IA 50659<br />Chickasaw County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Christ Sanctified Holy Church",
            "lat": "42.006604",
            "lon": "-91.722115",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a907b05856136687.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Christ Sanctified Holy Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.006604,-91.722115\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Christ Sanctified Holy Church was originally located in the Oakhill-Jackson Neighborhood of Cedar Rapids, but in 1974 the building was moved to Ushers Ferry Historic Village.\r\n\r\nThe church was built by Free Methodists in 1877 and sold to Reverend George Willis in 1919. Willis led the church until he died about 1937. For two decades, Hayward Darden served as pastor and then Willis&#039; daughter, Viola Gibson (1906-1989), led the church until it disbanded in 1973.\r\n\r\nGibson was active in the NAACP for decades, serving as the primary contact between the local chapter and state and national conferences.\r\n\r\nThe Cedar Rapids NAACP was very active particularly in the 1960s, aiming to decrease discrimination in housing and establishing a local human rights commission.\r\n\r\nAlthough a local elementary school that opened in 2002 is named for Gibson, the Christ Sanctified Holy Church is the building most connected to her time as a civil rights advocate.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5925 Seminole Valley Trail NE<br />Ushers Ferry Historic Village<br />Cedar Rapids, IA 52411<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Chicago, Rock Island and Pacific Railroad: Stone Arch Viaduct",
            "lat": "41.523971",
            "lon": "-95.436689",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-nhr-chicagorockislandpacificstonearchviaduct-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago, Rock Island and Pacific Railroad: Stone Arch Viaduct</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.523971,-95.436689\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>According to a 1883 report by the Chicago, Rock Island and Pacific Railroad listed only four 30&#039; arch culvert bridges -- the Shelby Chicago, Rock Island, and Pacific Railroad Stone Arch Viaduct bridge was one of them, and has been named the first railroad structure built in Shelby County. Most railroad bridges in Iowa were wood or timber, but limestone for the trestle was believed to have come from a quarry in Earlham, Iowa, not far from the railroads main line in that area. The Chicago, Rock Island and Pacific Railroad Stone Arch Viaduct was added to the National Register of Historic Placed in 1998. The arch is now accessed via the Rock Island Old Stone Arch Nature Trail and there is parking available on Hackberry Road.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRock Island Old Stone Arch Nature Trail<br />Hackberry Rd.<br />Shelby, IA 51570<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Ushers Ferry Historic Village",
            "lat": "42.006834",
            "lon": "-91.720383",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ushers Ferry Historic Village</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.006834,-91.720383\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Ushers Ferry Historic Village is an open-air museum that interprets life in a small Iowa town at the turn of the 20th century. The 10-acre site features 20 historic homes and businesses from 1855-1919. Ushers Ferry offers many special events and programs through the year that explore the lives of farmers and townspeople in the community 100 years ago.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5925 Seminole Valley Trl. NE<br />Cedar Rapids, IA 52411<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.286.5763</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.ufhv.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Hub City Heritage Railway Museum",
            "lat": "42.677784",
            "lon": "-91.917008",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-historymuseum-hubcityheritagerailwaymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hub City Heritage Railway Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.677784,-91.917008\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">99mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hub City Heritage Railway Museum is dedicated to encouraging and promoting the preservation and restoration of railroad memorabilia that is pertinent to the Oelwein area. Built in 1987, the museum has some of the largest railroad rolling stock that has been preserved, a Chicago, St Paul Minneapolis and Omaha SW1 #55 switch engine with its cast steel frame built in 1940, a Chicago Great Western EMD FP7 “F-unit” locomotive repainted in its original factory Chicago Great Western EMD colors, GW covered hopper plus other rolling stock, and a Minnesota Transfer 62 S1 diesel switcher locomotive built in 1941.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t26 2nd Ave. SW<br />Oelwein, IA 50662<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.283.1939</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://cgwo.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Oelwein Area Historical Society Museum",
            "lat": "42.666398",
            "lon": "-91.909672",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-historymuseum-oelweinareahistoricalsocietymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oelwein Area Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.666398,-91.909672\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">99mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Oelwein Area Historical Society Museum is the largest collection of historical artifacts in the Oelwein area. The museum has a plethora of exhibits including The Oelwein Room, a model classroom, The Delft Collection, a kitchen and music room, and many other exciting exhibits.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t900 2nd Ave. SE<br />Oelwein, IA 50662<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.283.3001</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-hotels.png",
            "title": "Hotel Mealey",
            "lat": "42.676811",
            "lon": "-91.913652",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-nhr-hotelmealey.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-hotels.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Mealey</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.676811,-91.913652\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">99.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hotel Mealey is a well preserved, elegant Late 19th Century work of architecture. It was built in 1898 by the Marvel and DeMoney firm and it was added to the National Register of Historic Places in 1983. The building has been converted to senior apartments.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 S Frederick Ave.<br />Oelwein, IA 50662<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Carrie Lane Chapman Catt Historic Marker",
            "lat": "43.445233",
            "lon": "-93.354467",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carrie Lane Chapman Catt Historic Marker</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.445233,-93.354467\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">99.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Mrs. Catt began her career as a leader of the women&#039;s suffrage movement while Superintendent of Schools and newspaper editor in Mason City, after attending elementary and secondary school in Charles City, and Iowa State College in Ames. In 1886, she organized a house-to-house survey which showed that all but 10 Mason City women favored enfranchisement, a statistic she often cited in her later work. She became Secretary of the Iowa Woman Suffrage Association and organized campaigns in several other states during the 1890s, winning the vote for women in Colorado and Idaho, but losing in others, notably Iowa. \r\n \r\n In 1900 Mrs. Catt was elected President of the National Woman Suffrage Association, a post she held until 1904, and from 1915 to 1938. She also founded the International Woman Suffrage Alliance, lectured throughout the world, and after ratification of the 19th Amendment, founded the League of Women Voters. Mrs. Catt held offices in the women&#039;s rights movement for 51 years and received numerous foreign and domestic awards, including Woman of the Year in 1940.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4705 Wheelerwood Rd.<br />Top of Iowa Welcome Center<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Historic Northern Iowa Historic Marker",
            "lat": "43.445233",
            "lon": "-93.354467",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Historic Northern Iowa Historic Marker</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.445233,-93.354467\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">99.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Northern Iowa landforms result from the action of 3 separate glacial ice sheets. Clear Lake, south of here, is one of the many Iowa lakes formed by glacial action. Pilot Knob, a glacially formed hill west of here, is one of highest points in northern Iowa and was used as a landmark by early travelers. \r\n \r\nMuch of the Western two-thirds of Iowa was prairie when the first settlers arrived. Pioneers in this area travelled through grasses 5 to 7 feet tall. Many of them referred to this experience as &quot;a voyage through an ocean of grass.&quot; A remnant of this prairie may be seen at the Hayden Preserve near Lime Springs, about 50 miles east of here. \r\n \r\nOne noteworthy Iowan, born in Cresco in 1914, is Norman Borlaug, recipient of the 1970 Nobel Peace Prize and many other international awards for his work in increasing world wheat production. Another northern Iowan of note is Hamlin Garland (1860-1940), acclaimed for his novels of late 19th century farm life. Garland wrote over 30 novels, including a Pulitzer Prize winner, A Daughter of the Middle Border.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4705 Wheelerwood Rd.<br />Top of Iowa Welcome Center<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Alfred Hanson House",
            "lat": "42.683512",
            "lon": "-91.913029",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-nhr-alfredhansonhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alfred Hanson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.683512,-91.913029\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">99.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Alfred Hanson House incorporates basic elements of the Neo-colonial style into an eye-pleasing design. The house was designed in 1904 by well-known architect Harry E. Netcott. The Hanson House was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t403 N Frederick Ave.<br />Oelwein, IA 50662<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Cedar Rock: The Walter House",
            "lat": "42.406248",
            "lon": "-91.770228",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cedar Rock: The Walter House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.406248,-91.770228\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">99.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lowell Walter amassed a fortune as the owner of the Iowa Road Building company, where he invented an asphalt topping for gravel roads. In 1947, Walter contacted famed architect Frank Lloyd Wright about building a home for he and his wife. The Walter House, Cedar Rock, was one of Wright&#039;s most complete designs. Nearly everything at Cedar Rock bears the architect&#039;s imprint. Wright designed the furniture, selected the carpets, chose the draperies and even picked out the accessories. Cedar Rock was begun in 1948 and completed in 1950. It&#039;s roof and floors are concrete; the walls are brick, glass and walnut. When Walter died in August 1981, he and his wife Agnes left their dream home to the Iowa Conservation Commission (now known as the Iowa Department of Natural Resources) and the people of Iowa. Cedar Rock is one of nine Wright designed residences in Iowa. There is also a bank and hotel designed by Frank Lloyd Wright in the state. Of all the Wrights designs in Iowa, Cedar Rock is the only home chosen by Wright to bear his coveted signature tile.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2611 Quasqueton Diagonal Blvd.<br />Independence, IA 50644<br />Buchanan County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.934.3572</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Quasqueton Area Historical Society",
            "lat": "42.394574",
            "lon": "-91.761401",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Quasqueton Area Historical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.394574,-91.761401\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">99.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Quasqueton Area Historical Society is located in the historic State Savings Bank, the only remaining portion left of the original Brick Block on Main Street. The society&#039;s museum has numerous historic displays on topics including, blacksmiths, railroad, funeral home, medicine, education, veterans and more. The building was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t105 Water St. N<br />Quasqueton, IA 52326<br />Buchanan County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.east-buc.k12.ia.us/quas/Qhist/home.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "State Savings Bank - Quasqueton",
            "lat": "42.394331",
            "lon": "-91.761229",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">State Savings Bank - Quasqueton</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.394331,-91.761229\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">99.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The State Savings Bank was constructed in 1852 as a three story warehouse and commercial sales building. The building was substantially altered in 1902 when the height was lowered to two stories, window openings updated, sashes replaced and a new brick facade was built. This is the only brick commercial building that survives from a time when Quasqueton was an area trading center. It was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t103 N Water St.<br />Quasqueton, IA 52326<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Des Moines River Bridge",
            "lat": "43.345175",
            "lon": "-94.442756",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines River Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.345175,-94.442756\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">99.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Des Moines River Bridge was constructed in 1916 at a cost $7,150. Other than maintenance-related repairs, the bridge remains essentially unaltered as it continues to carry vehicular traffic. The Des Moines River Bridge retains a high degree of integrity of location, design, setting, materials, workmanship, feeling and association. The Des Moines River Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2105 580th Ave.<br />Swea City, IA 50590<br />Kossuth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lustron Home No. 02102",
            "lat": "41.968749",
            "lon": "-91.700598",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-lustronhomeno.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lustron Home No. 02102</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.968749,-91.700598\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">99.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Erected in 1950, Lustron Home #02102, is locally significant as one of the nine surviving Lustron Homes known to have been assembled in Cedar Rapids. Statewide, it is one of 143 known examples erected in Iowa. It is significant as an example of the Lustron Corporation&#039;s innovative contributions to the prefabricated housing industry and its efforts to incorporate modern architecture and the latest domestic technologies into the lives of everyday Americans. The Lustron Home #02102 was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2009 Williams Blvd. SW<br />Cedar Rapids, IA 52404<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Shelby Consolidated School",
            "lat": "41.516734",
            "lon": "-95.458519",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/shelby-nhr-shelbyconsolidatedschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Shelby Consolidated School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.516734,-95.458519\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">99.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Shelby Consolidated School is a good example of consolidated school design and the work of John Latenser and Sons, an architectural firm based in Omaha, Nebraska. Shelby Consolidated School typifies the consolidated school building built in Iowa in the boom years immediately after World War I. As such, Shelby Consolidated School incorporates many of the features advocated by state officials, as well as prominent school architects and education professionals that made the consolidated rural school unique in school architectural design. The school is a three-story, U-shaped Classical Revival-inspired building -typifies the many well planned school buildings that was used in the early twentieth century. Additionally, the school is the best, and largest, example of Classical Revival in Shelby County. The Shelby Consolidated School was added to the National Register of Historic Places in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t304 Western Ave.<br />Shelby, IA 51570<br />Shelby County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Hickory Grove No. 4 School",
            "lat": "41.554892",
            "lon": "-91.809897",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hickory Grove No. 4 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.554892,-91.809897\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">99.9mi.</span></div>\n\t\t</div>\n\n\t\t\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1195 520th St. SW<br />Wellman, IA 52356<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Chief Wapello Memorial Park",
            "lat": "40.991688",
            "lon": "-92.292947",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-heritagearea-chiefwapellomemorialpark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chief Wapello Memorial Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.991688,-92.292947\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chief Wapello Memorial Park is on the site of the Indian Agency that became the home of the Sauk and Meskwaki (Fox) tribes. They were relocated by the United States after the Black Hawk War of 1832. General Joseph M. Street was appointed the Indian Agent, a US designated official that interacted with Native Americans on the governments behalf, and settled with his family on the agency. He earned the respect of the Meskwaki chief Wapello and the two became very good friends. When Street died in 1840 he was buried on the agency and the Meskwaki tribe gave property to his wife so she and her family could make a living. Two years later Wapello died and was buried next to General Street.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t8218 Highway 34<br />Agency, IA 52530<br />Wapello County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.937.5720</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Hanover Historical Society and Village",
            "lat": "42.705558",
            "lon": "-95.376134",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hanover Historical Society and Village</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.705558,-95.376134\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hanover Historical Society is in charge of protecting and displaying the history of Hanover. They operate the Hanover Historical Village, a collection of historical buildings that give an in depth look at the day to day lives of 18th and 19th century Hanover. They also have a replica farm with a working mill.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t162 560th St.<br />Aurelia, IA 51005<br />Cherokee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.434.5416</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Otto Family Barn",
            "lat": "42.605735",
            "lon": "-95.439459",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Otto Family Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.605735,-95.439459\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn, built in 1904, is part of pioneer Henry J. Otto&#039;s 1884 homestead. This early leader in the Hanover community had 16 children. It is the 24 remaining cousins, of the original 64, who wanted to preserve their grandfather&#039;s barn. The barn was used for work horses, cattle and hay storage.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2241 630th St.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "South Shell Rock Lutheran Church and Cemetery Site",
            "lat": "43.444033",
            "lon": "-93.241662",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">South Shell Rock Lutheran Church and Cemetery Site</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.444033,-93.241662\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The South Shell Rock Lutheran congregation was organized by Rev. C. L. Clausen in 1869. The church was erected on &quot;Rustad Bakke&quot; and dedicated in 1875. The church was destroyed by fire in 1920, however the cemetery marks the site where the church once stood. This historic marker was placed by the Worth County Sesquicentennial Commission in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t820 County Rd. 105<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Machinery Museum",
            "lat": "43.443557",
            "lon": "-93.226430",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Machinery Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.443557,-93.226430\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Machinery Museum was built in 1989 on the former site of the Charles Wordall Saw Mill, A. J. Dwelle Grist Mill and old Ice House. The museum houses antique farm machinery including a horse mower, threshing machine, high wheel wagon, walking plow, gang plow, oats binder, corn binder and more.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCentral Ave and 4th St.<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.324.1180</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.worthhistory.org/index.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Old Creamery Museum",
            "lat": "43.443864",
            "lon": "-93.225757",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Creamery Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.443864,-93.225757\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old Creamery Museum dates to 1892 and operated as a creamery until about 1950. The museum includes antique tools, creamery equipment and a working print shop.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCentral Ave and 4th St.<br />Swensrud Park<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.324.1180</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.worthhistory.org/index.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Pixley Log Cabin",
            "lat": "43.443609",
            "lon": "-93.225426",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pixley Log Cabin</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.443609,-93.225426\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Gladys Pixley Memorial Log House was built in 1858 in Silver Lake Township by James Randall. The Randall family resided in the house for 16 years before moving to Northwood. The house was moved to its present site in 1981 and restored to its original condition with the addition of a native limestone fireplace.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCentral Ave and 4th St.<br />Swensrud Park<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.324.1180</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.worthhistory.org/index.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Belmont Hill",
            "lat": "41.980738",
            "lon": "-91.692246",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Belmont Hill</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.980738,-91.692246\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Philip Wolff House and Carriage House</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1525 Cherokee Dr. NW<br />Cedar Rapids, IA 52405<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.366.1343</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.belmonthill.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "James Michels Barn",
            "lat": "42.603196",
            "lon": "-91.844382",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buchanan-barn-jamesmichelsbarn-2.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James Michels Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.603196,-91.844382\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This is a redwood tongue and groove barn, measuring 40x80 feet. It was built in 1947 for the family&#039;s Angus cattle operation. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1278 Mason Ave.<br />Hazleton, IA 50641<br />Buchanan County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lee Shay House",
            "lat": "40.686710",
            "lon": "-94.382691",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lee Shay House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.686710,-94.382691\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lee Shay House reflects the prosperity enjoyed by rural Iowans at the close of the &quot;Golden Age of Agriculture&quot;. Built in 1919-1920, right before farm prices plummeted in 1921, it was designed by Kraetsch and Kraetsch and influenced by the popular Tudor Revival style more commonly found in urban areas. The house was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t248th St.<br />Maloy, IA 50852<br />Ringgold County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Worth County Historical Society Museum and Courthouse",
            "lat": "43.443756",
            "lon": "-93.218690",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Worth County Historical Society Museum and Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.443756,-93.218690\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Worth County Historical Society Museum was built in 1879 as the Worth County Courthouse. This courthouse was built in the Italianate style and was one of only a few courthouses in the state built in this style. A new courthouse was built across the street in 1893 and the former courthouse was then used as a high school for more than 20 years and later as a public library. The Worth County Historical Society Museum opened on July 4, 1973. The museum includes special displays and demonstrations significant to local history, dioramas reminiscent of the late 1800s, clothes of the period, quilts and other memorabilia of the Italianate-style building housing. It was added to the National Register of Historic Places on July 2, 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t921 Central Ave.<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.324.1180</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.worthhistory.org/index.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Worth County Courthouse Cannon",
            "lat": "43.444433",
            "lon": "-93.218300",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Worth County Courthouse Cannon</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.444433,-93.218300\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This cannon was cast during the Civil War years by the Northwood Foundry which was once located on the north bank of the Shell Rock River. It is an 8-inch Columbiad, Model of 1861, commonly called a &quot;Rodman&quot; after its inventor, Thomas Rodman. The gun was designed for use in seacoast fortifications.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 Central Ave.<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Northwood Central Avenue Historic District",
            "lat": "43.444026",
            "lon": "-93.222259",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/worth-nhr-northwoodcentralavehistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Northwood Central Avenue Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.444026,-93.222259\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Northwood Central Avenue Historic District played a significant role of early industry, commerce and settlement resulting in the development of the town of Northwood. The first plat of the city was completed in 1857, establishing the plan upon which the commercial district would rise. The European era of the history of Northwood began with the arrival of Worth County’s first white settlers in 1853. The Norwegians brought their conservative nature and their farming skills with them and found great success on the plains of Worth County; grains, specifically wheat, corn, barley, and oats were the first crops planted in the fertile soil surrounding Northwood. The historic district, comprised of Central Avenue from 5th Street to 9th Street, was added to the National Register of Historic Places on Sept. 19, 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCentral Ave.<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Northwood Theatre Building",
            "lat": "43.443913",
            "lon": "-93.220532",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Northwood Theatre Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.443913,-93.220532\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The two-story J.B. Thompson Building was built in downtown Northwood in 1891 for use as a general store and bakery. The historic building underwent a six-year renovation to utilize the building as a theatre. On August 28, 2009, the work was completed and the Northwood Theatre opened. A marquee was added in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t740 Central Ave.<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.324.0064</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.northwoodtheatre.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Swensrud School (Grove Township No. 5)",
            "lat": "43.443614",
            "lon": "-93.218689",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Swensrud School (Grove Township No. 5)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.443614,-93.218689\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grove Township District School No.5 (The Swensrud School) was built in 1874 by William G. Stott on the John McQuatters farm northeast of Northwood in Grove Township. In 1890 the schoolhouse was moved one section north and was moved to its present location in 1972. The museum is one of Worth County Historical Society&#039;s sites and includes original desks, a pot-bellied stove and old school books.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10th St. S<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.324.1180</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.worthhistory.org/index.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First Lutheran Church",
            "lat": "43.380070",
            "lon": "-92.925535",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Lutheran Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.380070,-92.925535\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The significance of the First Lutheran Church rests on both historical and architectural grounds. It is historically important for its association with an outstanding pioneer leader of Norwegian immigrants in the Midwest, Pastor C. L. Clausen, who founded St. Ansgar. Architecturally, the 1868 limestone building is a good example of vernacular Gothic Revival style. Two of its most distinguishing features are the lancet windows on the side of the church that are set in recessed panels, and the bottom edge of the cornice that contains a Gothic arch motif construction. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t212 N Main St.<br />Saint Ansgar, IA 50472<br />Mitchell County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Worth County Courthouse",
            "lat": "43.444413",
            "lon": "-93.217750",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Worth County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.444413,-93.217750\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The current Worth County Courthouse was built in 1893 and resembles Victorian Romanesque architecture. The 1893 courthouse was built as a replacement for the small two-story brick courthouse constructed in 1880. The courthouse was remodeled and expanded in 1938 and again in 1990. The 1990 addition included a new jail, courtroom and offices. It was added to the National Register of Historic Places on July 2, 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 Central Ave.<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "St. Ansgar Heritage Museum",
            "lat": "43.378289",
            "lon": "-92.919638",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Ansgar Heritage Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.378289,-92.919638\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The St. Ansgar Heritage Museum houses a collection of memorabilia of St. Ansgar&#039;s history.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t126 W 4th St.<br />St Ansgar, IA 50472<br />Mitchell County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.713.2416</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mother Mosque of America - Islamic Cultural and Heritage Center",
            "lat": "41.986344",
            "lon": "-91.684298",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-mothermosqueofamerica.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mother Mosque of America - Islamic Cultural and Heritage Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.986344,-91.684298\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mother Mosque of America - Islamic Cultural and Heritage Center of America was built in 1934, as a place of worship for Muslim immigrants. The Center replaced the Rose Fraternity Lodge, and became the first permanent Mosque in the United States. This small structure served as a place of worship for Muslims for nearly forty years. When a larger local mosque, the Islamic Center of Cedar Rapids, was built in 1971, the building was sold. Successive owners over the next twenty years allowed the building to fall in to disrepair. In 1990 the Islamic Council of Iowa purchased the building, refurbished it, and restored it as a Muslim cultural center. It was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1335 9th St. NW<br />Cedar Rapids, IA 52405<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.366.3150</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"www.robertcoates.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Irwin Barn",
            "lat": "41.011300",
            "lon": "-92.248320",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Irwin Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.011300,-92.248320\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Even in depression times, when the Irwin Barn was built, the family used more expensive three-pin construction for the beams rather than standard two-pin construction. The barn has a three-hip roof or three level roof. The Barn is near Yaapa flag station on old narrow gauge track. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4563 85th St.<br />Batavia, IA 52530<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Gold Star Gravesite - Elmer Swensrud",
            "lat": "43.456465",
            "lon": "-93.260785",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gold Star Gravesite - Elmer Swensrud</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.456465,-93.260785\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Private Elmer Swensrud was born on the family homestead near Gordonsville on Dec. 27, 1889. He and his brother farmed and worked as carpenters. Swensrud entered the service on Sept. 20, 1917, and spent time at Camp Dodge and Camp Pike. He was with the 87th Division when it sailed for France in June of 1918. Tragically, Swensrud was killed on Oct. 3, 1918, when he was returning from the front lines with a group of German prisoners he had helped to capture. His remains were returned home to Worth County, and he is buried in the family plot at the North Shell Rock Cemetery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. A15<br />North Shell Rock Cemetery<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "F. W. Kent Park",
            "lat": "41.735554",
            "lon": "-91.722737",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">F. W. Kent Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.735554,-91.722737\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The 1,082-acre park features a Conservation Education Center with hands-on exhibits that connect visitors with nature. Panels in the open-air Knight Prairie Pavilion interpret the connection of prairies to agriculture. An 84-site campground, shower house, playgrounds, picnic shelters, hiking trails, eight historic bridges, native and re-created prairies, forests, wetlands, 27-acre lake, beach and fishing ponds combine to make this an outstanding park.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2048 Hwy. 6 NW<br />Oxford, IA 52322<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.645.1011</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.johnson-county.com/conservation\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cedar Rapids Pump Company Factory and Warehouse",
            "lat": "41.979916",
            "lon": "-91.680768",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-cedarrapidspumpcompanyfactoryandwarehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cedar Rapids Pump Company Factory and Warehouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.979916,-91.680768\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cedar Rapids Pump Company Factory and Warehouse is considered locally significant in its association with the history of industry in Cedar Rapids. The building was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t605 G Ave. NW<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Garner No. 3 School",
            "lat": "41.286281",
            "lon": "-95.327264",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Garner No. 3 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.286281,-95.327264\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Garner No. 3 Schoolhouse was built in 1878. Fully restored, the school features a traditional coatroom, which contains authentic 1800&#039;s lunch pails. Completely furnished with nothing dated past 1910, the wooden desks lined on runners face the black slate boards and teachers desk, which displays the hand bell and, of course several school books. The school also has a black cast iron potbelly stove in the center of the room that was the only source of heat at the time.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t18807 450th St.<br />Oakland, IA 51560<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Smith Creek School",
            "lat": "41.469167",
            "lon": "-91.836023",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Smith Creek School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.469167,-91.836023\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Smith Creek School is maintained as a museum by the Wellman Historical Society. The school building hosts special events, including old-fashioned country school classes and a Grandparents&#039; Day program. The building is also used for special meetings of area clubs.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t7th Ave.<br />Wellman Historical Park<br />Wellman, IA 52356<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.653.4329</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Carstens 1880 Farmstead",
            "lat": "41.483061",
            "lon": "-95.459023",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-carstens1880farmstead.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carstens 1880 Farmstead</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.483061,-95.459023\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Originally belonging to a German immigrant, this farmstead dates back to 1871 when Johan Carstens gave up his career as a mason in Milwaukee, Chicago and Davenport to begin a new venture in farming further west. The Carstens 1880 Farmstead was added to the National Register of Historic Places in 1979 and is now an 80-acre working farm dedicated to the preservation and display of agricultural equipment and the celebration of Iowa&#039;s farm history. The farmstead has a vast collection of antique farm equipment, and it offers demonstrations and special events showcasing the rich history of agriculture in Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t32409 380th St.<br />Shelby, IA 51570<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.544.2404</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://carstensfarm.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Brooke Creek Bridge",
            "lat": "42.836346",
            "lon": "-95.285954",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brooke Creek Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.836346,-95.285954\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Brooke Creek Bridge was built in 1909 by W.A. Barns after being designed by George K. McCollough. It carries a gravel-surfaced county road over Brooke Creek, a branch of the Little Sioux River. It still carries traffic. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t470th St.<br />Sioux Rapids, IA 50585<br />Buena Vista County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Wellman Heritage Museum",
            "lat": "41.464499",
            "lon": "-91.837667",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wellman Heritage Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.464499,-91.837667\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Learn about the history of Wellman through photographs, newspaper articles and artifacts at the Heritage Museum. Visitors interested in researching the people and places of Wellman will enjoy displays about Wellman&#039;s early families, high school yearbooks, family histories, obituaries and more. The museum has special areas devoted to the Maplecrest Turkey Plant and Wassonville. For more history visit Heritage Park for a look at the Smith Creek School, magistrate office, carriage house and mortuary. The museum has limited hours so check out its website before visiting.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t228 8th Ave.<br />Wellman, IA 52356<br />Washington County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Round Barn, Norway Township",
            "lat": "43.489653",
            "lon": "-93.598171",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Round Barn, Norway Township</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.489653,-93.598171\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This round barn in Norway Township is one of eighteen similar round barns to have been supplied by the Johnson Brother&#039;s Clay Works of Webster County. The design is similar to the Johnston Brother&#039;s 1910 promotional barn. This barn is specifically characterized as a Johnston Brothers&#039; sub-type by its exterior wall of small clay tile in the lower story and larger tile above. The conical roof is another common feature of the Johnston Brothers&#039; design. The clay tile exterior wall and silo wall generally classify this barn as an Iowa Agricultural Experiment Station/Matt King influenced type. The use of structural clay tile was one of the later improvements in the history of round barns, believed to have been introduced around 1910. The barn was added to the National Register of Historic Places on March 6, 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t19960 500th St.<br />Norway Township<br />Scarville, IA 50473<br />Winnebago County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "McLean Museum and Dougal House",
            "lat": "41.854081",
            "lon": "-95.597986",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-historymuseum-mcleanmuseum-dougalhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McLean Museum and Dougal House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.854081,-95.597986\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The McLean Museum and Dougal House is a collection of three museum buildings all owned and operated by the Dunlap Historical Society. The McLean Museum opened in 1988 in an old Baptist church. The church has exhibits featuring plat books and records, and a square grand piano that once was played in the Dunlap Opera House. The Dougal House was once the parsonage for the church and was purchased in 1991, and holds a gasoline stove, pump organ, household utensils, clothing, and furniture. Finally, the Dunham Barn is one of the oldest brick barns in Iowa and is on the National Register of Historic Places.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t800 Iowa Ave.<br />Dunlap, IA 51529<br />Harrison County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.643.5908</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "I.O.O.F. Hall",
            "lat": "41.854489",
            "lon": "-95.601181",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-nhr-ioofhall-dunlap.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">I.O.O.F. Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.854489,-95.601181\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dunlap I.O.O.F. Hall was built in 1892 for local members of the Independent Order of Odd Fellows, one of Dunlap&#039;s oldest fraternal organizations. The building is a well-preserved example of fraternal lodge building design common in rural Midwest towns in the early 1900s. It was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t613 Iowa Ave.<br />Dunlap, IA 51529<br />Harrison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First Avenue Bridge",
            "lat": "41.977401",
            "lon": "-91.671225",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-bridge-nhr-firstavenuebridge-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Avenue Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.977401,-91.671225\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First Avenue Bridge over the Cedar River and part of the original Lincoln Highway was constructed in 1920, at a time when counties and states were improving their portions of the coast-to-coast route. The bridge was an open spandrel arch bridge, designed by the Marsh Engineering Company of Des Moines. By 1965, much of the bridge was crumbling. Iowa native and bridge engineer Ned Ashton developed a plan to save the original bridge foundation and arches, yet still rebuild the bridge from the arches up. The First Avenue Bridge was listed on the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t70 1st Ave. Bridge<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Highwater Rock",
            "lat": "41.978215",
            "lon": "-91.671560",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Highwater Rock</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.978215,-91.671560\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Highwater Rock is a natural feature which served as an informal, but accurate, gauge for the depth of the Cedar River at Cedar Rapids from the 1840’s to the close of steam navigation in the mid-1860’s. Used around 1840 by early settlers, the rock determined the level of water to see if it was safe to cross. After a toll bridge and a ferry service was created, people continued using the rock to cross the river to avoid paying the toll fee or for the ferry. Highwater Rock was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st Ave. Bridge<br />Cedar River<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "People&#039;s Saving Bank",
            "lat": "41.974461",
            "lon": "-91.672073",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">People&#039;s Saving Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.974461,-91.672073\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Peoples’ Savings Bank was the second of a series of small Midwestern banks designed by Louis Sullivan between 1907 and 1919. It exhibits many of the hallmarks of Sullivan’s art as an architect in “bringing the block to life in different ways through geometry and ornament”. The People&#039;s Saving Bank was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 3rd Ave. SW<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Mays Island Historic District",
            "lat": "41.975514",
            "lon": "-91.670009",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-maysislandhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mays Island Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.975514,-91.670009\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mays Island Historic District, on a 1,250-foot long island on the Cedar River, has been the governmental center of Cedar Rapids and Linn County ever since 1920, when the county seat was moved from its original location at Marion. The Linn County Courthouse and (former) jail, completed in 1925, established Mays Island as the &quot;government island.&quot; The Veterans Memorial Building was completed in 1927 in a fashion that would &quot;perpetuate ... the spirit of those men who went and did not come back,&quot; according to the Cedar Rapids Gazette of May 18, 1925. That spirit is conveyed through a memorial stained-glass window by Grant Wood, which features a female figure looking down upon six life-size soldiers, each dressed to represent the six wars the country had fought so far: Revolutionary War, War of 1812, Mexican War, Civil War, Spanish American War and World War I. The window is made of about 10,000 pieces of glass and was restored after the Flood of 2008. The Mays Island Historic District was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t50 3rd Ave. Bridge<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Battle Hill Historic Marker",
            "lat": "42.325549",
            "lon": "-95.581024",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Battle Hill Historic Marker</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.325549,-95.581024\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Battle Hill Historical Marker is a bronze tablet on a large boulder. The tablet was cast in 1926, but the marker was not dedicated until 1941. In 1849, a fierce battle took place between a group of government surveyors and Sioux Indians. The creek and the town took the name Battle Creek, and a marker was erected to remember the event.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA Hwy. 175<br />North side of road, about a mile east of Battle Creek<br />Battle Creek, IA 51006<br />Ida County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Geschke Barn",
            "lat": "43.106921",
            "lon": "-92.296796",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Geschke Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.106921,-92.296796\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn, built on a hill on US Highway 63, was built in the 1940s.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1744 McCloud<br />New Hampton, IA 50659<br />Chickasaw County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hotel Roosevelt",
            "lat": "41.979164",
            "lon": "-91.668641",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-hotelroosevelt.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Roosevelt</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.979164,-91.668641\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hotel Roosevelt is an architecturally significant representation of the modern commercial hotel movement. It is also a good local example of Georgian Revival stylistic interpretation of the Classical Revival influence in commercial architecture of the early 20th century. The Hotel Roosevelt was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 1st Ave. NE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Cedar Rapids Downtown District",
            "lat": "41.978497",
            "lon": "-91.666687",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cedar Rapids Downtown District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.978497,-91.666687\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cedar Rapids Downtown District is located on the banks of the Cedar River. The district is a hub of industry and holds a cornucopia of different businesses.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t222 3rd Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.398.0449</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John R. Wheeler, Jr. House",
            "lat": "41.851129",
            "lon": "-95.603236",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-nhr-johnwheelerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John R. Wheeler, Jr. House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.851129,-95.603236\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John Wheeler Jr. House, built in 1897, is believed to be one of the largest and best preserved examples of Colonial Revival architecture in Harrison County. It is typical of this eclectic style, with Georgian, Adamnesque, Classical Greek, and Queen Anne influences. It was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t407 S 3rd St.<br />Dunlap, IA 51529<br />Harrison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hach Building",
            "lat": "41.975109",
            "lon": "-91.667258",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-hachbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hach Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.975109,-91.667258\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hach Brothers Building is architecturally significant as a surviving warehouse building from the developing agricultural economy of the late 19th and early 20th century. This building is a very good representative of a commercial warehouse associated with the expanding business to regionally market agricultural machinery for a prospering farm economy. It was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 1st St. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowa Wind Mill and Pump Company Office and Warehouse",
            "lat": "41.971626",
            "lon": "-91.667893",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Wind Mill and Pump Company Office and Warehouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.971626,-91.667893\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Wind Mill and Pump Company Office and Warehouse is locally significant for its association with the industrial history of the west side of Cedar Rapids along the banks of the Cedar River. It is one of two extant historic pump companies that played an important role in Cedar Rapids&#039; late 19th to early 20th century industrial history, particularly in its role in Iowa&#039;s agricultural development The Iowa Windmill and Pump Company Office and Warehouse was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t42 7th Ave. SW<br />Cedar Rapids, IA 52404<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Paramount Theater, Cedar Rapids",
            "lat": "41.976827",
            "lon": "-91.667136",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-theater-paramount.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Paramount Theater, Cedar Rapids</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.976827,-91.667136\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Paramount Theater, originally the Capitol Theater, was probably one of the last of the opulent vaudeville movie houses to be built, and is an excellent example of the unique architectural style. The theater is large, having a present capacity of more than 1,900 persons. When it opened Sept. 1, 1928, the intention was that its program would be a mixture of motion pictures and stage acts, but within a year switched over entirely to movies. The theater has presented vaudeville acts, motion pictures, elaborate shows, organ concerts, cultural performances and reputedly, travelogues and newsreels. The Paramount Theater Building was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t123 3rd Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Security Building",
            "lat": "41.977695",
            "lon": "-91.667815",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-securitybuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Security Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.977695,-91.667815\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Security Building was built in 1908 in the downtown Cedar Rapids and is a significant example early 20th century high rise construction. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t203 2nd St. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Theatre Cedar Rapids",
            "lat": "41.979358",
            "lon": "-91.667045",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-theater-theatrecedarrapids.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Theatre Cedar Rapids</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.979358,-91.667045\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>For 80 seasons, Theatre Cedar Rapids has been a part of the cultural landscape of Cedar Rapids. As the business and cultural renaissance of downtown Cedar Rapids accelerates, Theatre Cedar Rapids role becomes more influential not only in Cedar Rapids but the Corridor and Eastern Iowa. Theatre Cedar Rapids is devoted to bringing quality, exciting cultural experiences and programs to the area. This evolves the performing arts into a catalyst that helps build diverse communities that enrich the lives of all Eastern Iowans. With a future-forward attitude Theatre Cedar Rapids continues to present the known, beloved and the evergreen, but also delivers new and challenging experiences to meet the tastes of an expanding younger community, continuing to earn its reputation as a cultural leader. The theater was built as the Iowa Theatre in 1928 as a vaudeville house. The building was originally occupied by a dance hall that was converted into the theater auditorium. The Iowa Theatre showed vaudeville shows until 1930, when it was made into exclusively a movie theater.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 3rd St. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.366.8591</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.theatrecr.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cedar Rapids Post Office and Public Building",
            "lat": "41.978415",
            "lon": "-91.666187",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-postofficeandfedbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cedar Rapids Post Office and Public Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.978415,-91.666187\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cedar Rapids Post Office and Federal Building (1908) is an elaborate example of the Renaissance Revival style in downtown Cedar Rapids. The present building attests to the faulty construction of its predecessor, and to the expanding needs for office space on the part of the Federal Government on the local level. The Cedar Rapids Post Office and Public Building was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t305 2nd Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowa Building",
            "lat": "41.976511",
            "lon": "-91.664896",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-iowabuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.976511,-91.664896\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Building is a locally outstanding example of the Renaissance Revival style, which has survived with minimal exterior alterations. The Iowa building commemorates one of the worst structural failures associated with the earliest attempts to use a reinforced concrete superstructure in tall building construction in Iowa. The building is best remembered for its disaster, which occurred on the construction site on November 14, 1913, when seven workers died and many were injured when a roof slab collapsed and precipitated the collapse of the two rear bays of the building. Lyman Bros. occupied the building until 1932. The Iowa Building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t221 4th Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lattner Auditorium Building",
            "lat": "41.976261",
            "lon": "-91.665277",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-lattnerauditorium.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lattner Auditorium Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.976261,-91.665277\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lattner Building represents a unique combination of modern commercial and holdover Italianate architectural design and ornamentation. It is also of interest as it was designed not only to hold an automobile firm, but to also have a neighborhood dance hall and auditorium. Paul Lattner, owner of Cedar Rapids Auto and Supply Company built in 1910. The site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t217 4th Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Cedar Rapids Museum of Art",
            "lat": "41.978861",
            "lon": "-91.664341",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-artmuseum-cedarrapidsmuseumofart.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cedar Rapids Museum of Art</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.978861,-91.664341\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Visit the extraordinary world of the Cedar Rapids Museum of Art, filled with a selection from 2,000 years of art. The museum&#039;s treasure includes the world&#039;s largest collection of works by artist Grant Wood, who lived and worked in Cedar Rapids most of his life. There&#039;s something for everyone at the Cedar Rapids Museum of Art, including regularly changing exhibitions.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t410 3rd Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.366.7503</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://crma.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fort Severson",
            "lat": "43.422360",
            "lon": "-93.011106",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fort Severson</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.422360,-93.011106\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The stone fort is a remnant from one of the earliest settlements in Mitchell County. Newburg Township, in which the barn is located, was first settled in 1854, largely by Norwegians, possibly members of the Norwegian Immigration Movement led by the Reverend C. L. Clausen, whose colonizing efforts in Wisconsin, Minnesota, and northern Iowa are an important part of the region’s history. Among these Norwegians were brothers Ole and Nels Severson. Ole is said to have built a log house on Deer Creek, probably near the site of the fort, which was built by his brother Nels in 1867. Ole died in 1854, shortly after his arrival, but Nels lived on to have a large family, serve in the Civil War with the 13th Iowa Infantry, and hold several local offices. Fort Severson was one of the few stone structures in the area of Deer Creek settlement, after its abandonment in the 1870s, the stone structure was commonly referred to as Severson&#039;s Barn. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1070 456th St.<br />Carpenter, IA 50426<br />Mitchell County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Carl and Mary Koehler History Center",
            "lat": "41.981549",
            "lon": "-91.663432",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-historymuseum-carlmarykoehlerhistorycenter-4b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carl and Mary Koehler History Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.981549,-91.663432\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Carl and Mary Koehler History Center provides a gateway orientation to Linn County, from prehistoric occupation and rural farming communities to urban immigration culture, manufacturing, food production and communications industries.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t615 1st Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.362.1501</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sokol Gymnasium",
            "lat": "41.976166",
            "lon": "-91.664641",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sokol Gymnasium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.976166,-91.664641\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The &quot;Sokol Movement&quot; began in Bohemia in 1862 with the public goal of training Czechs in physical fitness to promote the underlying goal of resisting Austro-Hungarian and Germanic rule. Sokol societies were established in almost every one of the large cities and villages in Bohemia, Moravia and Silesia. Czechs who came to the United States brought the Sokol system with them, and groups focused on good citizenship and patriotic support for their new country. By the mid-twentieth century, it was estimated that 25% of Cedar Rapids&#039; population had Czech ancestry and that the city had the largest percentage of Czechs of any city in the United States. The Sokol Gymnasium, constructed in 1908, has long been a vital part of the Czech community in Cedar Rapids. It was home to physical education, drills and classes, as well as masquerade balls and an annual May dance, the Majovy Veneck. The building was damaged by the Great Flood of 2008 and is being repaired. Sokol Gymnasium was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t417 3rd St. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Iowa Masonic Library",
            "lat": "41.982581",
            "lon": "-91.661138",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-iowamasoniclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Masonic Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.982581,-91.661138\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Masonic Library is recognized as the oldest special library in Iowa. Included in its collection are reports, transactions and papers of the Iowa Department of Agriculture, Horticultural Society and yearbooks of agriculture. The Library also maintains early records of the State Agricultural College, now Iowa State University.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t813 1st Ave. SE<br />Cedar Rapids, IA 52402<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.365.1438</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"www.gl-iowa.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "National Czech and Slovak Museum and Library",
            "lat": "41.966156",
            "lon": "-91.661882",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-historymuseum-nationalczechandslovakmuseumandlibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">National Czech and Slovak Museum and Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.966156,-91.661882\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The National Czech and Slovak Museum preserves the history of Czech settlement in Cedar Rapids. The museum was opened in 1995, and was presided over by President Bill Clinton, Václav Havel of the Czech Republic and Michal Kovác of the Slovak Republic. Flexible tour packages may include walking/driving tours of Czech neighborhoods, authentic food, folk art classes and lively entertainment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1400 Inspiration Pl. SW<br />Cedar Rapids, IA 52404<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.362.8500</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://NCSML.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Washington Township Center High School",
            "lat": "41.555519",
            "lon": "-91.770233",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Washington Township Center High School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.555519,-91.770233\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Washington Township Center High School represents an unusual facet in the history of rural public education in Iowa. The school represented the growing awareness among the rural population of the importance of schooling beyond the traditional eighth-grade level. The school was a response to a combination of needs and concerns involving educational opportunities for farm children, inadequate roads and methods of transportation, and the rural citizens&#039; common misgivings about the life and atmosphere of “the city”. The Washington Township Center High School was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5194 Derby Ave. SW<br />Kalona, IA 52247<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Evans Manufacturing Company Building",
            "lat": "41.975041",
            "lon": "-91.662829",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-evansmanufacturing-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Evans Manufacturing Company Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.975041,-91.662829\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Evans Manufacturing Co. Bldg. is significant for its association with the development of important manufacturing and warehouse facilities along the 4th St. Railroad Corridor in the years following World War I. The successful garment manufacturer relocated its business from Missouri to Iowa and later occupied a specialized commercial printing company. The Evans Manufacturing Company Building was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 6th Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George B. Douglas House",
            "lat": "41.982075",
            "lon": "-91.661071",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-georgedouglashouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George B. Douglas House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.982075,-91.661071\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The first home owned by the local Douglas family before the family moved to the Brucemore Mansion. The George B. Douglas House was added to the National Registry of Historic Places on 1989.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t800 2nd Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Grant Wood Studio and Visitor Center",
            "lat": "41.982337",
            "lon": "-91.661020",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-artmuseum-grantwoodstudio.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grant Wood Studio and Visitor Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.982337,-91.661020\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grant Wood Studio and Visitor Center is a studio, maintained by the Cedar Rapids Museum of Art, that was used by Grant Wood as both his personal studio and home from 1924-1935. The studio is 925 sq. ft. of cramped loft space, that Grant Wood did most of his work in. Today, the studio has been preserved as a museum, featuring many of the amenities that Wood used, including a door sign that had a pointer to tell his status as “In,” “Out of Town,” “Taking a Bath,” or “Having a Party.”</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t810 2nd Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.366.7503</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://crma.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ausadie Building",
            "lat": "41.983103",
            "lon": "-91.660386",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ausadie Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.983103,-91.660386\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ausadie Building is locally significant for its representation of a well-preserved early twentieth century apartment building design in Cedar Rapids and for its design by well-known Cedar Rapids’ architect, William J. Brown. The building is also significant for its association with Austin Palmer who was nationally known for his “Palmer” writing method, which revolutionized handwriting methods in the 20th century. The Ausadie Building was added to the national Register of Historic places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t845 1st Ave. SE<br />Cedar Rapids, IA 52402<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "General William W. Ellis Gravesite",
            "lat": "40.938503",
            "lon": "-94.974183",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-cemetery-generalwilliamellis.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">General William W. Ellis Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.938503,-94.974183\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>General William W. Ellis is buried at Villisca, Iowa. His grave is marked by a tombstone that looks like a Civil War-era pup tent. There is also a canteen, a knapsack, and a sword carved in to the headstone. His headstone commemorates his service in the Civil War.\r\n\r\nEllis, a native of Wilkes-Barre, Pennsylvania, was born in 1840. At age 21 in 1861, he enlisted for a three month stint in the U.S. Army. He re-joined the army and continued to serve throughout the Civil War. He was wounded in the shoulder at Fair Oaks and in the loin and left leg at Fredericksburg, Virginia. After Fair Oaks, he was promoted for “bravery.” Ellis also saw action at Williamsburg, Savage’s Station and Malvern Hill. He remained in service until he was honorably discharged in 1866. In 1870, he moved west to Villisca. There he operated the grain elevator.\r\n\r\nEllis continued to serve in the Iowa National Guard and earned the rank of General. He passed away in 1903.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN 5th Ave.<br />Villisca, IA 50864<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Czech Village New Bohemia Main Street District",
            "lat": "41.964716",
            "lon": "-91.661115",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-historicdistrict-czechvillagenewbohemiamainstreetdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Czech Village New Bohemia Main Street District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.964716,-91.661115\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Czech Village New Bohemia Main Street District is a district in the SE corner of Cedar Rapids. The district began with the creation of the T.M. Sinclair meatpacking plant that was relocated to the south side of Cedar Rapids. The plant attracted Czech immigrants, because it was a source for reliable long term employment. The idea of reliable employment brought many Czech and Slovakian immigrants to the area, creating a &quot;Little Bohemia&quot; in the area. The area continued to grow and eventually was connected with the Czech Village in 1975 creating &quot;New Bohemia&quot;.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 16th Ave. SW<br />Cedar Rapids, IA 52404<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.432.9785</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.crmainstreet.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "African American Museum of Iowa",
            "lat": "41.968775",
            "lon": "-91.659713",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-historymuseum-africanamericanmuseumofiowa.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">African American Museum of Iowa</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.968775,-91.659713\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The African American Museum of Iowa features the rich history, heritage and culture of Iowa&#039;s African Americans. The permanent exhibit, &quot;Endless Possibilities&quot; covers African American history from pre-slavery times in Africa to present day struggles and accomplishments in Iowa.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t55 12th Ave. SE<br />Cedar Rapids, IA 52404<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Witwer Grocery Company Building",
            "lat": "41.972209",
            "lon": "-91.660779",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-witwergrocerycompanybuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Witwer Grocery Company Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.972209,-91.660779\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">101.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Witwer building is the last multi-story warehouse built along any of the Cedar Rapids railroad industrial corridors. It was built at the end of World War II under the direction of Weaver Witwer, who started a wholesale grocery business in 1921. This Witwer Grocery Company Building was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t905 3rd St. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bohemian Commercial Historic District",
            "lat": "41.970604",
            "lon": "-91.658548",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-historicdistrict-bohemiancommercial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bohemian Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.970604,-91.658548\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102mi.</span></div>\n\t\t</div>\n\n\t\t<p>This district is associated with nearly 60 years of commercial development in Cedar Rapids&#039; Bohemian south side from the 1880s though the 1930s. The commercial district is a representative collection of the commercial architectural styles and vernacular building forms that appeared in Cedar Rapids from the 1880s through the 1930s. It consists of the neighborhood around 3rd St. SE. The district was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1221 3rd St. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "A. T. Averill Law House",
            "lat": "41.984113",
            "lon": "-91.657445",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-ataverillhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">A. T. Averill Law House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.984113,-91.657445\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1884, the Averill House is two and one-half story high, with walls of pressed brick and slightly raised, rock-faced stone foundation. It displays a variety of elements associated with High Victorian residential architecture. The house designed by the local firm of Sidney Smith and W. A. Fulkerson was built for Arthur Tappan Averill one of Cedar Rapids’ citizens during the late 19th century. The A. T. Averill Law House was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1120 2nd Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Calder Houses",
            "lat": "41.984498",
            "lon": "-91.656688",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-calderhouses.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Calder Houses</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.984498,-91.656688\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Calder houses were built in 1868 and set along a main residential street of the city. The pair of unpretentious brick houses are among the few remaining examples of mid-19th century housing stock in Cedar Rapids. Their vernacular design is strictly functional, in contrast to the variety of architectural influences. These houses were added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1214 2nd Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "J. G. Cherry Company Building",
            "lat": "41.972101",
            "lon": "-91.658819",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-jgcherrycompany.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J. G. Cherry Company Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.972101,-91.658819\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102mi.</span></div>\n\t\t</div>\n\n\t\t<p>The J. G. Cherry Company Building was originally built as a business manufacturing center and was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t320 11th Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Legion Arts (C.S.P.S. Hall)",
            "lat": "41.970720",
            "lon": "-91.659062",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-historicdistrict-newbo-cpcshallnewbohemia.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Legion Arts (C.S.P.S. Hall)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.970720,-91.659062\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102mi.</span></div>\n\t\t</div>\n\n\t\t<p>Legion Arts is an award-winning, Cedar Rapids nonprofit dedicated to the creation, presentation, understanding and impact of contemporary art. Based at historic C.S.P.S. Hall, a restored landmark building on the edge of downtown Cedar Rapids, Legion Arts presents cutting edge art, music theatre, film and other events at a variety of venues; supports young artists, experimental art forms and new idea. The landmark hall that houses the arts center was built in 1891 and was associated with the Czech-Slovak Protective Society and served as a clubhouse and features Richardsonian Romanesque architecture. The building was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1105 3rd St. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Franklin Regular Baptist Church",
            "lat": "40.622233",
            "lon": "-93.032824",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/appanoose-nhr-franklinregularbaptistchurch.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Franklin Regular Baptist Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.622233,-93.032824\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Franklin Regular Baptist Church is associated with historical events and for its associations with the multi-faceted career of Livingston G. Parker, co-founder of the crossroads community of Livingston, Iowa. This church was constructed in 1881, and is one of only two buildings remaining from this crossroads village, which thrived from the late 1850s to the early years of the 20th century. It is the only surviving building in Livingston with a direct association with Parker, whose example and strong character influenced the Livingston community in innumerable ways during his lifetime and for many years afterward. It was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t29100 135th Ave.<br />Cincinnati, IA 52549<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Parker-Harl Museum",
            "lat": "40.622121",
            "lon": "-93.033042",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Parker-Harl Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.622121,-93.033042\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Parker-Harl Museum was built in 2014 and displays items related to the Livingston community. Open by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t29100 135th Ave.<br />Cincinnati, IA 52549<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Livingston Cemetery",
            "lat": "40.622861",
            "lon": "-93.031878",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Livingston Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.622861,-93.031878\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Livingston Cemetery is the resting place of many of the original area pioneers including Livingston Parker himself.  The cemetery is located directly across the road from the Franklin Baptist Church and is still a regularly used graveyard in the community.  It is always a beautiful place to visit on Memorial Day with the flags, the rolling hills, and the church building all lingering in the background.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t29100 135th Ave.<br />Cincinnati, IA 52549<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Lesinger Block (Little Bohemia)",
            "lat": "41.968889",
            "lon": "-91.657094",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-lesingerblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lesinger Block (Little Bohemia)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.968889,-91.657094\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1883, the Lesinger Block located at 1313, 1315 and 1317 3rd Street is architecturally significant locally as one of the best extant examples of an Italianate Style commercial block in Cedar Rapids. The building was constructed during a period of citywide economic boom when the Italianate Style was employed in dozens of downtown business blocks. The Lesinger Block is historically significant as a property built for and operated by Vaclav Lesinger, a successful, first generation immigrant in Cedar Rapids. He built the Lesinger Block to house a dry-goods business along with his tailoring trade. The Lesinger Block was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1317 3rd St. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Shores-Mueller Company",
            "lat": "41.994875",
            "lon": "-91.655509",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Shores-Mueller Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.994875,-91.655509\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>George A. Shores started a pharmacy and drug company in Tripoli, Iowa, in 1897. His rural background and experience at several small-town pharmacies in northeast and central Iowa helped him recognize an unmet demand for nutritional products for livestock, and he eventually expanded his business to sell personal remedies, elixirs, ointments and spices for human consumption, as well. He partnered with friend and confidant J.J. Mueller to expand the product line, and by 1910, their business had grown so large the local post office could no longer handle the volume of orders.\r\n\r\nThe Shores-Mueller Company was lured to Cedar Rapids by the Commercial Club in 1911, and the company built a three-story building in the heart of the city’s Chicago, Milwaukee and St. Paul Industrial Corridor. Architecturally, the building is a notable display of the Turner Mushroom System, a pioneering method of reinforced concrete construction.\r\n\r\nThe surrounding neighborhoods, Daniels Park and Mound View, grew quickly in conjunction with the industrial area. Shores-Mueller operated in this building (with various additions) from 1911 to 1965, and the building was added to the National Register of Historic Places on June 22, 2020.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t700 16th St. NE<br />Cedar Rapids, IA 52402<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Luther A. and Elinore T. Brewer House",
            "lat": "41.974180",
            "lon": "-91.656050",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Luther A. and Elinore T. Brewer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.974180,-91.656050\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1897 by well-known local architect Charles A. Dieman, the house is one of the few Dieman buildings still standing. It was built for Luther and Elinore Brewer, a newspaperman and later owner of a publishing house. The Luther A. and Elinore I. Brewer House was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t616 10th Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://savecrheritage.org/anchor/posts/historic-luther-brewer-house-in-cedar-rapids-to-be-relocated-in-the-new-year\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Z.T. Dunham Pioneer Stock Farm",
            "lat": "41.867398",
            "lon": "-95.619348",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/crawford-nhr-ztdunhampioneerstockfarm.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Z.T. Dunham Pioneer Stock Farm</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.867398,-95.619348\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Z.T. Dunham’s farm was the product of an era when large scale beef production assumed special importance in Crawford County’s economy and became an important long-term feature of western Iowa’s agriculture. Dunham’s property stands as a reminder of one family’s participation in the 1870s commercialization of the Iowa cattle business and the sharp rise and collapse of the stock boom during the 1880s. It was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3253 130th St.<br />Dunlap, IA 51529<br />Crawford County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles W. and Nellie Perkins House",
            "lat": "41.983938",
            "lon": "-91.655479",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-perkinshouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles W. and Nellie Perkins House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.983938,-91.655479\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Charles W. and Nellie Perkins House is significant because it reflects the influence of the late Victorian Queen Anne and Shingle styles of architecture. It is also an example of the middle to upper income household residential properties that were built along 2nd and 3rd Avenue in Cedar Rapids. The Cahrles W. and Nellie Perkins House was added to the national Register of Historic Places in 2002.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1228 3rd Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Odd Fellows Hall",
            "lat": "42.289591",
            "lon": "-91.682767",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Odd Fellows Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.289591,-91.682767\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Odd Fellows Hall, built in 1900, is a late example of “boomtown” construction dressed up in Italianate styling. The hall is remarkably well preserved with the exception of the reversible temporary infilling of the storefront windows. The building was dedicated on February 22, 1901. The Odd Fellows Hall was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5890 Troy Mills Rd.<br />Troy Mills, IA 52344<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Paul Methodist Episcopal Church",
            "lat": "41.985256",
            "lon": "-91.652773",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-stpaulmethodist.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Paul Methodist Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.985256,-91.652773\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Paul&#039;s United Methodist Church is one of five Louis Sullivan designs in Iowa. It represents the involvement of three architects, Sullivan, Jones, and Elmslie. The unusual church plan is a significant example of the changing role of the church in society. The church itself dates back to the 1840s, this being the third building constructed in 1913-1914. It was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1340 3rd Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.363.2058</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.stpaulsumc.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dr. Francis B. Warnock House",
            "lat": "42.315811",
            "lon": "-95.600628",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. Francis B. Warnock House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.315811,-95.600628\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Warnock House was built in 1899 and is a virtually intact example of transitional, turn-of-the-century residential design, combining elements of the Queen Anne and Colonial Revival styles. It exhibits details that can be attributed to Tennessee architect George Barber&#039;s mail order designs. The house was added to the National Register of Historic Places in 1988.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 Maple St.<br />Battle Creek, IA 51006<br />Ida County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Josiah B. and Sara Moore House (Villisca House)",
            "lat": "40.930566",
            "lon": "-94.973285",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-nhr-josiahsarahmoorehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Josiah B. and Sara Moore House (Villisca House)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.930566,-94.973285\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The home of Josiah and Sara Moore was built in 1900 and is widely known due to the notorious unsolved murder of the family. Between the evening of June 9, 1912, and early morning of June 10, 1912, the six members of the Moore family and two house guests were found bludgeoned in the residence. All eight victims, including six children, had severe head wounds from an axe. A lengthy investigation yielded several suspects, one of whom was tried twice and acquitted. The crime remains unsolved. The home was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t508 E 2nd St.<br />Villisca, IA 50864<br />Montgomery County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.villiscaiowa.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "2nd and 3rd Avenue Historic District",
            "lat": "41.986862",
            "lon": "-91.649680",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-historicdistrict-2ndand3rdavenue.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">2nd and 3rd Avenue Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.986862,-91.649680\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Bordering the restored Redmond Park, this residential neighborhood grew due to the streetcar lines which were for years the favored choice of transportation in Cedar Rapids. Featuring homes from the 1880s through the 1930s, this neighborhood has some unique architectural gems and was once one of Cedar Rapids&#039; finest. This area was added to the National Historic Register of Historic Places in 2001.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1520 3rd Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mars Hill Log Church",
            "lat": "40.899473",
            "lon": "-92.357530",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-marshilllogchurch.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mars Hill Log Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.899473,-92.357530\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Mars Hill Log Church is thought to be one of the oldest and largest log churches still in occupancy in the country. Built in 1857 by a Baptist community, the land on which the church stands was purchased by that community in the same year but construction had already begun seven years prior. Local tradition has it that the Mars Hill Church was used as a hiding place during the Civil War as part of the underground railroad. The Mars Hill Log Church was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tOwl Ave.<br />Ottumwa, IA 52501<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Conover Barn",
            "lat": "42.428796",
            "lon": "-95.571589",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/ida-barn-conoverbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Conover Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.428796,-95.571589\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn was built around 1900 and used by C.B. Conover and his son, C.B., Jr., for their outstanding Belgian draft horses. Harry Linn, Iowa&#039;s Secretary of Agriculture from 1940-1950, gave draft horse demonstrations at this barn. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5315 190th St.<br />Holstein, IA 51025<br />Ida County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "B Avenue Historic District",
            "lat": "41.993861",
            "lon": "-91.647130",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">B Avenue Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.993861,-91.647130\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Stretching for blocks across Northeast Cedar Rapids, the first historic district addition to Cedar Rapids in years, is the B Avenue Historic District. This pedestrian-friendly neighborhood features a wide variety of architectural styles. Not to be overlooked is the Central Park Presbyterian Church, which features an open belfry and Iowan stonework. This district also features the outstanding Waterhouse Manor, featuring restored stucco, copper-colored trim and other turn of the century features. Other notable homes include the Spencer House and the Turner House, featuring the brightly painted home used by the undertaker John B. Turner, friend and patron of legendary local artist Grant Wood. The Franklin Middle School, previously the Benjamin Franklin Senior High school where Grant Wood briefly worked, beneath the thick facade of stone, was locally designed in a Gothic style to keep the children in awe of knowledge and a little afraid of the power of their educators. This site was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t312 17th St. NE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Redmond Park and Grand Avenue Place Historic District",
            "lat": "41.987643",
            "lon": "-91.645117",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-historicdistrict-redmondparkandgrandavenue.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Redmond Park and Grand Avenue Place Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.987643,-91.645117\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Redmond Park and Grande Avenue Historic District is locally significant because it derives significance from community planning and development, as well as from being a representative collection of the residential architectural styles and vernacular house forms that appeared in Cedar Rapids neighborhoods from the 1890s through the 1930s. The Redmond Park and Grand Avenue Place Historic District was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1719 Grand Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Rialto Theatre",
            "lat": "40.927907",
            "lon": "-94.977469",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-theater-rialtotheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rialto Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.927907,-94.977469\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rialto Theatre building was built in 1895. Between 1895 and 1912, a fraternal lodge hall operated on the second floor, and a general store and a grocery store operated on the first floor. In 1929, The Rialto Theatre opened, and operated until the late 1970s. The theatre is now used by a variety of organizations, including the Simpson Choir and a local dance studio.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t422 S 3rd Ave.<br />Villisca, IA 50864<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Oak Hill Cemetery Historic District",
            "lat": "41.975609",
            "lon": "-91.645771",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oak Hill Cemetery Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.975609,-91.645771\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Oak Hill Historic District is a collection of cemeteries that was constructed in 1854. The cemeteries hold many former residents of Linn county, including a few notable Iowans like Walter Douglas, a local businessman who died in the sinking of the Titanic, Arthur Collins, founder of Collins Radio (now Rockwell-Collins), James W. Good, Secretary of War under President Hoover, various war veterans an many more. The Oak Hill Cemetery Historic District was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t12th Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.362.8452</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.oakhillcemeterycr.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William and Sue Damour House",
            "lat": "41.991771",
            "lon": "-91.644099",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-williamandsuedamourhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William and Sue Damour House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.991771,-91.644099\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in a potential historic district in the Wellington Heights area of southeast Cedar Rapids, the William and Sue Damour house is locally significant as an excellent example of the Georgian Revival phase of the Colonial revival style of domestic architecture in the early years of the 20th century. This house was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1844 2nd Ave. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Brucemore",
            "lat": "41.992385",
            "lon": "-91.639345",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-brucemorehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brucemore</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.992385,-91.639345\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Iowa&#039;s only National Trust Historic Site, Brucemore is a 26-acre park-like estate in the heart of Cedar Rapids. The delightful Queen Anne Style mansion was built between 1884 and 1886 by Caroline Sinclair, widow of the pioneer industrialist T.M. Sinclair. The home to three prominent Cedar Rapids families, the estate continues to be a hub for cultural, philanthropic and educational activities.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2160 Linden Dr. SE<br />Cedar Rapids, IA 52403<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.362.7375</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://brucemore.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Aurelia Heritage Society",
            "lat": "42.713121",
            "lon": "-95.436342",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Aurelia Heritage Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.713121,-95.436342\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">103.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Aurelia Heritage Society was founded in 1976, at the time of the U.S. Bicentennial. The purpose of the group is to preserve and share the history of Aurelia and the surrounding area. The society purchased one of the first houses in Aurelia in 2000 and started the restoration process. Today, the house has been restored and filled with period pieces, and opened as the Heritage House.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t228 Main St.<br />Aurelia, IA 51005<br />Cherokee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.434.2276</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "James Center Township School",
            "lat": "41.375443",
            "lon": "-95.442181",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James Center Township School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.375443,-95.442181\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">103.1mi.</span></div>\n\t\t</div>\n\n\t\t\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t24998 390th St.<br />Hancock, IA 51536<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Nishna Heritage Museum",
            "lat": "41.309675",
            "lon": "-95.396993",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-historymuseum-nishnaheritagemuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nishna Heritage Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.309675,-95.396993\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">103.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1975 the local historical society purchased a dry goods and grocery store that had been built in 1905 and turned it into a museum. Here visitors can learn a great deal about all phases of southwest Iowa’s history. There are displays pertaining to the prehistoric animals and rocks found in that area. Many different types of artifacts dating from the time the town was founded in 1854 have been gathered and used in interesting exhibits. One can see an example of a kitchen of 1900, barber hop, cobbler shop, items from a blacksmith shop, farm machinery, late 19th century clothing and scooter-bikes, and a switchboard of 1902.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t117 N Main St.<br />Oakland, IA 51560<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.482.6802</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Horace Hendrickson Barn",
            "lat": "43.469174",
            "lon": "-93.117897",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Horace Hendrickson Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.469174,-93.117897\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">103.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn, built by Hans &quot;H.I.&quot; Hendrickson in 1894, was constructed not with nails, but with mortise and tenon joints. The farm where the barn resides was purchased by H.I. Hendrickson in 1884 and included 150 acres and two outbuildings. The barn and a house were added and years later the farm was passed on to a son, Irving Hendrickson. In 2011, the barn was restored by the owners, Horace and Ann Hendrickson, grandson of the builder. The Hendrickson Barn is best viewed from County Road S56.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2035 490th St.<br />Northwood, IA 50459<br />Worth County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Bourke Hickenlooper Gravesite",
            "lat": "42.022968",
            "lon": "-91.633652",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-govgravesite-govbourkehickenloopergravesite.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Bourke Hickenlooper Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.022968,-91.633652\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">103.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Bourke Blakemore Hickenlooper (July 21, 1896 – September 4, 1971) served as the 29th Governor of Iowa from 1943-1945 and then went on to serve in the U.S. Senate. His gravesite is located at Cedar Memorial Park (Mausoleum 3rd Section, 2nd Level) in Cedar Rapids. Access to Hickenlooper&#039;s grave can be gained through the flower shop at Cedar Memorial Park.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4200 1st Ave. NE<br />Cedar Memorial Park<br />Cedar Rapids, IA 52402<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Gold Star Gravesite - Henry Grashoff",
            "lat": "42.702500",
            "lon": "-95.446836",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gold Star Gravesite - Henry Grashoff</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.702500,-95.446836\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">103.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Henry Grashoff was born on July 21, 1893, and served as a corporal in the infantry during World War I. He left the United States on November 14, 1917, and arrived at Liverpool, England, on Nov. 30, 1917. He was killed in action on July 26, 1918, during the Chauteau Thierry Engagement. The Aurelia Sentinel of October 3, 1918, wrote that he &quot;was of a cheerful disposition and his jovial nature drew many to him who cherished his friendship. ... He died fighting nobly with face toward the enemy, showing no streak of yellow and paying the price without a murmur.&quot; Grashoff&#039;s parents were informed that he was killed while advancing against machine-gun pits and that he was hit in the head, but they apparently never learned what struck him. His remains were returned to Aurelia in 1921 and laid to rest in the Pleasant Hill Cemetery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. M21<br />Pleasant Hill Cemetery<br />Aurelia, IA 51005<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Brugjeld-Peterson Family Farmstead District",
            "lat": "43.304767",
            "lon": "-94.700781",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/emmet-nhr-brugjeldpetersonfamilyfarmsteaddistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brugjeld-Peterson Family Farmstead District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.304767,-94.700781\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">103.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Brugjeld-Peterson Family Farmstead is also known as Peterson Point Historical Farmstead. Buildings on the farmstead include a log house built in 1870, a barn, blacksmith shop, cook and wash house, cob shed, wood shed, chicken coop, hog house, sheep barn and corn crib. Peder Brugjeld and his wife, Gjertrud, with six children, left the Brugjeld farm near Balestrand, Norway for America in 1848. Four generations of the Peterson family lived on the farmstead until Maynard Peterson, great grandson of Peder Brugjeld, deeded the property to Emmet County in 1996. Tours of the farmstead museum can be made by scheduling an appointment. The Brugjeld-Peterson Family Farmstead District was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2349 450th Ave<br />Wallingford, IA 50514<br />Emmet County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.867.4422</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Maynard Town Hall and Jail",
            "lat": "42.774005",
            "lon": "-91.880757",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Maynard Town Hall and Jail</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.774005,-91.880757\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">103.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1894 the Maynard Town Hall and Jail was the first seat of Maynard’s local government. This utilitarian building was “fitted” with jail cells and originally had bunks and barred windows and doors. The building was used for council meetings and as the mayor’s office. Use of the jail cells were limited to brief “lock-up” time for individuals who committed minor infractions. In the early 1940s, the building was adapted for use as the Maynard Community Library. It was later purchased by a private citizen. The Maynard Town Hall and Jail was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t330 Main St.<br />Maynard, IA 50655<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.637.2307</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Douglas and Charlotte Grant House",
            "lat": "42.011249",
            "lon": "-91.622634",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Douglas and Charlotte Grant House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.011249,-91.622634\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">103.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grant House is a linear house built along the fall of a hill. Its uniquely beautiful exterior walls are made of limestone quarried from the site, and its roof is one great monolithic concrete slab. The design of the Grant House is powerful and dramatic with two full stories and over 3000 square feet. The Grant House is the largest of the seven Iowa Usonian Houses and the least typical. This house was added to the National Register of Historic Places in 1988.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3400 Adel Rd. SE<br />Marion, IA 52302<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Armstrong Heritage Museum",
            "lat": "43.396495",
            "lon": "-94.480511",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Armstrong Heritage Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.396495,-94.480511\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">103.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Armstrong Heritage Museum and Historical Society displays historical artifacts and exhibits, including a large collection of military uniforms and weapons, relevant to the Armstrong community. The museum property also contains a memorial gazebo and restored Victorian playhouse that Armstrong resident Amelia Gaarde Manthe received from her father at age four in 1904.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t425 N 6th St.<br />Armstrong, IA 50514<br />Emmet County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.868.3470</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Exline Hose Co. No. 1",
            "lat": "40.647989",
            "lon": "-92.841034",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Exline Hose Co. No. 1</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.647989,-92.841034\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">103.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Exline Hose Co. #1 is a replica turn-of-the century firehouse. It is home to Exline&#039;s original 1923 fire truck, a 1923 Sinclair gas truck and a museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Exline, IA 52555<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Emmet County",
            "lat": "43.397518",
            "lon": "-94.480779",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Emmet County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.397518,-94.480779\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">103.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Emmet County Freedom Rock® in Armstrong, Iowa features a Normandy gravestone with an Eisenhower quote signifying the many who’ve given their all in service to our county. On the front side of the rock are two such Emmet County veterans. The first is Medal of Honor recipient John Thorson, his citation reads: “He was an automatic rifleman on 28 October 1944, in the attack on Dagami Leyte, Philippine Islands. A heavily fortified enemy position consisting of pillboxes and supporting trenches held up the advance of his company. His platoon was ordered to out-flank and neutralize the strongpoint. Voluntarily moving well out in front of his group, Pvt. Thorson came upon an enemy fire trench defended by several hostile riflemen and, disregarding the intense fire directed at him, attacked single-handed. He was seriously wounded and fell about 6 yards from the trench. Just as the remaining 20 members of the platoon reached him, 1 of the enemy threw a grenade into their midst. Shouting a warning and making a final effort, Pvt. Thorson rolled onto the grenade and smothered the explosion with his body. He was instantly killed, but his magnificent courage and supreme self-sacrifice prevented the injury and possible death of his comrades, and remain with them as a lasting inspiration.” To the bottom left of the Normandy stone is a soldier either returning from or leaving for war... it is up to the observer.\r\n\r\nTo the bottom right is Army Staff Sgt. Steven P. Blass. At age 27, Blass died in Kandahar, Afghanistan March 11, 2013 while serving during Operation Enduring Freedom in a UH-60 Black Hawk helicopter crash. The backside of this Freedom Rock is a tribute to the spirit of Emmet County. It displays the farming heritage, tribute to service personnel and a couple factories and windmills that are an important foundation to the county.\r\n\r\nTo finish it off you&#039;ll find a nod to Iowa with the wild rose and goldfinch and of course the American flag over the top. The Emmet County (Armstrong) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2016.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3rd Ave.<br />Armstrong, IA 50514<br />Emmet County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Davis County",
            "lat": "40.798629",
            "lon": "-92.482800",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Davis County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.798629,-92.482800\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Davis County Freedom Rock® in Drakesville, Iowa is nestled among some of southeast Iowa&#039;s Amish. Ted Sprouse was a Korean War POW from Drakesville, Iowa. Ted was an outstanding baseball player and before his unit was sent to Korea was selected to play on the Indianhead artillery team DIVARITY. He was so good that he was invited to recruit-training camp in San Francisco by the then still New York Giants and received a bunch of tips from major leaguers. While serving, Ted befriended a Native-American named Don Cloud. A fellow sergeant, Cloud and Sprouse were in the 2nd Infantry Division (Indianhead) 38th Field Artillery. They ran the 105-mm howitzers. Ted was taken prisoner after a brutal battle with the Chinese Communist Forces and spent years in a North Korean prison camp. \r\n\r\nJames B. Weaver who resided in Bloomfield, Iowa was a Union Army officer in the Civil War and a United States Representative. He took part in the Battle of Shiloh, Second Battle of Corinth and Battle of Resaca. After the war ended he was promoted to Brevet Brigadier General. As a politician he was a member of many parties: Republican, Democrat, Greenback and Populist. He even made a run for president with the Greenback Party. Weaver had an American Liberty ship named for him. The Liberty ships were there in the days following the Allied invasion of Normandy unloading cargo. \r\n\r\nThe Davis County Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2016.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Drakesville, IA 52552<br />Davis County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Robert and Esther Armstrong House (Pleasant Hill)",
            "lat": "41.984716",
            "lon": "-91.617404",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-robertandestherarmstronghouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Robert and Esther Armstrong House (Pleasant Hill)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.984716,-91.617404\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Robert and Esther Armstrong house testifies to Grant Wood&#039;s considerable talents as an architectural designer and the impact of his Regionalist Credo on those designs. Although recognized for his paintings, Wood had considerable interest in and talent for interior and exterior design, and the Armstrong House is one of many such projects he undertook in Cedar Rapids. The Robert and Esther Armstrong House was added to the National Register of Historic Places in 1989.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t370 34th St. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dr. Percy and Lileah Harris House",
            "lat": "41.984330",
            "lon": "-91.614730",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a8f17827282c9e508.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. Percy and Lileah Harris House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.984330,-91.614730\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This property was the subject of a controversy whether a black family, the Harris family, should be allowed to live in the neighborhood. The 1961 event highlighted the discrimination found in the housing market in Cedar Rapids, even for well-respected community members.\r\n\r\nDr. Percy Harris (1927-2017) and (Evelyn) Lileah Furgerson Harris (1931-2014) arrived in Cedar Rapids in 1957. At that time, Dr. Harris became the first black intern at St. Luke’s Hospital. He opened his own practice in 1958, all while his family (including four children) struggled to find suitable housing. For a time, Mrs. Harris took the children to Waterloo and lived there with her parents.\r\n\r\nIn 1961, Harris was named Linn County&#039;s official medical examiner - a position he held for 40 years. That same year, the Harrises began looking for a larger home. They wanted to purchase this lot on Bever Avenue owned by St. Paul’s Methodist Church. However, several nearby property owners as well as members of the church’s congregation objected to the sale. Eventually, the congregation approved the property sale by a vote of 460 to 291.\r\n\r\nThe Harrises obtained a building permit for a six-bedroom house in 1962 and added a seventh bedroom in 1965. Eventually, the family included 12 children. In 2021, the Department of the Interior listed the Harris House on the National Register of Historic Places.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3626 Bever Ave. SE<br />Cedar Rapids, IA 52403<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "World&#039;s Largest Coffee Cup Water Tower",
            "lat": "40.981569",
            "lon": "-95.096592",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-historicunique-worldslargestcoffee.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World&#039;s Largest Coffee Cup Water Tower</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.981569,-95.096592\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The World&#039;s Largest Coffee Cup Water Tower was built in 2000 and to match the existing Coffee Pot Water Tower and could hold 2.4 million cups of coffee. The two towers stood over Stanton, Iowa&#039;s Swedish City, until 2014 when the coffee pot was lowered and moved to the Stanton Historical Society grounds - making it one of the largest museum artifacts in the state! The towers were painted in honor of Virginia Christine, Stanton native who portrayed &quot;Mrs. Olson&quot; in the classic Folgers Coffee television commercials.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tGrand Ave.<br />Stanton, IA 51573<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Swedish Heritage and Cultural Center",
            "lat": "40.982425",
            "lon": "-95.101730",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-historymuseum-swedishheritageculturalcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Swedish Heritage and Cultural Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.982425,-95.101730\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Swedish Heritage and Cultural Center is a collection of historical artifacts that display the influence of Swedish culture on the area. The museum complex includes a one-room schoolhouse (Cramer School) and restored “Old Main” two-story brick school built in 1884. Schoolroom exhibits provide a glimpse into schooldays past. Authentic Swedish artifacts and exhibits chronicle life in Sweden, and the immigration and pioneer experience of the Halland Settlement. The cultural center also includes an extensive genealogy library.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t410 Hilltop Ave.<br />Stanton, IA 51573<br />Montgomery County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.829.2840</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://stantoniowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "World&#039;s Largest Coffee Pot",
            "lat": "40.981953",
            "lon": "-95.102068",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World&#039;s Largest Coffee Pot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.981953,-95.102068\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The World&#039;s Largest Coffee Pot towered over Stanton, Iowa&#039;s Swedish City, from 1971 to 2014. In 2014, after an overhaul of the city&#039;s water system, the coffee pot was lowered and moved to the Stanton Historical Society grounds - making it one of the largest museum artifacts in the state! The coffee pot water tower could hold 800,000 cups of coffee. The matching World&#039;s Largest Coffee Cup was built in 2000 and could hold 2.4 million cups of coffee. The World&#039;s Largest Coffee Pot was originally painted in honor of Virginia Christine, Stanton native who portrayed &quot;Mrs. Olson&quot; in the classic Folgers Coffee television commercials.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHilltop Ave.<br />Stanton, IA 51573<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Pilotburg Church",
            "lat": "41.434599",
            "lon": "-91.777197",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pilotburg Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.434599,-91.777197\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Pilotburg Church is significant under Criterion A as the last surviving building associated with the former town of Pilotburg. It was built as a place of worship, used as such from 1881 to 1968, and held an important place in a pioneering settlement which no longer exists. It was added to the National Register of Historic Places on May 2, 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1874 155th St.<br />Wellman, IA 52356<br />Washington County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Otranto Bridge",
            "lat": "43.458067",
            "lon": "-92.981677",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Otranto Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.458067,-92.981677\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Otranto Bridge carries an abandoned county road across the Big Cedar River just east of the hamlet of Otranto in Mitchell County. This uncommon Pratt truss variant design was built by the Chicago Bridge and Iron Company in 1899. Straight-corded Pratt through trusses were used extensively in Iowa for medium-span crossings, however for longer crossings polygonal-corded Pratt variants were used, including the Camelback truss. With its distinctive five-faceted upper chords, the Camelback was disdained by some engineers and never received widespread acceptance. The Otranto Bridge is one of the few bridges built in this style on Iowa&#039;s roads.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t480th Ave.<br />Over Big Cedar River<br />Saint Ansgar, IA 50472<br />Mitchell County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Josias L. and Elizabeth A. Minor Farmstead District",
            "lat": "41.905388",
            "lon": "-91.614408",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Josias L. and Elizabeth A. Minor Farmstead District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.905388,-91.614408\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Minor farmstead is significant as a well preserved Early Settlement Era farmstead which includes a house, two barns, and summer kitchen. It is also significant for its association with an Early Settlement Era family who were prominent in the settlement of College and Putnam townships. The Josias L. and Elizabeth A. Minor Farmstead District was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t7598 Ely Rd. SW<br />Cedar Rapids, IA 52404<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "The Dublin Store",
            "lat": "41.293830",
            "lon": "-91.868389",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Dublin Store</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.293830,-91.868389\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dublin Store, built in 1873 as the Odd Fellows Lodge hall, is positioned just seven miles outside of Washington along 250th Street. The store has been home to a post office and a number of other business activities until its closing in June of 1964.vLocated seven miles west of Washington on 250th Street, the site has been home to a post office and several other business operations. The current building was constructed in 1873 as the Odd Fellows Lodge Hall, with a grocery store below. The Dublin Store was closed in June 1964. Hugh and Walt Wolf sold everything from groceries to overalls and gasoline at Dublin from 1903-1964.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2400-2498 Elm Ave<br />Dutch Creek, IA 52353<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.653.3272</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.chamber.washingtoniowa.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Braska House",
            "lat": "42.028842",
            "lon": "-91.600723",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Braska House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.028842,-91.600723\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Braska house was built in 1856 and was part of a large farm. The house was one of the earliest homes in the area. The Braska house is a well-preserved example of vernacular residential architecture from the mid-19th century. The house was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t889 2nd Ave.<br />Marion, IA 52302<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Middle Fork Methodist Episcopal Church and Cemetery",
            "lat": "40.596467",
            "lon": "-94.317650",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Middle Fork Methodist Episcopal Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.596467,-94.317650\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Middlefork Methodist Episcopal Church is an example of an Italianate style influenced rural community frame church and is representative of a once-common class of rural religious buildings. It is further significant locally as the sole surviving and absolutely unchanged example of its building type in Ringgold county. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310th St.<br />Mount Ayr, IA 50854<br />Ringgold County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Taylor School",
            "lat": "40.692351",
            "lon": "-92.675676",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/appanoose-historicschool-taylorschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Taylor School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.692351,-92.675676\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Taylor School was built in 1867 in southwest Davis County, Iowa. The school was moved to Moulton in 1987 and is one of many displays at the Moulton Historical Society Museum. The school is furnished as it was more than 120 years ago.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t712 N Main St.<br />Moulton, IA 52572<br />Appanoose County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Moulton Historical Society Museum",
            "lat": "40.692574",
            "lon": "-92.675877",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/appanoose-historymuseum-moultonhistoricalsocietymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Moulton Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.692574,-92.675877\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Moulton Historical Society Museum features Wabash Railroad memorabilia and a country school.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t712 N Main St.<br />Moulton, IA 52572<br />Appanoose County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.642.3684</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Garden Theatre",
            "lat": "42.033836",
            "lon": "-91.599481",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Garden Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.033836,-91.599481\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Garden Theatre, also known as the Marion Theatre, was built in 1914. It is now used as a commercial building, but the marquee remains.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t752 10th St.<br />Marion, IA 52302<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Marion Heritage Center",
            "lat": "42.032183",
            "lon": "-91.599594",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marion Heritage Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.032183,-91.599594\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Marion Heritage Center building was originally built in 1850 as a Methodist Church. In 1875 the church was purchased by local Baptist congregation and used by them until 1957 when the building was sold to the Marion branch of the Cedar Rapids YMCA. In 1965 Varnes and Hunter purchased the building for an Auto Parts store. In 1999 the structure was purchased by concerned citizens with a vision of creating a community facility and since 2000 it has served as a community center for educational programs, historical displays, art exhibits and cultural events for audiences of all ages. The displays feature a WPA mural that was successfully moved from the former Marion Post Office and conserved. The mural, &quot;Communications by Mail&quot; was completed by artist Dan Rhodes in 1939.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t590 10th St.<br />Marion, IA 52302<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.447.6376</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://marionmuseums.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Granger House Museum",
            "lat": "42.035978",
            "lon": "-91.599678",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-grangerhousemuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Granger House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.035978,-91.599678\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">104.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Listed on the National Register of Historic Places and a wonderful example of Victorian Italianate architecture, the Granger House Museum is the only restored middle-class family home in the Cedar Rapids area. Occupied by a single family for nearly 100 years, the house contains many of its original furnishings and is arranged to reflect the lifestyle of a successful, late 19th-century middle-class family. Behind the home is an 1879 brick carriage house, the only one of its kind in the Midwest, which contains a variety of artifacts revealing the owner’s involvement with Morgan horses, dairying, and farming.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t970 10th St.<br />Marion, IA 52302<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.377.6672</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.grangerhousemuseum.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Marion Commercial Historic District",
            "lat": "42.033254",
            "lon": "-91.598109",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marion Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.033254,-91.598109\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">105mi.</span></div>\n\t\t</div>\n\n\t\t<p>Considered the downtown of Marion&#039;s busy mix of shopping and antique, resale shops, this district is significant for its many brick and stonework buildings dating back to pre-Civil War. The district is a pleasant walking area for families and is bordered by the public library, city park and local eateries. The Marion Commercial Historic District was added to the National Register of Historic District in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1099 7th Ave.<br />Marion, IA 52302<br />Linn County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://historicmarion.weebly.com/historic-places.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Terrace Park Historic District",
            "lat": "42.035686",
            "lon": "-91.598077",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Terrace Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.035686,-91.598077\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">105mi.</span></div>\n\t\t</div>\n\n\t\t<p>This historic district is locally significant for its well-preserved and fashionable late 19th and early 20th century residential architecture. It is also significant for its representation of an intact residential neighborhood built by prospering merchants, professionals, public officials and individuals who worked in various capacities for the railroad, which played a major role in the City of Marion’s industrial and commercial development. The Terrace Park Historic District was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t930 12th St.<br />Marion, IA 52302<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First Presbyterian Church of Marion",
            "lat": "42.034335",
            "lon": "-91.597066",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-firstpresbyterianchurchofmarion.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Presbyterian Church of Marion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.034335,-91.597066\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">105mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First Presbyterian Church is locally significant as one of the most outstanding examples of Gothic Revival design in Marion. The best preserved example of an octagonal building in the community and to date the only known example in town of the work of Frank M. Ellis, late 19th century Iowa architect. The Presbyterian Church is one of two known octagonal plan buildings in Marion, but is the best preserved and the only one that retains most of its original detailing. This church was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t802 12th St.<br />Marion, IA 52302<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "James W. and Ida G. Bowman House",
            "lat": "42.034371",
            "lon": "-91.594858",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James W. and Ida G. Bowman House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.034371,-91.594858\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">105.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bowman House is significant as a good representation of the stylish homes built along 8th Avenue in the Pucker Street Historic District in the early 20th century. This home and its history reflect the social history of this neighborhood, which was populated by Marion&#039;s wealthy and influential citizens in the late 19th and early 20th centuries. The James W. and Ida G. Bowman House was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1372 8th Ave.<br />Marion, IA 52302<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Blazek Barn",
            "lat": "43.101989",
            "lon": "-92.184058",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Blazek Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.101989,-92.184058\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">105.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Blazek Barn is a distinguished large barn. It had a drive-through center where teams of horses pulled and unloaded full loads of hay. Barn dances were held in the mow in early 1900s.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1755 Ridgeway Blvd.<br />Lawler, IA 52154<br />Chickasaw County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Marion Carnegie Public Library",
            "lat": "42.033504",
            "lon": "-91.596028",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marion Carnegie Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.033504,-91.596028\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">105.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Although now no longer used as a public library, the Marion Carnegie Public Library is locally significant because of its architecture and for its importance to the educational and civic development of the town of Marion. The library is a local expression of the larger, collective development of Iowa&#039;s free-public libraries. The Mation Carnegie Public Library was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1298 7th Ave.<br />Marion, IA 52302<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Podhajsky Jansa Farmstead District",
            "lat": "41.861420",
            "lon": "-91.608532",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-podhajskyjansafarmsteaddistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Podhajsky Jansa Farmstead District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.861420,-91.608532\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">105.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This farmstead district is extremely well preserved and contains a very interesting set of buildings, most of which were associated with the Bohemian settlement in southern Linn County. It is also architecturally significant for the collection of buildings, which show nearly the full range of construction from early Bohemian immigrant settlement to a more fully developed livestock farming operation of subsequent generations of Bohemian immigrants and their descendants. The Podhajsky - Jansa Farmstead District was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3808 Hoosier Creek Rd.<br />Cedar Rapids, IA 52404<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Richardson-Jakway House",
            "lat": "42.588798",
            "lon": "-91.729542",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Richardson-Jakway House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.588798,-91.729542\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">105.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Abiathar Richardson settled in the north half of Buchanan County after moving from Wisconsin in 1849. He was the first post master and an early Justice of the Peace for the community. The site features the 1851 Richardson-Jakway House and the now defunct pioneer community of Mudville, a town that dwindled after it was bypassed by the railroad. The Buchanan County Conservation Commission now maintains the property. It was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2791 136th St.<br />Aurora, IA 50607<br />Buchanan County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Glenn O. and Lucy Pyle House",
            "lat": "42.034434",
            "lon": "-91.593563",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Glenn O. and Lucy Pyle House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.034434,-91.593563\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">105.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>A stylish and preserved home using a set-back landscape design to increase the aspect of its front windows and railings, the Glenn O. and Lucy Pyle House was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1540 8th Ave.<br />Marion, IA 52302<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Pucker Street Historic District",
            "lat": "42.034592",
            "lon": "-91.593382",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pucker Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.034592,-91.593382\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">105.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This historic district is significant for its association with, and representation of, the historical development of an important residential neighborhood in the City of Marion. This neighborhood was the home for the city&#039;s wealthy and influential. The Pucker Street Historic District was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1680 8th Ave.<br />Marion, IA 52302<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Samuel M. Lane House",
            "lat": "42.034432",
            "lon": "-91.592130",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Samuel M. Lane House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.034432,-91.592130\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">105.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lane House is a good representation of the stylish homes that were added along 8th Avenue to the Pucker Street Historic District in the early 20th century. This home and its history reflect the later years of the social and architectural evolution of this neighborhood, which was populated by Marion&#039;s wealthy and influential citizens in the late 19th and early 20th centuries. The Samuel M. Lane House was added to the National Register of Historic places in 2002.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1776 8th Ave.<br />Marion, IA 52302<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jan F. and Antonie Janko Farmstead District",
            "lat": "41.873751",
            "lon": "-91.604891",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jan F. and Antonie Janko Farmstead District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.873751,-91.604891\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">105.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Featuring an enormous and picture-perfect barn, The Janko Farmstead District is a representation of the early Bohemian immigrant settlement of this rural neighborhood and architecturally as a well-preserved Bohemian immigrant farmstead in southern Linn County. The Jan F. and Antonie Janko Farmstead District was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4021 Vista Rd.<br />Ely, IA 52227<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Joseph P. Mentzer House",
            "lat": "42.029642",
            "lon": "-91.588561",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Joseph P. Mentzer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.029642,-91.588561\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">105.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mentzer House is not only an outstanding example of 19th century architecture. Mentzer moved to Iowa from Ohio and became a merchant in Marion in the early 1840s. In 1846 he formed a partnership with Henry H. Welsh which lasted until 1865. He built this home on his 170 acre farm which he purchased at the time the partnership was dissolved. His descendants remained in the house until the 1930s. The Joseph P. Mentzer House was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2233 3rd Ave.<br />Marion, IA 52302<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Wanata State Park",
            "lat": "42.911006",
            "lon": "-95.338364",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wanata State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.911006,-95.338364\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">105.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civilian Conservation Corps (CCC) was a public relief program to make work for unemployed, unmarried man ages 18-25 during the New Deal, from 1933-1942. Men in the CCC worked in camps set up across the nation, and many of the camps were in Iowa State Parks. Many state park facilities date to the CCC. The buildings, structures, and objects reflect the effort to blend park amenities into the natural landscape in their material, design, workmanship, and immediate setting and reflect common types developed by the National Park Service for park construction. The CCC worked on the Wanata State Park from 1933-1935. The Picnic Shelter was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWanata State Park<br />Peterson, IA 51047<br />Clay County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Indian Creek Nature Center",
            "lat": "41.966964",
            "lon": "-91.580153",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-botany-indiancreeknaturecenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Indian Creek Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.966964,-91.580153\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Indian Creek Nature Center sits on land previously occupied by two farms that were established in 1849. The Penningroth Dairy Barn, built in 1932, houses the visitor&#039;s center. The center features exhibits depicting historic, cultural and wildlife settlements and approximately four miles of nature trails.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6665 Otis Rd. SE<br />Cedar Rapids, IA 52403<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.362.0664</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://indiancreeknaturecenter.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Indian Creek Bridge",
            "lat": "41.973092",
            "lon": "-91.580565",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-indiancreekbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Indian Creek Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.973092,-91.580565\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Indian Creek Bridge is a wrought iron bridge, built about 1880 to the east of Cedar Rapids. The bridge crosses a tributary of the Cedar River and was designed and built by the Wrought Iron Bridge Company of Canton, Ohio as an eight panel, pin-connected through truss in an unusual double-intersection Pratt design. The overall span measures 115 feet, carrying a 15.58-foot wide roadway. Including the approach spans, the bridge has a total length of 191 feet. The bridge rests on stone piers and abutments, with timber pile piers and abutments supporting the timber stringer approach spans. The Indian Creek Bridge was placed on the National Register of Historic Places on May 15, 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5800 Berry Rd. SE<br />Cedar Rapids, IA 52401<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Eldon Carnegie Library",
            "lat": "40.919579",
            "lon": "-92.225272",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-eldoncarnegielibrary-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Eldon Carnegie Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.919579,-92.225272\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Eldon Public Library is historically significant because of its long term contributions to the educational and recreational growth of the residents of Eldon. It is perhaps the best example of Classical Revival design influence in the community and as a very good example of the design skills of the architectural firm of Wetherell and Gage, an important Des Moines firm that designed at least nine other Carnegie libraries in the state in addition to Eldon. The Eldon Carnegie Library was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t608 W Elm St.<br />Eldon, IA 52554<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "West Grove Methodist Episcopal Church",
            "lat": "40.725851",
            "lon": "-92.556775",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Grove Methodist Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.725851,-92.556775\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106mi.</span></div>\n\t\t</div>\n\n\t\t<p>The West Grove Methodist Episcopal Church was built in 1904 in the Gothic Revival style. The building has retained its historical and structural integrity and is still in use by the congregation. It was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t21944 Echo Ave.<br />Bloomfield, IA 52537<br />Davis County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Aurora Historical Society",
            "lat": "42.618263",
            "lon": "-91.727763",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Aurora Historical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.618263,-91.727763\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Aurora Historical Society&#039;s displays and old stories will greet you as you browse around this restored 19th century hardware store building. It is open on various days thoughout the year and anytime by appointment. The Aurora Historical Society, Inc. was organized and incorporated on December 20, 1995 exclusively for charitable and educational purposes which benefit historic preservation in Aurora and the surrounding area.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t298 Main St.<br />Aurora, IA 50607<br />Buchanan County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.634.3363</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "McHaffey Opera House",
            "lat": "40.918288",
            "lon": "-92.222915",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-theater-nhr-mchaffeyoperahouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McHaffey Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.918288,-92.222915\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>In the late 19th century Eldon was enjoying a growing population as a railroad town. Incorporated in 1871, the C. R. I. and P. railroad had already completed laying rails and trains had been traveling through the town since October of 1870. Along with the trains came the opportunity of bringing entertainments of all sorts to the town. One railroad employees named David McHaffey, an Irish immigrant who had been in the United States since 1870, opened an opera house and various store fronts that were completed in 1891. The McHaffey Opera House was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t414 Elm St.<br />Eldon, IA 52554<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "McCoy Polygonal Barn",
            "lat": "40.865018",
            "lon": "-94.986382",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-nhr-mccoypolygonalbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McCoy Polygonal Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.865018,-94.986382\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1914, the McCoy Polygonal Barn is one of five round barns with multi-windowed monitor known to have been built on an Iowa farm. It is one of only two which remain in good condition. It was originally built as a hog sale barn and thus has the large-multi-windowed monitor. The McCoy Polygonal Barn was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUS Hwy. 71<br />Hepburn, IA 51632<br />Page County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Doll Museum",
            "lat": "42.919742",
            "lon": "-95.339564",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Doll Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.919742,-95.339564\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Doll Museum of Peterson or the French Museum was opened by 95 year old Peterson resident Doris French. The museum features dolls from 100 years of history. There are over 200 dolls which she has dressed in the times they were made, rare antique furniture including wicker baby buggies and dual-purpose high chairs, toys, one of a kind dishes, tea sets, and quilts. The French Museum also has an extensive china doll and painted china collection, the workmanship of these should not be missed.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t313 Ash Ave.<br />Peterson, IA 51047<br />Clay County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-historic-sites.png",
            "title": "American Gothic House",
            "lat": "40.920966",
            "lon": "-92.214039",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-statehistoricsite-americangothichouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">American Gothic House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.920966,-92.214039\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The American Gothic House State Historic Site, also known as the Dibble House, was first owned by Charles and Catherine Dibble in 1887. It was the backdrop for one of the most famous American paintings, &quot;American Gothic,&quot; created by Iowa artist Grant Wood. This painting was created in 1930 and depicts a farmer and his daughter in front of a small farmhouse. The models for the painting were Wood&#039;s sister and Wood&#039;s dentist. The bullet-shaped window in the background inspired the painting&#039;s title, since it looks like windows on Gothic-style churches in Germany and caught Wood&#039;s eye on a visit to a nearby art exhibit. While he drove by, he asked his driver to stop, and sketched the house on an envelope. After looking it over, he decided it was perfect for a painting that would encompass small-town Iowa.</p>\t\t<p><em>A location in the collections: State Historic Sites, 99 County Tour - Iowa History Month</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 American Gothic St.<br />Eldon, IA 52554<br />Wapello County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.652.3352</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://iowaculture.gov/history/sites/american-gothic-house\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dows Street Historic District",
            "lat": "41.873285",
            "lon": "-91.585897",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dows Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.873285,-91.585897\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This historic district is significant because of its associations with transportation, commerce, and community development. It is also significant for its many small commercial buildings that reflect the community&#039;s large Bohemian population and their satisfaction with small buildings. The Dows Street Historic District was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1655 Dows St.<br />Ely, IA 52227<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Gary and Alura Otto Barn",
            "lat": "42.714127",
            "lon": "-95.506196",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gary and Alura Otto Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.714127,-95.506196\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn was built in the 1920s and housed cows, horses and sows, including a loafing area for cattle. Hay was stacked in the center from the ground up, with grain bins above.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5544 S Ave.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Buckley Barn",
            "lat": "43.226446",
            "lon": "-92.334383",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/howard-barn-buckleybarn-3.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buckley Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.226446,-92.334383\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Buckley Barn was built in 1915. The barn was built on land given to the family by James Buchanan, 15th President of the United States. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t12178 200th St.<br />Elma, IA 50628<br />Howard County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Ely City Hall (Ely Schoolhouse)",
            "lat": "41.871506",
            "lon": "-91.584975",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ely City Hall (Ely Schoolhouse)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.871506,-91.584975\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1923 and expanded in 1929, the Ely School House is a notable design by Norman Hatton a British-trained architect. The School house shows the influence of his training at the Manchester School of Technology in Manchester, England and Tudor Revival styling used in an unusual way for a school building. This school was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1570 Rowley St.<br />Ely, IA 52227<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Jim&#039;s History Barn",
            "lat": "42.920189",
            "lon": "-95.342790",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jim&#039;s History Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.920189,-95.342790\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Jim&#039;s History Barn was built in 1996, and opened in 1998. The barn is used as a museum run by Jim Haas containing all kinds of historical artifacts, from Native American artifacts to post World War II weapons, the museum spans over 300 years of history. It even has a full human skeleton that he purchased from a medical school. The barn has private tours by appointment only.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6 E 4th St.<br />Peterson, IA 51047<br />Clay County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.295.6551</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Samuel and Emma A. Ranshaw House",
            "lat": "41.751376",
            "lon": "-91.606021",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Samuel and Emma A. Ranshaw House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.751376,-91.606021\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Samuel and Emma A. Ranshaw House is one of the few remaining well-preserved historic homes in the expanding North Liberty area. It stands as a reminder of what North Liberty was historically, a small, but prosperous farming community. The house is also a well-preserved example of a stylish, transitional Free Classic subtype of the Queen Anne style, designed by Bernard Alfred Wickham, an Iowa City builder-architect. The Samuel and Emma A. Ranshaw House was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t515 W Penn St.<br />North Liberty, IA 52317<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Twin Bridge",
            "lat": "42.834527",
            "lon": "-91.864770",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Twin Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.834527,-91.864770\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Twin Bridge was built in 1910 over the Volga River in Fayette. The bridge has an 80 foot span, making it the longest Luten truss bridge in the state. The Twin Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Ave.<br />Fayette, IA 52142<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Upper Paris Bridge",
            "lat": "42.244534",
            "lon": "-91.584678",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Upper Paris Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.244534,-91.584678\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Upper Paris Bridge is an historic structure located near the town of Coggon in rural Linn County. The pinned Whipple through truss bridge was built in 1879 and was designed by the Wrought Iron Bridge Company of Canton, Ohio. The bridge is best accessed by turning west on to County Road D66  (Paris Road) from Iowa Highway 13, and then following Sutton Drive north. The bridge was listed on the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5300 Sutton Dr.<br />Coggon, IA 52218<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Rock Forest School District No. 4",
            "lat": "42.920046",
            "lon": "-95.347667",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clay-historicschool-rockforestschool-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rock Forest School District No. 4</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.920046,-95.347667\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rock Forest School opened in 1868. The school was a traditional one room school house, though not located out in the countryside. The school is located in the SW corner of the town of Peterson. The school operated until 1918, and is now being used as a museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t213 W Front St.<br />Peterson, IA 51047<br />Clay County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Taylor County",
            "lat": "40.614577",
            "lon": "-94.479350",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Taylor County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.614577,-94.479350\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Taylor County Freedom Rock® in Blockton features Zachary Taylor. Taylor served in the Army for four decades, commanding troops in the War of 1812, the Black Hawk War and the second of the Seminole Wars. He became know as a war hero through his service in the Mexican War, which broke out in 1846 after the U.S. annexation of Texas. He was elected president in 1848 as the choice of both parties. He is the namesake of Taylor County. The front side of the rock are the flags that mark the cemetery in Blockton. On the back side is a piece for Prisoners of War and those Missing in Action. A hand is grasping barbed wire to illuminate the pain and struggling they&#039;ve statue represents Civil War veterans and the many Civil War monuments across the county. The Taylor County (Blockton) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t509 Division St.<br />Blockton, IA 50836<br />Taylor County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Kalona Historical Village and Mennonite Museum",
            "lat": "41.485097",
            "lon": "-91.702216",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/washington-historymuseum-kalonahistoricalvillage.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kalona Historical Village and Mennonite Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.485097,-91.702216\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1969, the Alpha Club [a Federated Women&#039;s Club] had a project to &quot;Save the Old Depot&quot;. That led to the formation of the Kalona Historical Society. They acquired a site, moved the depot, and restored it into the Kalona Historical Village and Mennonite Museum. They used a 2-block-long area along Iowa 22. Then the Wahl Museum was erected where valuable antique collections and displays about Kalona during the last 100 years is stored and displayed. The village itself has 13 restored period buildings, furnishings, agricultural equipment, and railroad memorabilia. The most interesting buildings are the 1890&#039;s one-room country store, a one-room schoolhouse [&quot;Straw College&quot; straw bales were placed outside to keep in the heat in winter], an 1850&#039;s post office, the 110 year-old depot, an 1842 Snyder log house, a beautiful Victorian Wahl House, and a working windmill. The Wahl Museum highlights businesses, crafts, tools, and artistry of Kalona and the Mennonite people.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t715 D Ave<br />Kalona, IA 52247<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.656.3271</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://kalonaiowa.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Big 4 Fair Art Hall",
            "lat": "40.908912",
            "lon": "-92.215065",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/wapello-nhr-big4fairarthall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Big 4 Fair Art Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.908912,-92.215065\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Big 4 Fair Art Hall is significant as a contribution to Wapello County&#039;s early 1900 Fair Exhibitions. The property is also significant for displaying distinctive types of architectural styles. The building has a central area from which four wings extend. Each wing is used to represent a surrounding county in the area. The Big 4 Fair Art Hall was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWater St.<br />Wapello County Fairgrounds<br />Eldon, IA 52554<br />Wapello County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Philip and Anna Parrish Kirchner Log House",
            "lat": "42.928369",
            "lon": "-95.346631",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Philip and Anna Parrish Kirchner Log House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.928369,-95.346631\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Philip and Anna Parrish Kirchner log house was built in 1867 during the pioneer settlement. It was restored in 1910 during the turn-of-the century restoration efforts to honor Northwest pioneers. It was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4969 120th St.<br />Peterson, IA 51047<br />Clay County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Dreamland Theatre",
            "lat": "41.236228",
            "lon": "-95.422107",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-theater-dreamlandtheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dreamland Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.236228,-95.422107\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dreamland Theatre was opened in 1920 as the Cozy Theatre. The theatre was moved in 1927 and renamed the Dreamland Theater. The Carson Business Club purchased the theater in 1958, and continues to operate the theater as a non-profit community movie theater.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t107 Broadway Blvd.<br />Carson, IA 51525<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "H. A. White General Store and House",
            "lat": "41.748663",
            "lon": "-91.598281",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">H. A. White General Store and House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.748663,-91.598281\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The H.A. White General Store and residence is a rare surviving example of a nineteenth-century vernacular commercial storefront. It was the first general store in North Liberty, and was the residence and focal point for the many and varied commercial enterprises of H. A. White (1847-1924). The H. A. White General Store and House was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10 W Cherry St.<br />North Liberty, IA 52317<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Montgomery County History Center",
            "lat": "41.029818",
            "lon": "-95.226727",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-historymuseum-montgomerycountyhistorycenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Montgomery County History Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.029818,-95.226727\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Montgomery County History Center sits on seven acres of land atop a hill over-looking Red Oak. Numerous historic buildings stand on the center&#039;s property including the Pittsburg School, Sciola Missionary Baptist Church and a pioneer log cabin. The center&#039;s museum features displays from the pre-historic residents of the area through the 20th century. The center is home to the Montgomery County Historical Society and houses research archives and genealogy records.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2700 N 4th St.<br />Red Oak, IA 51566<br />Montgomery County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.623.2289</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://freewebs.com/montgomerycountyhistorycenter\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Riceville Community Elementary and Riceville High School",
            "lat": "43.354980",
            "lon": "-92.552960",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a8b477e5b527527ef.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Riceville Community Elementary and Riceville High School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.354980,-92.552960\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Jane Elliott taught third grade at the Riceville Community School when she developed the &quot;Blue Eyes-Brown Eyes&quot; demonstration. \r\n\r\nFollowing the assassination of Dr. Martin Luther King, Jr., Elliott used the demonstration to explain discrimination and how it affects people. \r\n\r\nElliott separated the students with blue eyes from the students with brown eyes. Each group spent one day as a &quot;superior&quot; group and one day as an &quot;inferior&quot; group. She used this lesson with third-graders from 1968-1976 and seventh- and eighth-graders from 1977-1984.\r\n\r\nThe &quot;Blue Eyes-Brown Eyes&quot; demonstration was widely covered by the press. In 1969, Elliott appeared on The Tonight Show Starring Johnny Carson and in 1970 Elliott and her work was the subject of an ABC News Special: &quot;The Eye of the Storm.&quot;\r\n\r\nEven with national attention, the &quot;Blue Eyes-Brown Eyes&#039;&#039; demonstration was not universally accepted in the Riceville community. The exercise also divided social scientists and educators some of whom thought the lesson was useful but others thought it was cruel.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t912 Woodland Ave.<br />Riceville, IA 50466<br />Howard County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Harvey Barn",
            "lat": "43.371305",
            "lon": "-94.695471",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/emmet-barn-harveybarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Harvey Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.371305,-94.695471\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Harvey Homestead was settled in the late 1800s by Scottish immigrant William Harvey who emigrated to America in 1861, settling in Algona before moving to Emmetsburg in 1886. The farm features a clay-tile barn, built in 1925, as well as numerous well-preserved outbuildings including a chicken house, crib, garage, blacksmith shop and woodworking shop.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4516 190th St.<br />Estherville, IA 51334<br />Emmet County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Cooper Township Round Barn",
            "lat": "42.129252",
            "lon": "-95.728377",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cooper Township Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.129252,-95.728377\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>A well known auctioneer had this barn built in 1921 in order to use it for selling his purebred cattle. The open plan and windows in the roof are identifying features of this type. The construction, in the early 20th Century, of special function barns represented an important shift in the traditional use of barns. It was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t15755 IA HWY 141<br />Mapleton, IA 51034<br />Monona County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Alvin Melton Granary",
            "lat": "42.800265",
            "lon": "-95.467619",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alvin Melton Granary</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.800265,-95.467619\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This granary was built in 1910. It is believed to be the first granary in Cherokee County. This impressive building still has the dump cups, chain and switching mechanism, used to fill the four large overhead bins, and the attached &quot;engine room&quot; where horses, and later tractors, supplied the power.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4942 U Ave.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chautauqua Park",
            "lat": "41.016775",
            "lon": "-95.221313",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-nhr-chatauquapark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chautauqua Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.016775,-95.221313\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Chautauqua movement was established in New York in 1874 and quickly became a major cultural influence in the Midwest. A Chautauqua Assembly brought in entertainment and culture for the whole community, with speakers, teachers, musicians, entertainers, preachers and specialists of the day. Most Chautauqua enclosures were tents, however the pavilion built in Red Oak in 1908 was an exception. The opening address at the Red Oak pavilion was made by William Jennings Bryan and continued to be used for annual Chautauqua programs until 1929. It was added to the National Register of Historic Places in 1972.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tSummit St.<br />Red Oak, IA 51566<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Edmund B. Osborne House",
            "lat": "41.013818",
            "lon": "-95.220004",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-nhr-edmundosbornehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Edmund B. Osborne House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.013818,-95.220004\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Osborne House was built in 1897 and is one of a few homes in Red Oak that utilized the Neoclassical variation of the Classical Revival design that was popularized by the World’s Colombian Exposition in Chicago in 1893. Only the Osborne House is designed with the impressive two-story pediment portico relegated to more monumental examples of the Neoclassical style. In addition, the home had been built for Edmund B. Osborne with the wealth he had acquired as the inventor and co-developer of the art calendar industry. The house was used by the Osborne family until the growth of the industry necessitated relocating the business to New Jersey in 1899, closer to the art center of the United States at that time. It was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1020 Boundary St.<br />Red Oak, IA 51566<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Grace Hill Moravian Church",
            "lat": "41.263247",
            "lon": "-91.829885",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grace Hill Moravian Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.263247,-91.829885\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>From 1908 until its closing in 1970, the Grace Hill Church was the only Moravian church in the state of Iowa. Today it is probably the only structure remaining from the missionary and colonizing efforts, which in the 19th century established at least seven Moravian settlements and congregations in the sate. It was added to the National Register of Historic Places on August 12, 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2706 Ginkgo Ave.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hebard House",
            "lat": "41.010729",
            "lon": "-95.222828",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-nhr-hebardhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hebard House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.010729,-95.222828\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Alfred and Anna Hebard house was built by David S. Haas during the summer and fall of 1874. The houseis of the Italiante style of architecture and sits atop &quot;East Hill&quot; overlooking College Park (donated to the city by Mr. Hebard) and the Nishnabotna River Valley. After his brief service as a governor&#039;s military aide and graduation from Yale, he settled in Iowa. Hebard served in the 1840, 1841 and 1843 territorial legislatures, surveyed and platted the town of Red Oak and served in the state senate from 1875-1879 representing Mills and Montgomery Counties. The Hebards occupied the house until Alfred&#039;s death in 1886. The Hebard House was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t700 8th St.<br />Red Oak, IA 51566<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Iowa Children&#039;s Museum",
            "lat": "41.690047",
            "lon": "-91.600119",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-historymuseum-iowachildrensmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Children&#039;s Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.690047,-91.600119\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Children&#039;s Museum is a vibrant cultural attraction, educational family resource, and vital element in the Iowa economy. Its mission is to inspire every child to imagine, create, discover, and explore through the power of play. The museum serves this mission through interactive exhibits, engaging hands-on programs, and community outreach. With approximately 160,000 children and adults visiting annually, The Iowa Children&#039;s Museum is one of the largest cultural attractions in Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1451 Coral Ridge Ave.<br />Coralville, IA 52241<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.625.6255</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.theicm.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Roberts Octagon Barn",
            "lat": "41.590128",
            "lon": "-91.635548",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Roberts Octagon Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.590128,-91.635548\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Roberts Octagon Barn is one of the oldest surviving round barns in Iowa. The barn appears to be derivative of Lorenzo Coffin’s Octagon Barn (1867) in Webster County. The Coffin type octagon barn is specifically characterized by a non-self-supporting modified hip roof. Other identifying features include the heavy timber construction, rectangular interior plan and the general purpose function. The Roberts Octagon Barn was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4716 Kansas Ave. SW<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Smith Family Trust Barn",
            "lat": "42.787763",
            "lon": "-95.486491",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Smith Family Trust Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.787763,-95.486491\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn is owned by grandchildren of original owner, William Smith, whose family purchased the farm with the barn in 1907.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5034 T Ave.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Siebels&#039; Department Store / Boyer Valley Bank",
            "lat": "41.737201",
            "lon": "-95.702264",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Siebels&#039; Department Store / Boyer Valley Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.737201,-95.702264\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Siebels’ Department Store was in business from 1905 to 1954, after buying out the previous grocery business and expanding its services. The company’s owner, Adolph Siebels, owned the building and rented space in three adjoining buildings to accommodate the store’s expansion, providing a place for residents to shop for a wide variety of goods. The business established the Siebels family’s reputation so well that their name carried on through two successive owners of the store. The building was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t501 Walker St.<br />Woodbine, IA 51579<br />Harrison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Woodbine Savings Bank",
            "lat": "41.736844",
            "lon": "-95.701872",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Woodbine Savings Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.736844,-95.701872\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Woodbine Savings Bank played a major role in the development of local businesses and services during their fledgling years. Many of these businesses went on to greatly influence the development of the town of Woodbine as a whole. It was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t424 Walker St.<br />Woodbine, IA 51579<br />Harrison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "James C. Fellows House",
            "lat": "43.364132",
            "lon": "-92.551438",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James C. Fellows House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.364132,-92.551438\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1856, the James C. Fellows House is a local architectural landmark in Riceville and a reminder of the Fellows family&#039;s role in establishing commercial ventures during the earliest settlement of the town. It was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t204 E Main St.<br />Riceville, IA 50466<br />Howard County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Woodbine Lincoln Highway and Brick Street Historic District",
            "lat": "41.736999",
            "lon": "-95.702085",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Woodbine Lincoln Highway and Brick Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.736999,-95.702085\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The original transcontinental Lincoln Highway runs through Woodbine, where the road was first bricked in 1921. The eleven blocks of Lincoln Way that make up the Woodbine Lincoln Highway and Brick Street Historic District also make up the longest remaining original portion of the Lincoln Highway in Iowa. The area, which harkens back to the days when the original Lincoln Highway route went directly through over 40 Iowa communities, was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t70 5th St.<br />Woodbine, IA 51579<br />Harrison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Woodbine Public Library",
            "lat": "41.736854",
            "lon": "-95.703714",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Woodbine Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.736854,-95.703714\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The city of Woodbine purchased the land to build a public library in 1908, with funding from Andrew Carnegie. The library building was completed a year later and became the first public library in Harrison County. Although an addition was built on in 2001, the building maintains its architectural integrity, serving as a well-preserved example of the design work of the architectural firm Eisentraut and Co. of Sioux City. It was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t58 5th St.<br />Woodbine, IA 51579<br />Harrison County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.645.2750</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.woodbine.lib.ia.us\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Red Oak High School",
            "lat": "41.011231",
            "lon": "-95.228591",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Red Oak High School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.011231,-95.228591\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Red Oak High School, built in 1917 and expanded in 1954, illustrates the changing nature of American education. The three-story building is the oldest public school in Red Oak. It was designed by Trunk and Gordon of St. Joseph, Missouri, and is an excellent example of the Classical Revival style of architecture. It was built as a community showpiece that would be modern and enduring, as well as safe and usable for faculty and students. \r\n\r\nFrom 1922 to 1943 and again from 1946 to 1951, the third floor of the building was used as a junior college, to pave the way for a college education and allow local students with college aspirations to live at home and save money while pursuing higher education. \r\n\r\nIn 1954, a two-story Mid Century Modern annex designed by Joseph W. Radowsky of Kansas City, Kansas, was added to the school. Roughly two-thirds of the annex was a gymnasium, demonstrating the increased importance of high school sports as a source of community pride and expanding the spectator capacity from 400 to 2,100. \r\n\r\nThe Red Oak High School served as a high school and middle school until 2019 and was added to the National Register of Historic Places on June 22, 2022.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t308 E Corning St.<br />Red Oak, IA 51566<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "George H. Hawkins Memorial - In Memory of Rainbow Division World War I",
            "lat": "41.009288",
            "lon": "-95.228350",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/5fe0eb9815bec21a963d7.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George H. Hawkins Memorial - In Memory of Rainbow Division World War I</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.009288,-95.228350\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108mi.</span></div>\n\t\t</div>\n\n\t\t<p>Private George Hawkins of Red Oak was marching toward the Rhine River with his comrades of the Rainbow (42nd Infantry) Division when he got sick. According to the Atlantic News Telegraph of Jan. 11, 1919, Hawkins&#039; uncle, Lieutenant Owen C. Hawkins, wrote the family from Europe to explain that the army had been &quot;marching through all kinds of weather and undergoing considerable hardship. ... After seven straight days of marching through the rain, twenty men fell out on account of sickness and exhaustion.&quot; Hawkins was one of them. He died of pneumonia at Prium, Germany, on Christmas Day, 1918. A funeral was held for him in Red Oak the following October.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCoolbaugh St. and 4th St.<br />Fountain Square Park<br />Red Oak, IA 51566<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Montgomery County World War Heroes",
            "lat": "41.009420",
            "lon": "-95.228711",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Montgomery County World War Heroes</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.009420,-95.228711\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108mi.</span></div>\n\t\t</div>\n\n\t\t<p>A boulder in Fountain Square Park lists all the World War I soldiers from Montgomery County, including those who died in service and those who died after the war. The memorial tablets were installed by the local Elks Lodge in 1927. Of note is Captain John C. Christopher who was born in Red Oak in 1891 and enlisted in the Iowa National Guard in 1910. His company was called into federal service and sailed for France on Nov. 14, 1917. According to a 1927 obituary in the Annals of Iowa, &quot;he saw hard service at the front and received three decorations and two citations for bravery.&quot; He returned home to Iowa in 1919 and died in 1926 from tuberculosis, which he had contracted during the war.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCoolbaugh St. and 4th St.<br />Fountain Square Park<br />Red Oak, IA 51566<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Buresh Farm",
            "lat": "41.810168",
            "lon": "-91.562848",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buresh Farm</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.810168,-91.562848\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Buresh Farm is a well-preserved example of a late 19th century agricultural operation in Iowa. The farm buildings reflect the variety of activities which typified pre-mechanized farming, such as raising cattle and hogs for home and market. The Buresh Farm was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3769 170th St. NE<br />Solon, IA 52333<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Stone Man of Fayette",
            "lat": "42.851202",
            "lon": "-91.845084",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stone Man of Fayette</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.851202,-91.845084\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Stoneman is a weathered, granite, glacial erratic who came to Fayette County over 500,000 years ago in a glacier.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t15302 M Ave.<br />Fayette, IA 52142<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.425.4447</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Red Oak Firehouse and City Jail",
            "lat": "41.007774",
            "lon": "-95.228229",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-nhr-redoakfirehousecityjail.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Red Oak Firehouse and City Jail</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.007774,-95.228229\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Red Oak Firehouse was built in 1898 with many additions made in subsequent years as the city grew rapidly. The City Jail was added in 1901, horse stables in 1907 and the City Tool House in 1924. The facility housed the volunteer firemen’s organization, training center for firemen, living areas for fireman and their families, and maintenance and equipment facilities. The firemen began using horse drawn equipment in 1907 and received its first motorized fire truck in 1920. The horses were retired in 1922 when the second fire truck was purchased. The fire department remained in the building until relocating in 1980. The original Red Oak Firehouse and City Jail was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t318 E Washington Ave<br />Red Oak, IA 51566<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Johnson County Poor Farm",
            "lat": "41.656492",
            "lon": "-91.604978",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-johnsoncountypoorfarmasylum-3.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Johnson County Poor Farm</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.656492,-91.604978\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Johnson County Asylum, the first county facility for the poor and the mentally ill, was a four-room cabin built in 1855. Two long wings were added in 1859 to increase the facility&#039;s capacity. The Johnson County Asylum was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4799 Melrose Ave.<br />Iowa City, IA 52246<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.351.5738</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Grand Theatre",
            "lat": "41.008816",
            "lon": "-95.227413",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-theater-grandtheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.008816,-95.227413\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grand Theatre built between 1899 and 1908 and originally housed a farm implement business on all three floors. It is unknown when the building began being used as a theater, however was in operation by 1948. The Johnson Brothers, the original owners, operated the theater until the 1970s, when they sold it to Associated Theatres. Fridley Theatres purchased and renovated the theater in the 1990s, replacing many of the historic elements. Local citizens have worked to reopen the theater as a nonprofit organization run by volunteers offering showtimes on weekends.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t410 E Coolbaugh St.<br />Red Oak, IA 51566<br />Montgomery County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.623.3169</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://redoakgrandtheatre.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Montgomery County Courthouse",
            "lat": "41.009284",
            "lon": "-95.230954",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-nhr-montgomerycountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Montgomery County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.009284,-95.230954\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Montgomery County Courthouse cornerstone was laid on July 4, 1890. The courthouse is designed in the Victorian Romanesque style with a profusion of towers, turrets, finials, cresting, large polygonal bay and clock tower. In 1856, the first court sessions were held in a single room of a log house in Frankfort, the county seat at the time. Later, a small two-story building was constructed and on June 8, 1864 the county seat was moved to Red Oak. One of the conditions for relocation was that the current structure be moved as well. Citizens raised the courthouse onto large sleds led by 30 oxen and set out toward Red Oak. Caught in a snowstorm halfway to their destination, the men lost control of the sleds, the oxen were unhitched and the crew sought shelter. The courthouse slid across the prairie and was lost, eventually being found on a homestead two miles northeast of Red Oak and it was placed in the public square. When the new and current courthouse was completed in 1891 it was highly celebrated by the citizens of Montgomery County.  It was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCoolbaugh St.<br />Red Oak, IA 51566<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Red Oak Public Library",
            "lat": "41.008270",
            "lon": "-95.230266",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-nhr-redoakpubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Red Oak Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.008270,-95.230266\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Red Oak Public Library was built in 1909 by Patton and Miller of Chicago in a rustic brick-and-half-timber style. The two-story building has its front entrance at grade and buttresses rise from base blocks in a gentle concave curve and then disappear into the walls, only to emerge again above the eaves as chunks of parapet. The building still serves as the public library for Red Oak and was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 N 2nd St<br />Red Oak, IA 51566<br />Montgomery County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.623.6516</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.redoak.lib.ia.us/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Beryl Carroll Gravesite",
            "lat": "40.762007",
            "lon": "-92.412429",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Beryl Carroll Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.762007,-92.412429\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Beryl Franklin Carroll (March 15, 1860 – December 16, 1939) served as the 20th Governor of Iowa from 1909 to 1913. He died in Bloomfield as is buried at the Odd Fellows Cemetery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tOdd Fellows Cemetery<br />Madison St.<br />Bloomfield, IA 52537<br />Davis County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Old State Quarry",
            "lat": "41.763491",
            "lon": "-91.570411",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old State Quarry</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.763491,-91.570411\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old State Quarry played an important role in the settlement history and architectural heritage of Iowa during the mid-to late nineteenth century. The Old Capitol Building site in 1839 was chosen because of the availability of the stone quarry. Quarrying activity continued from the 1840s through the 1860s, supplying building stone and foundation materials to several buildings in the Iowa City area. The most extensive quarrying operations at the Old State Quarry were undertaken during the 1870s to supply foundation blocks for the construction of the new state capitol in Des Moines. The Old State Quarry was added to the National Register of Historic Places in 1998.\r\n\r\nIf visiting the quarry, travel on Rice Ridge Ln. NE, keeping to the right and park on the edge of the road. Please do not block driveways and respect private property.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRice Ridge Ln. NE<br />North Liberty, IA 52317<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Thomas D. Murphy Company Factory and Power Plant",
            "lat": "41.004234",
            "lon": "-95.229969",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-nhr-thomasmurphycompany.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thomas D. Murphy Company Factory and Power Plant</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.004234,-95.229969\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Thomas. D. Murphy Calendar Co. Factory and Power Plant was established by Thomas D. Murphy, the primary inventor of the first successful advertising art calendars and the individual most responsible for the creation, development and expansion of the art calendar industry in the United States and abroad. His manufacturing facility in Red Oak would become the largest of is kind in the world, set the standard for quality in the field, and serve as the training ground for most of the individuals establishing competing firms. Murphy’s significance went far beyond advertising and business and extended to art education. Writing in 1912, famed early 20th Century philosopher, writer, and lecturer, Elbert G. Hubbard, asserted that Murphy and his company had made Red Oak, Iowa “the most influential art center in the world.” The complex is significant as an excellent example of an Arts and Crafts Movement influenced industrial facility that was considered a “model factory” in the early 20th Century because of its lighting, ventilation, and sanitation features and was often compared to the now demolished, internationally famous National Cash Register factory in Dayton, Ohio. It was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 S 2nd St<br />Red Oak, IA 51566<br />Montgomery County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Clay County Heritage Center",
            "lat": "43.138002",
            "lon": "-95.144953",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clay-historymuseum-claycountyheritagecenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clay County Heritage Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.138002,-95.144953\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clay County Heritage Center is the largest collection of historical artifacts in Clay County. Opened in 2012, the brand new museum has exhibits on the history of Spencer and Clay County, from its pioneer beginnings to the Great Spencer Fire of 1931. The museum is also the home of the Parker Historical Society of Clay County.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t7 Grand Ave.<br />Spencer, IA 51301<br />Clay County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.262.3304</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://parkermuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Parker Museum",
            "lat": "43.140279",
            "lon": "-95.140603",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clay-historymueum-parkermuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Parker Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.140279,-95.140603\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Parker Museum was originally the home of Reverend and Mrs. Parker. They, together with a group of citizens, created the Parker Historical Society and began using the house as a museum. The museum started out operating from a house owned by the Spencer School District, that would have artifacts on the second floor while teaching special education classes out of the first floor. The Parker family thought it would be better for the museum to have a permanent place, so they donated their home to be used as a museum when they leave. The Parker Museum opened officially in 1969, when Mrs. Parker was transferred to a nursing home.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 E 3rd St.<br />Spencer, IA 51301<br />Clay County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.262.3304</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://parkermuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Burlington Northern Depot and World War II Memorial Museum",
            "lat": "41.002340",
            "lon": "-95.231040",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/montgomery-historymuseum-burlingtonnortherndepot.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Burlington Northern Depot and World War II Memorial Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.002340,-95.231040\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The restored Burlington Northern Depot and World War II Museum is a collection of railroad and military artifacts from Montgomery County. The Depot contains the history of the Chicago, Burlington, and Quincy railroad depot, and the role it played in linking Red Oak to more modern cities in the area. Many fledgling pioneer towns, which blossomed on the Midwest prairie during the nineteenth century, were platted, nourished and sustained by railroads. Almost everything which was not grown in western Iowa towns came by rail. The Red Oak depot is the most significant reminder of the impact of the railroad in Red Oak’s development. The WWII museum commemorates the service and sacrifice of the men of Montgomery County, which lost one of the highest percentages of its soldiers in the war. The depot was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t305 S 2nd St.<br />Red Oak, IA 51566<br />Montgomery County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.623.6048</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://depothill.net\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Cherokee County Park Barn",
            "lat": "42.649195",
            "lon": "-95.592199",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cherokee County Park Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.649195,-95.592199\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn is a 52&#039; x 120&#039; foot barn built in the early 1900s. Originally owned by Wayne Little and used as a loafing barn for dairy cattle, it&#039;s the main feature at the Silver Sioux Recreation Area on the Little Sioux River.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5954 Silver Sioux Rd.<br />Silver Sioux Recreation Area<br />Quimby, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Spencer High School and Auditorium",
            "lat": "43.141205",
            "lon": "-95.142242",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spencer High School and Auditorium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.141205,-95.142242\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Spencer High School and Auditorium was built in 1914. The school is associated with Amplias Hale Avery, a State Representative who served as the District Superintendent for Spencer’s school system. It was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t104 E 4th St.<br />Spencer, IA 51301<br />Clay County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Robert Kirkpatrick Round Barn",
            "lat": "42.305047",
            "lon": "-91.558145",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Robert Kirkpatrick Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.305047,-91.558145\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Robert Kirkpatrick Round Barn was built in 1919 and is located near Coggon in rural Delaware County. The building measures 60 feet around, and made with hollow clay tiles. It features a two pitch roof with a large hay dormer on the east side and two smaller dormers on the west and north sides. The barn was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3342 120th Ave.<br />Coggon, IA 52218<br />Delaware County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Kirkpatrick Round Barn (Dighton Barn)",
            "lat": "42.305045",
            "lon": "-91.558146",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/delaware-barn-dightonbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kirkpatrick Round Barn (Dighton Barn)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.305045,-91.558146\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Robert and Jennie Light Kirkpatrick purchased their farm in 1907 and immediately began improvements to the place. Kirkpatrick fattened cattle every year, then they were driven to Coggon and went on the Illinois Central railroad to Chicago. Kirkpatrick had drawn up plans and poured cement for a new feeding barn when the idea of a round barn came up. Kirkpatrick and a neighbor, Ransom Trumbull, took an over-night train trip to Rockwell City, Iowa, where they inspected round barns. Both came home and built round barns – Trumbull in 1918 and Kirkpatrick in 1919.  The barn was built in the style of Johnston Brothers Clay Works, of Fort Dodge, Iowa.\r\n\r\nKirkpatrick’s youngest daughter, Irene, married Duane Dighton in 1935 and he took over the farming operation. A new generation of Dightons had the barn added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3344 120th Ave.<br />Coggon, IA 52218<br />Delaware County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry Wishard House",
            "lat": "40.751563",
            "lon": "-92.419956",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry Wishard House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.751563,-92.419956\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction on the Wishard House began in 1908 and took over 2 years to complete. It is in the late Victorian Queen Anne style, with a limestone foundation, sandstone ledges, and copper flashing. The home and grounds have remained virtually unchanged since their completion, and the property was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t406 W Jefferson St.<br />Bloomfield, IA 52537<br />Davis County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "James B. Weaver House",
            "lat": "40.755353",
            "lon": "-92.412619",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/davis-nhr-weaverhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James B. Weaver House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.755353,-92.412619\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Weaver House was built in 1867 by General James B. Weaver (1833-1912). Weaver bought the land for the house about 1865 and it is believed that it was erected about 1867. He lived in it until 1890, when he moved to Des Moines. Weaver was an abolitionist who served in the Civil War and fought at Shiloh. He was later elected district attorney of the Second Iowa Judicial District, served as a federal assessor of internal revenue and was elected mayor of Colfax, Iowa. He was a Greenback candidate for President in 1880 and a Populist candidate in 1892. In 1892, Weaver received 1,041,028 votes and won four states. It was one of the best performances of a third party candidates in the history of American elections. The Weaver House is a two story, L-Shaped house with a two tiered balcony. The home has been converted into the Weaver House Inn, a bed and breakfast. The house was named a National Historic Landmark and was added to the National Register of Historic Places in 1975.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 Weaver Rd.<br />Bloomfield, IA 52537<br />Davis County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.664.1374</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://theweaverhouseinn.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Grand Avenue Historic Commercial District",
            "lat": "43.142390",
            "lon": "-95.144793",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand Avenue Historic Commercial District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.142390,-95.144793\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grand Avenue Historic Commercial District is a three block stretch of the main street in Spencer&#039;s central business district between 3rd and 7th Streets. Construction began around 1870, but the business district was rebuilt after a major fire in 1931. Many of the structures were built after the fire, meaning it has many popular early 20th century building styles. It was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tGrand Ave.<br />Spencer, IA 51301<br />Clay County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Pioneer Trail Museum",
            "lat": "41.193011",
            "lon": "-95.425091",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-historymuseum-pioneertrailmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pioneer Trail Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.193011,-95.425091\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pioneer Trail Museum is dedicated to the Mormon Trail and chronicles the journey from Nauvoo, Illinois, to Salt Lake City, Utah. The exhibits include possessions of the travelers, methods of transportation, and more. It is the headquarters of the Macedonia Historical Preservation Society.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t316 Main St.<br />Macedonia, IA 51549<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.486.2323</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.macedoniaiowa.com/historical-society.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Stempel Bird Collection and Museum",
            "lat": "41.192699",
            "lon": "-95.424937",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-historymuseum-stempelbirdmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stempel Bird Collection and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.192699,-95.424937\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dr. Guido Louis Stempel, M.D. (1836 – 1917) was a self-made authority in the areas of ornithology and entomology. Then and now, his bird and butterfly collections were considered to be the best in the state of Iowa. After the disintegration of his collection of over 3,000 butterflies due to inattention over the years, in 1967 the Stempel family generously decided to donate his collection of 312 birds to the care of Pottawattamie County Conservation Board for display to the public. In this way, the mission of Dr. Stempel was realized-that future generations would still be able to observe species that were rapidly becoming endangered and may soon be extinct. Open by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t311 Main St.<br />Macedonia, IA 51549<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.486.2323</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.macedoniaiowa.com/stempel-bird-museum.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First Welsh Congregational Church and Cemetery",
            "lat": "41.613154",
            "lon": "-91.609399",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Welsh Congregational Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.613154,-91.609399\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This simple, rural church derives significance from its place in the ethnic heritage of the Welsh people. In the late 1830s, a group of Welsh immigrants relocated from Pennsylvania to southeastern Iowa and built a settlement along “Old Man’s Creek.” They founded the congregation in 1846 and the first church was built in 1856. As the congregation grew, it became necessary to replace the early church with the present structure. The First Welsh Congregational Church was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4405 Sharon Center Rd. SW<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Clay County Courthouse",
            "lat": "43.141767",
            "lon": "-95.148202",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clay-nhr-claycountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clay County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.141767,-95.148202\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The courthouse is the historical focus of county government and of the political power. A community would derive prestige from their status as a county seat. As the center of county government, an Iowa county seat town was reasonably assured of economic and population growth. Peterson was the first county seat of Clay County, but in 1871, the county seat was moved to Spencer. By the turn of the century, Clay County needed a larger courthouse. Citizens did not want a plain, unpretentious courthouse and in 1900 the present courthouse was built at a cost of $60,000. It is a red stone structure, with pillars and a bronze dome. It was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW 4th St.<br />Spencer, IA 51301<br />Clay County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bloomfield Square Historic District",
            "lat": "40.751182",
            "lon": "-92.415280",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bloomfield Square Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.751182,-92.415280\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bloomfield Square district (Franklin St., Madison St., Jefferson St., Washington St.) is made up of a harmonious grouping of late 19th-century commercial styles of architecture and demonstrates a small Midwestern town&#039;s transition from log and wood structures to substantial and decorative brick buildings. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t207 S Washington St.<br />Bloomfield, IA 52537<br />Davis County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Iowa Theatre, Bloomfield",
            "lat": "40.751139",
            "lon": "-92.413460",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Theatre, Bloomfield</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.751139,-92.413460\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Theatre Building is part of the Bloomfield Square National Historic District and was added to the National Register of Historic Places in 1976. In 1977 the Davis County Fine Arts Council formed and purchased the Iowa Theatre. The theatre is used for movies, theatrical productions and school productions.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t107 S Washington St.<br />Bloomfield, IA 52537<br />Davis County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.664.9588</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://daviscountyfinearts.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Davis County Courthouse",
            "lat": "40.751143",
            "lon": "-92.414456",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/davis-nhr-daviscountycourthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Davis County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.751143,-92.414456\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1877, the Davis County Courthouse is the focus of the Bloomfield town square. The building features the original bell tower, built in Troy in 1876; a four-faced clock; and a life-size statue of the goddess of justice, with a scale in one hand and a sword in the other. The courthouse was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Courthouse Sq.<br />Bloomfield, IA 52537<br />Davis County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lockkeeper&#039;s House",
            "lat": "40.885312",
            "lon": "-92.197092",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/davis-nhr-lockkeepershouse-6.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lockkeeper&#039;s House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.885312,-92.197092\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lockkeeper&#039;s House was built around 1857 and stands on the east side of the Des Moines River, near the point where Jefferson, Van Buren, Davis and Wapello Counties meet. The Lockkeeper&#039;s house has been long associated with the unsuccessful Des Moines River Improvement Project that began in 1846, in an attempt to make the Des Moines River navigable from the Mississippi River to Fort Des Moines. This house was associated with Lock and Dam No. 10 that was to be constructed at this site, on land purchased by James Jordan, an Indian trader. The house was built from locally produced limestone and is a simple two-story floor plan, with two rooms on each floor and a chimney enclosed in the center wall. The Lockkeeper&#039;s House was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10400 Whitefish Tr.<br />Eldon, IA 52554<br />Davis County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Asa Wilson House",
            "lat": "40.749777",
            "lon": "-92.413450",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Asa Wilson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.749777,-92.413450\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wilson House is a significant local example of the Italianate style of architecture, built in 1884. It was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t290 S Washington St.<br />Bloomfield, IA 52537<br />Davis County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Davis County Historical Society Museum",
            "lat": "40.750456",
            "lon": "-92.412058",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Davis County Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.750456,-92.412058\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Davis County Historical Museum Complex is operated by the Davis County Historical Society. Since the Society was incorporated in 1962, the complex includes the two-story brick William Findley home, the Mormon log cabin, the Livery Barn, Wheeler Ridge School House, Center No. 5 School House and the Savannah Christian Church. The William Findley Home was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t205 S Dodge St.<br />Bloomfield, IA 52537<br />Davis County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.664.1104</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://visitdaviscounty.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Taylor County Historical Museum and Round Barn",
            "lat": "40.677022",
            "lon": "-94.729344",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/taylor-historymuseum-taylorcountyhistoricalmuseumandroundbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Taylor County Historical Museum and Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.677022,-94.729344\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Taylor County Historical Museum and Round Barn is a four-acre historical complex. The museum features an settler’s cabin, a train station, a caboose, a full machine shed and a small replica of a Heritage Chapel. A country school, the Hess School, is also part of the Museum complex. Also on site is a round barn, built south of Lenox by J. E. Cameron in 1907. The barn had deteriorated before it was moved to the museum site. The barn measures 50 feet high and 70 feet in diameter. It has a circular track that hangs from the haymow to support a Louden Litter Bucket. The Lenox Barn was added to the National Register of Historic Places in 1999.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1001 Pollock Blvd.<br />Bedford, IA 50833<br />Taylor County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.523.2041</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Joseph Moorhead Farmstead",
            "lat": "41.866607",
            "lon": "-91.535620",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Joseph Moorhead Farmstead</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.866607,-91.535620\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">108.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1859 this house is architecturally significant as a rare surviving example of an early heavy timber frame house. The Joseph Moorhead Farmstead was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t88 Palisades Access Rd.<br />Ely, IA 52227<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "August and Vera Luedtke Barn",
            "lat": "41.038333",
            "lon": "-91.999669",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">August and Vera Luedtke Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.038333,-91.999669\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1947 for dairy farming, the August and Vera Luedtke Barn possesses architectural significance as a good, representative example of a mid-Twentieth Century dairy barn, whose design was influenced by the Architectural Department of the Louden Machinery company and whose interior was equipped with Louden-manufactured equipment. This equipment remains intact today. Although many small dairy operations existed at that time—many equipped with Louden-manufactured stanchions—this is the only dairy barn, which has preserved that equipment intact, identified to date in Jefferson County. The August and Vera Luedtke Barn was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1938 185th St.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Union Presbyterian Church",
            "lat": "43.479597",
            "lon": "-92.810106",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Union Presbyterian Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.479597,-92.810106\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Union Presbyterian Church is a typical example of the small, rural, ethnic churches that played so important a role in the early history of Iowa. It was founded in the late 1850’s by early settlers of German descent. Until 1868, services were held in the houses of church members, after which the Presbyterians worshipped with Lutherans at St. Peter’s Lutheran Church in nearby Toeterville. A design feature that makes this church rather unusual is the extensive use of pressed tin in the interior, and the extent to which it has been preserved. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4952 Lancer Ave.<br />Stacyville, IA 50476<br />Mitchell County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Lily of the Valley No. 5 School",
            "lat": "42.761208",
            "lon": "-95.532684",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lily of the Valley No. 5 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.761208,-95.532684\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lily of the Valley #5 schoolhouse was built in 1890. The school was one of the major one room schools in Cherokee county. It operated until 1956, where it sat until being moved to its current location to avoid flood damage. Today, the building operates as a museum and living history center.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2020 IA Hwy. 3<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Adams-Higgins House",
            "lat": "43.150214",
            "lon": "-95.145780",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clay-nhr-adamshigginshouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Adams-Higgins House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.150214,-95.145780\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Adams-Higgins House, also known as the Higgins Mansion, was built in 1884, and sold to William Higgins and his wife around 1900. They hired architect J.G. Ralston of Waterloo to make the home an architectural landmark. The home is a combination of a Neoclassical roofline and porches on a Late Victorian home. The Adams-Higgins House was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1215 N Grand Ave.<br />Spencer, IA 51301<br />Clay County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bedford House",
            "lat": "40.666889",
            "lon": "-94.718137",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/taylor-nhr-bedfordhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bedford House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.666889,-94.718137\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bedford House was constructed in 1857 as a stagecoach stop. The building also housed the town jail and a fruit cellar. It was destroyed by fire, but the owner soon reconstructed the building and added a brick addition to face the street. The railroad arrived in Bedford in 1872 and the endless stream of strangers through the town and hotel were a source of variety and entertainment for locals. Bedford House became known as the “grandfather” of all Taylor County hotels. At the turn of the 20th Century, another addition was added to the building, electric lights were installed and the hotel was re-named Hotel Garland. Bedford House anchors the Bedford Commercial Historic District and it was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t306 Main St.<br />Bedford, IA 50833<br />Taylor County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bedford Public Library",
            "lat": "40.668091",
            "lon": "-94.720992",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/taylor-nhr-bedfordpubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bedford Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.668091,-94.720992\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bedford Public Library was built in 1916 as a gift to the community from steel magnate Andrew Carnegie. It was designed by Des Moines architects Wetherell and Gage, who also designed public libraries in Alden, Cherokee and Eldon. The building is faced in stucco and trimmed in brick with a red clay tile roof. The library is built in a style that combines Northern Renaissance and Georgian architecture. Inside, the library has two fireplaces. The Bedford Public Library was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t507 Jefferson St.<br />Bedford, IA 50833<br />Taylor County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.523.2828</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.bedford.lib.ia.us/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Taylor County Courthouse",
            "lat": "40.668389",
            "lon": "-94.720068",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/taylor-nhr-taylorcountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Taylor County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.668389,-94.720068\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Taylor County Courthouse was completed in the spring of 1893. It was built at a cost of $38,810. The courthouse is made of pressed brick and Bedford limestone, and has a large dome with an illuminated clock. The Romanesque-style building, designed by F.M. Ellis, has fireplaces in most of the rooms, and an elegant spiral staircase. The contractor lost money on the project, so the county gave him an additional $1,000 and a gold watch to show gratitude. As center of county government, an Bedford was reasonably assured of economic and population growth, and a prominent role in local social and political life. The Taylor County Courthouse was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t405 Jefferson St.<br />Bedford, IA 50833<br />Taylor County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bedford Commercial Historic District",
            "lat": "40.666976",
            "lon": "-94.719070",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/taylor-historicdistrict-bedfordcommercialhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bedford Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.666976,-94.719070\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bedford Commercial Historic District represents a central business district from the 1850s through today. Downtown Bedford is an exceptional example of late 19th century commercial construction, especially compared to other communities its size and age. After Bedford was chosen as the county seat, the downtown was built up around the intersection of Court Avenue and Main Street, with the Taylor County Courthouse as the focal point. When the railroad arrived in town, downtown continued to develop along Main Street and connecting to the railroad at the east end of Main Street. The Bedford Commercial Historic District is made up of the 200-500 blocks of Main Street, the 500-600 blocks of Court Avenue and the 500 block of Central Avenue.  It was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St., Court Ave., and Central Ave.<br />Bedford, IA 50833<br />Taylor County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Bedford Post No. 164 American Legion (Hardin Theatre)",
            "lat": "40.667108",
            "lon": "-94.718039",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/taylor-theater-americanlegion.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bedford Post No. 164 American Legion (Hardin Theatre)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.667108,-94.718039\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hardin Theater was built in 1955. It replaced the Clark Theatre, which has burned. The Hardin no longer operates as a theatre. The American Legion purchased the building in 1993 and uses it for offices and a social hall. The American Legion has retained the original Hardin Theater sign – but the sign now advertises the building as a legion hall.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 Main St.<br />Bedford, IA 50833<br />Taylor County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Xavier and Permelia Sawyer House",
            "lat": "42.203833",
            "lon": "-91.525074",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Xavier and Permelia Sawyer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.203833,-91.525074\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Xavier and Permelia Sawyer House, built in 1879, is a two-story wood frame home with elements of the Italianate architectural style. It was restored and furnished to 1900-1920 style and is listed on the National Register of Historic Places as part of the Central City Commercial Historic District. The house is one of many sites preserved by the Central City Historical Society and can be booked for tours, teas and receptions. Open by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t337 E Main St.<br />Central City, IA 52214<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.438.1713</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Paris School",
            "lat": "42.204812",
            "lon": "-91.524126",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Paris School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.204812,-91.524126\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Paris School (Jackson Township No. 6) held classes from about 1894-1954 in Section 29, Jackson Township, on the south side of the unincorporated community of Paris northwest of Central City. The school was moved and has been restored to the original old school room. It displays memorabilia from the eras of the one room school houses. Open by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t56 N 4th St.<br />Central City, IA 52214<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.438.1138</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Roy C. and Lena (Johnson) Seaman House",
            "lat": "42.753236",
            "lon": "-95.544401",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Roy C. and Lena (Johnson) Seaman House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.753236,-95.544401\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dr. Roy C. and Lena (Johnson) Seaman moved into their new Craftsman-style bungalow in 1913. Dr. Seaman operated the Seaman Cancer Infirmary next door, at 402 Magnetic Avenue. His father, who was also a cancer specialist, brought the family to Cherokee in 1895 when he established the Magnetic Mineral Springs Sanitarium at what is now known as Magnetic Springs Park. The younger Dr. Seaman (Roy) studied medicine at Drake University in Des Moines and Bennett Medical College in Chicago before returning to Cherokee in 1906. He purchased the infirmary and surrounding property from his father in 1909. \r\n\r\nWork on the Seaman House began in August 1912 and finished in 1913. It is the only property in Cherokee with significant use of decorative rounded stones on the porch and chimney. The Seamans lived in the home until their deaths -- Roy’s in 1933 and Lena’s in 1955 -- and the was added to the National Register of Historic Places in 2019.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 Magnetic Ave.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Central City Commercial Historic District",
            "lat": "42.204023",
            "lon": "-91.524561",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Central City Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.204023,-91.524561\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This historic district is significant because it calls attention to the effects transportation had on the emergence of the community&#039;s central business district during the late 19th and early 20th centuries. The district also calls attention to the architectural designs by noted local contractor and builder Paul Sigmund. The Central City Commercial Historic District was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t498 Main St.<br />Central City, IA 52214<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bedford Oil Company Service Station",
            "lat": "40.667190",
            "lon": "-94.721144",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/taylor-nhr-bedfordoilcompanyservicestation.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bedford Oil Company Service Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.667190,-94.721144\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bedford Oil Company Service Station opened on June 30, 1928, when automobiles were becoming common and corner gas stations were being built to accommodate the car culture. Built at the corner of Iowa Highway 48 and Main Street, the station marks the entrance to downtown Bedford. The tall arched windows, curved roof lines and stucco exterior of mission style architecture make the building very unique. For sixty-one years, the Bedford Oil Company Service Station functioned as a gas station with few changes because of the timeless style of the building. The Bedford Oil Company Service Station has been preserved for use as the Bedford Area Chamber. It was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 Madison St.<br />Bedford, IA 50833<br />Taylor County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "J.C. Clegg Library Museum",
            "lat": "42.204847",
            "lon": "-91.524327",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J.C. Clegg Library Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.204847,-91.524327\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Central City Historical Society oversees four museums one of which is The Old Library Museum. This building housed the J.C. Clegg Library from 1916-1987. This building is used for tours, historical research, genealogy research, storage of memorabilia, and cataloging work. The library building is part of the Central City Commercial Historic District on the National Register of Historic Places.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t56 N 4th St.<br />Central City, IA 52214<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.438.1138</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Cherokee Public Library &amp; Archives",
            "lat": "42.748561",
            "lon": "-95.551634",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cherokee-nhr-cherokeepubliclibraryandarchives-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cherokee Public Library &amp; Archives</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.748561,-95.551634\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cherokee Public Library shows the importance of a permanent library facility in small-town Iowa at the turn of the century. The library movement in Cherokee dates from September of 1886, when the Cherokee Ladies Library Association organized. The first library was organized in the YMCA. In 1905, Carnegie grants made a permanent library possible. It was added to the National Register of Historic Places in 1985.\r\n\r\nThe Cherokee Public Library&#039;s genealogy room contains microfilm of Cherokee newspapers from the late 1800s to the present, school yearbooks and various materials associated with the county&#039;s history. Adjacent to the library&#039;s genealogy room is the Cherokee Area Archives. Its collection includes family histories, an obituary file, information about buildings and businesses, a wonderful  selection of historical photographs and many other resources for genealogical research.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t215 S 2nd St.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712-225-3498</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cherokee.lib.ia.us/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "American Theater",
            "lat": "42.749759",
            "lon": "-95.550688",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cherokee-theater-americantheater-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">American Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.749759,-95.550688\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The American Theater was built in 1920, but was vacant until it was purchased in 1923. The theater enjoyed extreme popularity, and has maintained it throughout the years. The theater is still open today in its original location.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t108 E Main St.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "science-centers.png",
            "title": "Sanford Museum and Planetarium",
            "lat": "42.750222",
            "lon": "-95.550386",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cherokee-historymuseum-sanfordmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/science-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sanford Museum and Planetarium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.750222,-95.550386\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sanford Museum and Planetarium has exhibits and activities on a variety of subjects including: Archaeology, Art, Astronomy, Geology, History, Natural History, and Paleontology. The museum was made possible through a trust fund established by the late Mr. and Mrs. W.A. Sanford of Cherokee. The facility opened in 1951, and has been viewed by more one million people.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t117 E Willow St.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.225.3922</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://sanfordmuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Mill Creek Bridge",
            "lat": "42.777200",
            "lon": "-95.529939",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mill Creek Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.777200,-95.529939\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mill Creek Bridge was designed by the George E. King Bridge Company from Des Moines, Iowa and built in 1891 after flooding of the Little Sioux River. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tOld 21 Rd.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Coralville Union Ecclesiastical Church (Old Town Hall)",
            "lat": "41.674205",
            "lon": "-91.570333",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Coralville Union Ecclesiastical Church (Old Town Hall)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.674205,-91.570333\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Coralville Union Ecclesiastical Church was built for the unusual dual purpose of holding worship services and local government meetings. The property, held by the Church Society, is a one-story brick building built in 1880. The land was donated by Charles E. Robinson with the stipulation that the first floor of the building would serve as a town hall, the upper floor would be used for multi-denominational services (excluding Unitarian or Universalist), and the basement could be used for all moral purposes. Due to new construction development the structure was moved in May 2014 to 407 5th Street across from the Coralville Schoolhouse Museum. The Coralville Union Ecclesiastical Church was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t407 5th St.<br />Coralville, IA 52241<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Coralville Schoolhouse Museum",
            "lat": "41.673658",
            "lon": "-91.570317",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Coralville Schoolhouse Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.673658,-91.570317\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>From 1876 to the mid-twentieth century, the Coralville Public School served the immediate community as a primary educational institution. The building is in excellent condition, with its red brick, stone, and cast-iron star clamps all still intact. The small, heavy star clamps are arranged decoratively rather than in a purely functional manner, common in designs of the mid to late 19th century. Visitors experience a typical classroom that would have been familiar to rural and small town students in the late 19th century. Relive life at an ungraded schoolhouse through a variety of interactive exhibits. The Coralville Public School was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310 5th St.<br />Coralville, IA 52241<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.351.5738</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://johnsoncountyhistory.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cherokee Commercial Historic District",
            "lat": "42.749686",
            "lon": "-95.551264",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cherokee-nhd-cherokeecommercialhistoricdistrict-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cherokee Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.749686,-95.551264\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction on the Cherokee Commercial Historic District began in 1867. It consists of a well-preserved collection of buildings that collectively and cohesively represent the design and construction of downtown commercial buildings in this important county seat community. The district embodies a number of characteristics that are unusual for a Western Iowa county seat downtown. The buildings are also very substantially built, from both a materials and design standpoint. The east west linear layout of the downtown is unusual. Finally, in lieu of expected upper level apartments, multi-story buildings instead contained professional offices. Architect and builder Warren Wilfred Beach and Beuttler and Arnold used local materials to complete the structures. It was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t203 W Main St.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Illinois Central Railroad: Cherokee Yard",
            "lat": "42.748196",
            "lon": "-95.554262",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cherokee-nhr-illinoiscentralrailroadcherokeeyard-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Illinois Central Railroad: Cherokee Yard</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.748196,-95.554262\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Illinois Central Historic District in Cherokee represents various periods of that company&#039;s Iowa line history. Building phases ranged from 1860-1870 and 1886-1888, with the expansion of the roundhouse in 1915. Cherokee was a hub for Illinois Central branch lines and as the western most division headquarters on the Illinois Central line in Iowa. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS 4th St.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lewis Hotel",
            "lat": "42.749451",
            "lon": "-95.552916",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cherokee-nhr-lewishotel-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lewis Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.749451,-95.552916\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lewis Hotel was built around 1899. It is a noteworthy example of the work of Josselyn and Taylor, one of the state’s most important architectural firms in the late 19th and early 20th centuries. The Lewis Hotel’s builder, Robert A. Lewis was an important early citizen and developer of Cherokee. He stands as an example of the type of entrepreneur who helped settle the Midwest. He was a successful businessman and a good citizen. He was a well-known figure in the development of the Cherokee area. His obituary refers to the Lewis Hotel as a “monument to his spirit of enterprise.” It was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t231 W Main St.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Cherokee Depot",
            "lat": "42.748944",
            "lon": "-95.553605",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cherokee Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.748944,-95.553605\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cherokee Depot was built in 1896. The depot was used for freight and passenger traffic until 1971. The depot was unused for most of the 1980s and in 1989 when the city removed the canopy as a hazard to pedestrians. The city was going to demolish the entire depot, but in 1990, the Illinois Railroad Yard and the Cherokee Depot but a restoration campaign was successful. In 1992, the City of Cherokee introduced the plan to have Depot Renovation, Inc. restore the depot. The restoration is still in progress. The Cherokee Depot was added to the National Register of Historic Places in 1990, as part of the Illinois Central Railroad Yard.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t119 S 4th St.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.225.4664</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://cherokeedepot.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "University of Iowa Athletic Hall of Fame",
            "lat": "41.658984",
            "lon": "-91.574271",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-historymuseum-universityofiowaathletichalloffame.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">University of Iowa Athletic Hall of Fame</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.658984,-91.574271\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The University of Iowa Athletics Hall of Fame is dedicated to the athletic achievements of the Iowa Hawkeyes. The building houses over 100 years of athletic accomplishments on three floors and features player profiles, team gear, and trophies, including an Orange Bowl trophy and Nile Kinnick’s Heisman trophy.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2425 Prairie Meadow Dr.<br />Iowa City, IA 52246<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.384.1031</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://hawkeyesports.com/hallfame/iowa-hallfame.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Clemons House Museum &amp; Coggon Historical Society",
            "lat": "42.281186",
            "lon": "-91.530878",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clemons House Museum &amp; Coggon Historical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.281186,-91.530878\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Coggon Historical Society was founded in 1981. They are in charge of finding and displaying cultural artifacts pertaining to the history of Coggon. They operate the Clemons House, which was built in 1887 and restored by the society. The house contains a main meeting room, displays, souvenirs, a kitchen and room of Coggon School graduate photos. The upper level has Military, Medical, Child&#039;s, Quilt, School, Bedroom, Lounge and Hall areas and 2 rooms of Coggon Advertising items, etc.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t126 E Main St.<br />Coggon, IA 52218<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.435.2050</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Alexander-Dickman Hall",
            "lat": "42.841069",
            "lon": "-91.799827",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alexander-Dickman Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.841069,-91.799827\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Alexander-Dickman Hall (formerly known as College Hall) is one of the largest and best preserved native stone buildings still in use in Iowa. As the first building of Upper Iowa University, it was crucial to the early settlement and growth of Fayette. College Hall was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t605 Washington St.<br />Fayette, IA 52142<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Coggon Commercial Historic District",
            "lat": "42.281011",
            "lon": "-91.530651",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Coggon Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.281011,-91.530651\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Coggon began as a commercial center in a mostly rural area of Linn County. The community was platted with the promise that it would become a stop on the Cedar Rapids and Chicago Railroad. When the Illinois Central railroad arrived in 1887, the town grew quickly. The railroad ran west of Main Street and the Coggon Public School was built to the east. \r\n\r\nMany buildings in the district boast original features and decorative brickwork, as well as other details like the pressed-metal upper section of the former Frank Patton’s Grocery and Dry Goods (202 East Main Street) and an engraved metal step at the entryway to the former L.G. Hall/Palace Pharmacy (123 East Main Street). \r\n\r\nPassenger rail service to Coggon was discontinued in 1931, but the town remains a rural commercial center. Many buildings continue to house the same types of businesses for which they were originally constructed, including the Opera House (used by the community theater as of 2020). \r\n\r\nThe Coggon Commercial Historic District, comprising most of the 100 and 200 blocks of East Main Street, was added to the National Register of Historic Places in 2019.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Main St.<br />Coggon, IA 52118<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Iowa River Gazebo",
            "lat": "41.673971",
            "lon": "-91.565013",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa River Gazebo</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.673971,-91.565013\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Past, present, and future meet at the Iowa River Gazebo, located on the Iowa River in Coralville. The 14 interpretive panels and eight plaques celebrate the people, early history, and events that have influenced the area and the development of Coralville. The gazebo exhibit is a trail system focal point and an entrance and exit to the pedestrian bridge spanning the Iowa River Dam.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st Ave. and 5th St.<br />Iowa River Dam<br />Coralville, IA 52241<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.351.5738</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://johnsoncountyhistory.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Johnson County Historical Society Museum",
            "lat": "41.681177",
            "lon": "-91.560684",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Johnson County Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.681177,-91.560684\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Through more than 10,000 artifacts, the Johnson County Historical Museum exhibits the diverse and vibrant heritage of Johnson County. At the museum, learn about how the land and people have evolved to create today&#039;s Johnson County community. See a handcart that the Mormons used on their trek through Iowa and learn about local lodging with a replica of the Blue Top Motel.  Listen to oral history interviews about the home front during World War II. Also, check out “A Home on the Farm” which explores the changing lives of Johnson County farm families from 1930 to 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t860 Quarry Rd.<br />Coralville, IA 52241<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.351.5738</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://johnsoncountyhistory.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Antique Car Museum of Iowa",
            "lat": "41.681193",
            "lon": "-91.560673",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-historymuseum-antiquecarmuseumofiowa.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Antique Car Museum of Iowa</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.681193,-91.560673\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Antique Car Museum was founded in 2006 to showcase the history of the automobile. The facility is a 28,000 square foot showroom featuring 90+ cars ranging from the year 1899 to the mid 1970s, along with an early 20th century Skelly gas station, and an exhibit featuring the Abernathy Boys. Most cars are original and have not been restored, making it the largest collection of original antique cars in the state.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t860 Quarry Rd.<br />Coralville, IA 52241<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.354.3310</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://acmoi.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Ellsworth Ranch Bridge",
            "lat": "43.459801",
            "lon": "-94.580388",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ellsworth Ranch Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.459801,-94.580388\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ellsworth Ranch was built in 1895 by the King Bridge Company of Cleveland, Ohio. The structure consists of a single pin-connected truss and displays elements of both Pratt and Warren configurations that were developed in the 1840s, however received the most widespread use in the late 19th century. The style of the bridge, one of three built by the company, did not appear in the company literature at the time, suggesting its use was experimental and short-lived. The style is the only one of its type identified in Iowa and is a rare surviving work of structural experimentation by one of the country&#039;s most prolific 19th century bridge manufacturers. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t130th St.<br />Armstrong, IA 50514<br />Emmet County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lemuel C. and Mary (Vaughn) Boughton House",
            "lat": "42.752039",
            "lon": "-95.560112",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lemuel C. and Mary (Vaughn) Boughton House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.752039,-95.560112\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lemuel C. Boughton arrived in Cherokee County in 1877, with his wife Mary and seven children from two marriages. He operated a livery stable and briefly owned a grocery store, but primarily operated a livestock farm and invested in real estate. L.C. found success in his endeavors and was able to finance the construction of this elegant two-story frame Queen Anne-style home in 1890-1891.  The home was constructed with molded concrete, likely installed by T.W. Faus, the only person in Cherokee who manufactured and installed stone foundations in 1890. \r\n\r\nThe Boughtons lived in their elegant residence less than two years. In 1893, they moved to San Diego, California and sold their house to Johann Heinrich Brummer. Brummer was nearly 60 years old and at that time and the local newspaper reported that he was “one of the pioneer farmers of this county, and will now move into town and enjoy the fruits of his labor.”\r\n\r\nThe Brummers (Johann and Sophia) removed two small porches originally to the house and added a large concrete block porch sometime between 1909 and 1914. They are likely also responsible for the preservation of the decorative iron fence that surrounds the property. During World War I, iron fences were removed for use as scrap metal for the war effort - but J.H. allegedly refused to donate his fence. The fence also survived similar scrap drives during World War I. As a result, it is one of only two metal fences surviving in Cherokee. \r\n\r\nSophia died in 1925 and J.H. died in 1929. The Boughton House was owned by various Brummer descendants until 1953, when it was sold outside the family and divided into a duplex. As of 2020, the house had been returned to a single family dwelling. It was added to the National Register of Historic Places in 2020.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t736 W Cedar St<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lemuel C. and Mary (Vaughn) Boughton House",
            "lat": "42.752039",
            "lon": "-95.560112",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lemuel C. and Mary (Vaughn) Boughton House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.752039,-95.560112\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lemuel C. Boughton arrived in Cherokee County in 1877 with his wife, Mary, and seven children from two marriages. He operated a livery stable and briefly owned a grocery store but earned most of his income from a livestock farm and real estate investments. With his growing profits, he financed the construction of this two-story, Queen Anne-style home in 1890-1891. It was built with molded concrete that was probably installed by T.W. Faus, the only person in Cherokee who manufactured and installed stone foundations at the time.\r\n\r\nThe Boughtons lived in their elegant home for less than two years. In 1893, they moved to San Diego, California, and sold the house to a farmer named Johann Heinrich Brummer. The local newspaper reported that he was “one of the pioneer farmers of this county, and will now move into town and enjoy the fruits of his labor.”\r\n\r\nJohann Brummer and his wife, Sophia, removed two small porches and added a large concrete-block porch sometime between 1909 and 1914. They are likely also responsible for preserving the decorative iron fence that surrounds the property. During World War II, iron fences were removed for use as scrap metal for the war effort, but the Brummers allegedly refused to donate their fence, which survived similar scrap drives during World War I. As a result, it is one of only two historic metal fences still standing in Cherokee. \r\n\r\nSophia died in 1925, and J.H. died in 1929. Their house was owned by various descendants until 1953, when it was sold outside the family and divided into a duplex. As of 2020, the house had been returned to a single-family dwelling and was added to the National Register of Historic Places in 2019.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t736 W Cedar St<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Guy M. and Rose (Freeman) Gillette House",
            "lat": "42.750484",
            "lon": "-95.564868",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Guy M. and Rose (Freeman) Gillette House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.750484,-95.564868\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This elaborate, two-story, Queen Anne-style house was built around 1898 and is best known as the residence of Guy M. and Rose (Freeman) Gillette.\r\n\r\nThe Gillettes moved here in 1940, in the middle of his first full term as a U.S. senator, and remained until 1966. As a public servant, Sen. Gillette dedicated the living room, one upstairs bedroom and the enclosed porch as office space. \r\n\r\nSen. Gillette grew up in Cherokee and graduated from Drake University Law School in Des Moines. He returned to Cherokee to practice law and called the community home for his entire life. He served in the U.S. House and U.S. Senate from 1933 to 1945, and then returned to the Senate from 1949-1955. Between terms, he served as president of the American League for a Free Palestine.\r\n\r\nRose Gillette was active in politics, too. She chaired the Cherokee County Democrats from 1928-1932, at a time when few women served in such positions. \r\n\r\nThe Guy M. and Rose (Freeman) Gillette House was added to the National Register of Historic Places in 2019.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t111 N 11th St.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fred and Rosa Fulton Barn",
            "lat": "40.901251",
            "lon": "-92.138444",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fred and Rosa Fulton Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.901251,-92.138444\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1947 for use in dairy farming, the Fred and Rosa Fulton Barn possesses architectural significance by calling to attention the Architectural Department of the Louden Machinery Company, which designed it. The barn is a very well preserved example of Louden’s Gothic laminated roof design and still features a number of other Louden-manufactured devices. This equipment was installed at the time of the barn’s construction and remains in working order today. The Fred and Rosa Fulton Barn was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1210 278th Blvd.<br />Selma, IA 52551<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Fair Play School",
            "lat": "43.063661",
            "lon": "-95.284391",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fair Play School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.063661,-95.284391\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fair Play School was built in 1935 and moved to Royal in 1947. The school had the same amenities of the average county schoolhouse, one classroom, wood desks, and slate writing boards. The school is now part of the Royal Schoolhouse Museum, which gives insight on this and other schools of the early 1900s.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3rd Ave.<br />Royal, IA 51357<br />Clay County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Strabala Barn",
            "lat": "41.238401",
            "lon": "-91.784875",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/washington-barn-strabalabarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Strabala Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.238401,-91.784875\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This large barn was built in the 1920s by distinguished United States Senator Smith Brookhart. Brookhart had the barn built while he was in office. The barn was featured in the article &quot;Washington County resident restores senator&#039;s farmstead&quot; in Iowa Farmer Today. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1830 290th St.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Trinity Memorial Episcopal Church",
            "lat": "42.163230",
            "lon": "-95.788530",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Trinity Memorial Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.163230,-95.788530\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Trinity Memorial Episcopal Church is locally significant as the best example of Gothic Revival and Romanesque building design in Mapleton and is one of a small number of known architect designed buildings in Monona County. Completed in 1896, the Church is the oldest existing church building in Mapleton. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t302 S 7th St<br />Mapleton, IA 51034<br />Monona County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ned Ashton House",
            "lat": "41.672149",
            "lon": "-91.550895",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ned Ashton House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.672149,-91.550895\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ashton House was built in 1947 and is associated with the productive career of a noted bridge engineer, Ned L. Ashton. Designed and constructed by Ashton and used as his office and drafting room, it directly embodies his career and his Iowa aesthetics. The Ashton House was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t820 Park Rd.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Little Sioux River Bridge",
            "lat": "43.162951",
            "lon": "-95.170323",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Little Sioux River Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.162951,-95.170323\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Little Sioux River Bridge was constructed in 1900 by Clinton Bridge and Iron Works. It has also been called the Main Street Bridge and is a major crossing of the Little Sioux River. It still carries traffic today in an essentially unaltered condition. It was added to the National Register of Historic Places in 1998.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210th Ave.<br />Spencer, IA 51301<br />Clay County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Joseph A. Tallman Museum",
            "lat": "42.757106",
            "lon": "-95.572107",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Joseph A. Tallman Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.757106,-95.572107\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Joseph A. Tallman Museum is dedicated to the history of the mental health institute in Cherokee county. The Cherokee State Hospital became Iowa&#039;s 4th mental health institute in 1902. The hospital has had an assortment of renovations, such as the removal of the administration cupola, and the replacement of the slate roof with corrugated metal. The eastern wing of the building has been turned into a prison, and is blocked off from the rest of the building by prison grade fencing. The Cherokee State Hospital is still open today and serves patients from around Western Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1251 W Cedar Loop<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Brown Farm",
            "lat": "42.202881",
            "lon": "-91.495837",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brown Farm</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.202881,-91.495837\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Brown Farm dates to 1872 and is a century farm. It features turn of the century horse drawn machinery, tractor farming equipment and various memorabilia collections. Brown Farm Pioneer Days is held annually to celebrate the area&#039;s agricultural heritage. Outside of Pioneer Days the farm is open by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1361 Sawyer Rd.<br />Central City, IA 52214<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.438.1138</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "University of Iowa Hospitals and Clinics Medical Museum",
            "lat": "41.659363",
            "lon": "-91.548710",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">University of Iowa Hospitals and Clinics Medical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.659363,-91.548710\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The University of Iowa Hospitals and Clinics Museum started in 1982 with a donation of surgical tools. The tools belonged to a prestigious alum of the Iowa Medical program, class of 1874. The museum continued to build its collection and officially opened its doors in 1989. It serves as an educational resource focusing on the progress of medicine and patient care and emphasizing the major role of University Hospitals in these advances. It contains exhibits about various medical equipment and discoveries, as well as a sponsored lecture program by University professionals.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 Hawkins Dr.<br />Colloton Pavilion<br />Iowa City, IA 52242<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.356.7106</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.uihealthcare.org/medicalmuseum\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Billingsley-Hills House",
            "lat": "41.656726",
            "lon": "-91.548226",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Billingsley-Hills House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.656726,-91.548226\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Billingsley-Hills House is one of a dwindling handful of transitional Greek Revival-Italianate houses still extant in Iowa City. William Billingsley erected this house in 1870, and it was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t629 Melrose Ave.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "A. W. Pratt House",
            "lat": "41.656579",
            "lon": "-91.545971",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">A. W. Pratt House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.656579,-91.545971\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pratt home was built in 1885 by A. W. Pratt. The Pratt family was among some of the earliest settlers in the Johnson County area. The widow Fanny Pratt taught school and raised seven children including Albert W. Pratt. Walter I. Pratt enjoyed music so much that additions to the house were made to accommodate his pipe organ. Walter gave concerts in his home and in 1907 endorsed the Kimball pipe organ. The Pratt Home was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t503 Melrose Ave.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Stone Academy",
            "lat": "41.838676",
            "lon": "-91.501275",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stone Academy</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.838676,-91.501275\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Stone Academy is an 1842 public school located just west of Iowa Highway 1, and is one of the oldest schools in the state. It was formerly known as the Big Grove School No.1. The building provides tours by appointment. The school was named to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1281-1399 Hwy. 1 NE<br />Solon, IA 52333<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Selma Log Cabin",
            "lat": "40.873003",
            "lon": "-92.152947",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/vanburen-historicsite-selmalogcabin-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Selma Log Cabin</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.873003,-92.152947\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Selma&#039;s historic log cabin was built in 1846. The cabin was moved into the Selma City Park, from its original site a few miles East of town and restored in 1969. It is open during special events or by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA Hwy. 16<br />Selma, IA 52588<br />Van Buren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.936.8822</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://villagesofvanburen.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Melrose Historic District",
            "lat": "41.655248",
            "lon": "-91.546758",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Melrose Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.655248,-91.546758\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Melrose Historic District is associated with the lives of many prominent Iowa City residents, several with affiliations to the University of Iowa. Also, the district is a representative collection of the residential architectural styles and vernacular house forms that appeared in Iowa City neighborhoods during the years that the area was transformed from a country neighborhood to an early automobile and post-war residential suburb. The Melrose Historic District was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t311 Melrose Ct.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wilbur D. and Hattie Cannon House",
            "lat": "41.657144",
            "lon": "-91.544132",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wilbur D. and Hattie Cannon House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.657144,-91.544132\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cannon House has long been recognized by local historians as a significant example of 19th century residential architecture. Built in 1884, this finely detailed brick house illustrates the success of its owner, Wilber D. Cannon, a member of one of Johnson County’s earliest families. The house illustrates the Victorian interest in remaining asymmetric while maintaining complexity and ornamental detail. The Cannon House was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t320 Melrose Ave.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowa Malleable Iron Company",
            "lat": "41.012996",
            "lon": "-91.974695",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Malleable Iron Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.012996,-91.974695\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>First occupied in 1904 as an industrial foundry, the Iowa Malleable Iron Company is significant for its role in the iron industry. The firm produced malleable iron castings for agricultural implement manufacturers in the Midwest, including the Louden Machinery Company, and contributed to that region’s growth during the first half of the Twentieth Century as a center for manufacturing agricultural equipment. It was reportedly the first malleable iron foundry of its kind between the Mississippi River and Pueblo, Colorado. The Iowa Malleable Iron Company is significant within the context of the Louden Machinery Company because it was established in a large part by the officers of that firm, and the Louden family remained in close association with malleable throughout its history. The Iowa Malleable Iron Company was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t600 N 9th St.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Old Settlers&#039; Association of Johnson County Cabins",
            "lat": "41.672086",
            "lon": "-91.536934",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Settlers&#039; Association of Johnson County Cabins</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.672086,-91.536934\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old Settlers&#039; Association of Johnson County Cabins are significant because the cabins are examples of an early 20th century commemorative effort by a social organization that sought to celebrate and reflect on their common pioneer heritage. The commemoration involved the construction and relocation of replica log buildings in City Park in Iowa City in 1913 and 1918. Until the end of the Old Settlers&#039; Association of Johnson County in 1939, these cabins were the centerpiece for annual patriotic celebrations and summer picnics. The Old Settlers&#039; Association of Johnson Co. Cabins are also examples of two distinct log house forms typical of the Midwest- the Double Log Cabin, or dogtrot log house, and the Single-Room Log Cabin, originally erected in 1889 and moved to Upper City Park in 1918. Together, the two buildings provide examples of log building forms and sizes that were commonly used in Johnson County and Iowa City prior to Iowa statehood. The Old Settlers&#039; Association of Johnson County Cabins was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 E Park Rd.<br />City Park<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Norman Borlaug Birthplace Farm",
            "lat": "43.221421",
            "lon": "-92.181355",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Norman Borlaug Birthplace Farm</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.221421,-92.181355\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dr. Norman Borlaug Birthplace Farm is the location where Dr. Borlaug was born in 1914. The home belonged to Dr. Borlaug&#039;s grandfather, Nels Borlaug, who was born to Norwegian immigrants near Cresco. Dr. Borlaug lived here until he was 8 years old, when his father built a new home around the corner. Dr. Norman Borlaug (1914-2009) was scientist and humanitarian and through his work kept starvation at bay for millions of people worldwide.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t20390 Timber Ave.<br />Cresco, IA 52136<br />Howard County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.normanborlaug.org/properties/birthplace.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Norman Borlaug Boyhood Farm",
            "lat": "43.227210",
            "lon": "-92.189019",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Norman Borlaug Boyhood Farm</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.227210,-92.189019\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Norman Borlaug Boyhood Farm is where notable Iowan, Dr. Norman Borlaug, resided from the time he was 8 years old until he left for the University of Minnesota in 1933. The house was built in 1922 by Henry Borlaug and is a simple six-room home with no indoor plumbing and no electricity. The farm consists of a barn, pump house, corn crib, machine shed and chicken coop. The Boyhood Farm is also the home to the New Oregon No. 8 School House where Dr. Borlaug received his early education. Dr. Norman Borlaug (1914-2009) was scientist and humanitarian and through his work kept starvation at bay for millions of people worldwide.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t19518 200th St.<br />Cresco, IA 52136<br />Howard County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Walnut Creek School",
            "lat": "41.234750",
            "lon": "-91.770522",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Walnut Creek School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.234750,-91.770522\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Walnut Creek School is a one-room school house located six miles south of Washington. In addition to serving as a school the structure was used by the Walnut Women, who formed on October 6, 1921. Today, the school house serves as a museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1910 290th St.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.653.3272</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.chamber.washingtoniowa.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Beach School",
            "lat": "41.991037",
            "lon": "-91.477431",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Beach School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.991037,-91.477431\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in the early 1890s, the Beach school is a one and one-half story example of the small country schoolhouse so common to rural Iowa. A change in school district boundaries prompted construction of Beach School, and it was paid for by the local farmers. The Beach School was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1145 Linn Ridge Rd.<br />Mount Vernon, IA 52314<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Johnson County",
            "lat": "41.808670",
            "lon": "-91.500459",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Johnson County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.808670,-91.500459\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Johnson County Freedom Rock® in Solon features the namesake of Johnson County, Colonel, Congressman, Senator and Vice President Richard Johnson. When Congress declared the War of 1812, Johnson went to Kentucky and recruited 500 volunteers. He is most well-known for the Battle of Thames and killing Native American Chief Tecumseh. Johnson had been wounded four times and was shot in the shoulder by Tecumseh. As Tecumseh advanced to tomahawk Johnson, Johnson shot back and killed Tecumseh with a single pistol shot. Solon natives Lester and Paul Pavel are represented by two B-24s. Both Pavel brothers were killed during World War II. The USS Gambier Bay, sunk during the Battle of Leyte Gulft, and the mortar both represent veterans residing in Johnson County. The rock also shows the Tomb of the Unknown Soldier at Arlington National Cemetery in Virginia. Since 1921, Unknown Soldiers have been laid to rest in the tomb. It is guarded at all times. The Johnson County (Solon) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. F16 and N Chabal St.<br />Solon, IA 52333<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chicago, Milwaukee and St. Paul Railroad: Washington Underpass",
            "lat": "41.293421",
            "lon": "-91.724639",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago, Milwaukee and St. Paul Railroad: Washington Underpass</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.293421,-91.724639\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This rare Warren deck truss, built in 1903, carries a railroad track over an unpaved road and the west fork of Crooked Creek in eastern Franklin Township. The crossing was probably independently designed and built by the railroad, therefore no county records exist for the truss. Warren deck trusses are rare for highway bridges, although more common for railroad structures. This uncommon truss type has suffered statewide attrition, until less than ten deck trusses are known to remain in Iowa. The CMandStP Railroad Underpass is distinguished as the oldest remaining deck truss in Iowa. It retains a high degree of both structural and historical integrity and thus is an important transportation-related resources. This bridge is not the oldest railroad deck truss in Iowa, but is the oldest highway related. The bridge is a visually unique and structurally interesting bridge, representing an early design by the Chicago, Milwaukee and St. Paul Railroad. The Chicago, Milwaukee, and St. Paul Railroad Underpass was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t250th St.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Architecture of Henry K. Holsman Historic Campus District",
            "lat": "41.017057",
            "lon": "-91.965145",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Architecture of Henry K. Holsman Historic Campus District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.017057,-91.965145\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Architecture of Henry K. Holsman Historic Campus Fairfield, Iowa presents a unique complex of five collegiate buildings which were designed by Iowa born architecture Henry K. Holsman between 1903and 1915. The buildings represent the evolution in stylistic taste and refinement on Holsman’s part of his architectural skills over time. The Henry K. Holsman Historic Campus District was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMerrill Ave.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henn Mansion",
            "lat": "41.016706",
            "lon": "-91.966401",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henn Mansion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.016706,-91.966401\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Henn Mansion in Fairfield illustrates an early financial success in a pioneer economy before wealth shifted from the public to the private sector. The Mansion also calls attention to the political leadership of southeastern Iowa in the pre-civil war period. It was also the birth place of Parson College in 1875. The Henn Mansion was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMerrill Ave.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Old Capitol and Museum",
            "lat": "41.661423",
            "lon": "-91.536261",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-oldcapitol.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Capitol and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.661423,-91.536261\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old Capitol was the state’s first permanent capitol building, in use from 1846 to 1857. During that time many notable things happened in the building: Iowa’s first Governor Ansel Briggs was inaugurated, the first six General Assemblies were held and the State Constitution was drafted. In 1847, the University of Iowa was chartered there. After Des Moines was named state capitol, the University of Iowa campus grew up around the Old Capitol.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1 S Clinton St.<br />Pentacrest<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.335.0548</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://oldcap.uiowa.edu/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Ellingson Barn",
            "lat": "43.228090",
            "lon": "-92.181701",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/howard-barn-ellingsonbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ellingson Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.228090,-92.181701\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ellingson Barn is on a beautifully restored family farm. Dr. Norman Borlaug’s Boyhood Farm, half a mile away, is visible from the farm. The Ellingson Barn has been featured on the Iowa Barn Foundation’s All-State Barn Tour. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t19987 Timber Ave.<br />Cresco, IA 52136<br />Howard County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Catlett Hall",
            "lat": "41.653400",
            "lon": "-91.536920",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Catlett Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.653400,-91.536920\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Elizabeth Catlett (1915-2012), was the first African American woman to earn a master’s of fine arts from the University of Iowa. The granddaughter of enslaved people, Catlett graduated from the University of Iowa in 1940. Her mentor Grant Wood, encouraged her to create paintings and art that spoke to the cultures and experiences she knew best. Catlett had a seven decade career in art, using her work to fight for civil rights and against discrimination. She became one of the most important figures in contemporary American Art. \r\n\r\nWhile a student at the University of Iowa, Catlett was unable to live in the dormitories because of segregation. In 2017, a new residence hall, Catlett, was named in her honor. In addition, the University established the Elizabeth Catlett Scholarship Fund to support a Black or Latinostudent studying printmaking.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t350 N Madison Street<br />Iowa City, IA 52242<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "University of Iowa Museum of Natural History",
            "lat": "41.661836",
            "lon": "-91.535228",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-historymuseum-universityofiowamuseumofnaturalhistory.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">University of Iowa Museum of Natural History</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.661836,-91.535228\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Explore our world at the University of Iowa Museum of Natural History, Iowa&#039;s gateway to the global environment for over 150 years. Walk through 500 million years of our natural and cultural heritage, culminating in the landscape we see today and how it affects the story of agriculture. Discover the adaptation and diversity of birds and mammals around the planet.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10 Macbride Hall<br />17 N Clinton St.<br />Iowa City, IA 52246<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.335.0606</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.uiowa.edu/mnh\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Arthur Hillyer Ford House",
            "lat": "41.670426",
            "lon": "-91.531799",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Arthur Hillyer Ford House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.670426,-91.531799\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Arthur Hillyer Ford house, built in 1909, is one of the best preserved, examples of Mission style architecture in Iowa City. This symmetrically-shaped residence expresses this style in the scalloped parapets of the two-wall dormers and the front porch, red clay tile roof and stucco, a full-façade porch featuring square piers and flattened arches, wide overhanging eaves, and a quatrefoil window. The Arthur Hillyer Ford House was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t228 Brown St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Congregational Church of Iowa City",
            "lat": "41.662256",
            "lon": "-91.534590",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-congregationalchurchofiowacity.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Congregational Church of Iowa City</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.662256,-91.534590\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Congregational United Church of Christ is located in the downtown area of Iowa City and on the campus of the University of Iowa. The congregation was organized in 1856 and the church was built in 1869. A parsonage was built on the eastside of the church in 1891, which was later sold to the university and is now the location of the biology building. In 1903, a Lyon and Healy organ was installed. Other additions to the church include the administration annex, which was built in 1924, and the Little Chapel built in 1940. In 1957 the Congregational Church and the Evangelical and Reformed Church merged to form the United Church of Christ. The congregation was affiliated with the new church at this time. The same year a new Wicks organ was installed and the Christian Education building was added. The Church is significant for its role in the history of the area and the University of Iowa, as well as for its Gothic Revival architectural style that was often used for religious buildings at the end of the 1860s and early 1870s. The Congregational Church of Iowa City was added to the National Register of Historic Places in 1973.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t30 N Clinton St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jackson-Swisher House and Carriage House",
            "lat": "41.667173",
            "lon": "-91.533637",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jackson-Swisher House and Carriage House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.667173,-91.533637\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Although primarily of architectural significance, the Jackson/Swisher house also calls attention to the successful legal career of Louis H. Jackson and the twin interest of Stephen A. Swisher. The house utilizes more characteristics of the Gothic Revival than any other house in Iowa City. These include the original cruciform plan, the use of bays on the front and right side of the house, porches set into angles of the house plan, a steeply-pitched gable roof with barge boards, and numerous decorative details. The Jackson-Swisher House and Carriage House were added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t120 Fairchild St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "North Presbyterian Church",
            "lat": "41.663766",
            "lon": "-91.535043",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-northpresbyterianchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">North Presbyterian Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.663766,-91.535043\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This church, built in 1856, is the oldest church in Iowa City. Construction was started in 1856 and completed in 1865. The present square castellated tower was replaced in 1877 after a windstorm blew the original one off. The structure has many characteristics of Italian influence including arched windows, heavy decorative caps, coupled windows in the tower, projecting entrance pavilion and three fringe-like decorations produced by variations of brick laying in the pavilion area. This building is an expression of the culture enjoyed by the Middle West between the pioneer period and the Civil War. The North Presbyterian Church was added to the National Register of Historic Places in 1973.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t26 E Market St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Pentacrest",
            "lat": "41.661193",
            "lon": "-91.536163",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pentacrest</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.661193,-91.536163\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pentacrest on the University of Iowa campus is composed of five buildings arranged in a quincunx. The center building is the Old Capitol, and the other four buildings were erected between 1898 and 1924. Schaeffer Hall was built in 1898, and houses the Departments of Liberal Arts, Political Science, History, Classics, German and Romance Languages. MacBride Hall, completed in 1908, houses the Departments of Home Economics, Sociology, Anthropology, Museum of Natural History and MacBride Auditorium. MacLean Hall, built in 1910-1911, currently houses the Division of Mathematical Sciences. Jessup Hall, completed in 1924, was originally named University Hall, in 1969 it was changed to Jessup Hall in honor of President Jessup, who served as president (1916-1934). It is currently used primarily as the administration building housing the President’s office, some Vice Presidents&#039; offices, various other administrative offices, and the Department of Speech and Dramatic arts. The Pentacrest was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t21 Old Capitol<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sylvanus Johnson House",
            "lat": "41.690593",
            "lon": "-91.525761",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sylvanus Johnson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.690593,-91.525761\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sylvanus Johnson House is important not only because it showcases the work of Iowa City’s leading brick manufacturer, but because it was probably the first house in the Iowa City area constructed with a mansard roof and helped popularize locally what eventually came to be called “the Second Empire Style.” The Sylvanus Johnson House was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2155 Prairie du Chien Rd.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Louden Machinery Co., Inc.",
            "lat": "41.007828",
            "lon": "-91.971284",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Louden Machinery Co., Inc.</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.007828,-91.971284\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1900 and later expanded in 1910, the Louden Machinery Company possesses local significance for the contributions of that firm to the agricultural and industrial history of the state. The firm patented numerous labor-saving devices for farm and industry and manufactured these products in this building. The “plant” is also significant for the inventive genius of William Louden and the executive abilities of R.B. Louden. These two brothers founded and shaped the destiny of the Louden Machinery Company in its rise as an international industrial concern. During four decades of their productive lives, William and R. B. Louden worked in this building. The Louden Machinery Co., Inc. was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t607 W Broadway Ave.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Burnett-Montgomery House",
            "lat": "41.013631",
            "lon": "-91.965883",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Burnett-Montgomery House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.013631,-91.965883\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Burnett house is well preserved brick Italianate house, in addition to its architectural significance, it calls thematic attention to the importance of industry in the development of Fairfield, Iowa. The Montgomery Burnett House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t605 N 3rd St.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "W. C. Ball House",
            "lat": "41.019664",
            "lon": "-91.958876",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">W. C. Ball House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.019664,-91.958876\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The W.C. Ball House is an example of vernacular architecture, which employs an eclecticism of stylistic design and architecture detail. The massive roof and polygonal bay window expand the vernacular language of Fairfield architecture. Built as a suburban residence in 1876,the building obtains significance for the architectural context of both Fairfield and Jefferson County. The W.C. Ball House was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1008 N B St.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles Berryhill House",
            "lat": "41.670445",
            "lon": "-91.529466",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-charlesberryhillhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles Berryhill House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.670445,-91.529466\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Berryhill House is a nice example of a traditional form known as the simple rectangular block. The front roof ridge features an assortment of elements associated with vernacular Italian architecture of the mid 19th century. The Berryhill House was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t414 Brown St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "College Block Building",
            "lat": "41.658781",
            "lon": "-91.533468",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-iowacollegeblockbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">College Block Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.658781,-91.533468\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The earliest known commercial building in Iowa City, the College Block Building survives today as an outstanding representation of the business district of Iowa City in the last quarter of the nineteenth century. It was designed by Chauncey F. Lovelace and is one of the first commercial examples of the use of a large tin cornice and ornamentation. Since 1878, the College Block Building, so named due to its location on College Street, has presented an outstanding and unique profile among the commercial architecture in downtown Iowa City. The College Block Building was added to the National Register of Historic Places in 1973.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t125 E College St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Economy Advertising Company",
            "lat": "41.663165",
            "lon": "-91.531859",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Economy Advertising Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.663165,-91.531859\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Samuel W. Mercer (1959-1928) had this building constructed in 1923 to house the Economy Advertising Company of which he was president. The building is a simple architectural design, an asymmetrical two-story block that resembles the modern commercial front with minimal decoration. The Economy Advertising Company was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t119 N Linn St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Franklin Printing House",
            "lat": "41.659571",
            "lon": "-91.533393",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Franklin Printing House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.659571,-91.533393\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Franklin Printing House, constructed in 1856, is a three-story commercial brick building located in downtown Iowa City. It is constructed of an orange-colored common brick, laid in a running bond pattern on the front, with a Dutch bond pattern on the side and rear walls. The Franklin Printing House was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 S Dubuque St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Johnson County Courthouse",
            "lat": "41.656020",
            "lon": "-91.535188",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-johnsoncountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Johnson County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.656020,-91.535188\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Johnson County Courthouse is heavily influenced by the Romanesque Revival style of Henry Javson Richardson. The architect was A. William Rush of the Rush, Bowman, and Rush firm of Grand Rapids, Michigan. This firm designed seven mid-western courthouses between 1894 and 1901. The Johnson County Courthouse came fairly late in this period and as such is a refined and clear statement in Romanesque Revival architecture. It survives with only minor alterations since 1901. The Johnson County Courthouse was added to the National Register of Historic Places in 1975.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t417 S Clinton St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Mary&#039;s Church and Rectory",
            "lat": "41.662730",
            "lon": "-91.531901",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-stmaryschurchandrectory.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Mary&#039;s Church and Rectory</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.662730,-91.531901\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Mary’s Church in Iowa City was begun in 1867 after Fr. Samuel Mazzuchelli had founded the St. Mary’s Parish in 1840. It is constructed of brick with a stone foundation and stone trim. The sides are divided into seven bays with stained-glass windows. The church is a well-preserved representative of Iowa’s large-scale ecclesiastical architecture of the 19th century. In 1954 a rectory was added to the church using the same Greek Revival style architecture. The St. Mary&#039;s Church was added to the National Register of Historic Places in 1980 and the rectory was added in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t220 E Jefferson St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "The Cottage",
            "lat": "41.809632",
            "lon": "-91.494446",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Cottage</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.809632,-91.494446\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cottage at Rock and Dubuque Streets in Solon is a remarkably well-preserved example of the application of the Queen Anne architectural style to a smaller residential plan. It was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t331 N Dubuque St.<br />Solon, IA 52333<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Union Brewery",
            "lat": "41.663404",
            "lon": "-91.531865",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Union Brewery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.663404,-91.531865\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Union Brewery is a fine example of a vernacular, industrial commercial building with Italianate stylistic details. The brewery is a composite of buildings and additions successfully unified by similar scale and materials. Brewing was an important nineteenth-century industry in Iowa and nationwide. In Iowa City there were at least four breweries in the third quarter of the century. Three had notable brick buildings, but only Union Brewery remains. The Union Brewery was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t127 N Linn St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Gilbert-Linn Street Historic District",
            "lat": "41.667454",
            "lon": "-91.531558",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gilbert-Linn Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.667454,-91.531558\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This historic district illustrates an important era of population growth and intense residential development in Iowa City’s North Side and also represents the mingling of middle and upper income households. It is a representative collection of the residential architectural styles and vernacular house forms that appeared in Iowa City neighborhoods from the 1860s through the 1930s. The Gilbert-Linn Street Historic District was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 Fairchild St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Park House Hotel",
            "lat": "41.662700",
            "lon": "-91.533291",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-parkhousehotel.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Park House Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.662700,-91.533291\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Park House Hotel was built by Ferdinand Haberstroh in 1852. It is one of Iowa City’s few remaining commercial buildings from the its period as the State Capitol. Patronage likely declined after the capitol moved to Des Moines. The second chapter in the building&#039;s history was the opening of St. Agatha’s Female Seminary. St. Agatha’s closed in 1909 and the building was sold to Albert Burkeley who converted the building to apartments. Known as Burkley Place, it remains an apartment building today. The Park House Hotel was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t130 E Jefferson St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jefferson Street Historic District",
            "lat": "41.662547",
            "lon": "-91.531436",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jefferson Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.662547,-91.531436\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jefferson Street Historic District is a product of an important era in the growth of one of Iowa City’s North Side neighborhoods at the end of the 19th century and the beginning of the 20th century. The District is also significant as a representative collection of the residential architectural styles, vernacular house forms, and institutional architectural styles that appeared in Iowa City neighborhoods from the 1850s through the 1930s. The Jefferson Street Historic District was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t302 E Jefferson St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Old Settlers&#039; Association Park and Rhodham Bonnifield House",
            "lat": "41.018879",
            "lon": "-91.956745",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Settlers&#039; Association Park and Rhodham Bonnifield House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.018879,-91.956745\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old settler’s Association Park and Rhodham Bonnifield House is a fine example of a commemorative property with historical significance. The property is used to preserve the old settler sentiment of freedom and equality, hospitality, sympathy and love of fair play that characterized the men who first settled in the land of Jefferson county. The Old Settlers&#039; Association Park and Rhodham Bonnifield House was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWaterworks Park<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chicago, Rock Island and Pacific Railroad: Iowa City Passenger Station",
            "lat": "41.653473",
            "lon": "-91.533885",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago, Rock Island and Pacific Railroad: Iowa City Passenger Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.653473,-91.533885\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chicago, Rock Island and Pacific Railroad Passenger Station is important not only because of its contribution to Iowa City’s architectural character but also because of its central role in the city’s transportation history. This edifice’s eclectic architecture, which combines elements of the Richardsonian and Victorian Romanesque modes, is unique in Iowa City and constitutes a major element of the city’s visual landscape. In a historical sense, the depot, which was the city’s second such facility, has been the central symbol of the railroad’s presence in Iowa City since its completion in 1898 and a major reference point for the thousands of university students and other citizens who utilized its facilities in coming to and going from Iowa City. The Chicago, Rock Island, and Pacific Passenger Station was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 Wright St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jacob Wentz House",
            "lat": "41.664199",
            "lon": "-91.530354",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jacob Wentz House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.664199,-91.530354\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Jacob Wentz, a German-born shoemaker, purchased the lot on which the house stands in June 1847, and is thought to have begun construction of the house the same year. The house is one of the few ashlar yellow-brown sandstone houses still standing in Iowa City. A simple, chaste example of Greek Revival in the Midwest, it has the unusual features of twelve-light windows and a dignified transom doorway that give it an appearance of uncommon stateliness. The Jacob Wentz House was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t219 N Gilbert St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Nicking House",
            "lat": "41.663694",
            "lon": "-91.529620",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-nickinghouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nicking House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.663694,-91.529620\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Henry C. Nicking built this home in 1854. It is one of the oldest surviving houses in Iowa City and one of the few sandstone houses still surviving. It is a rectangular saltbox of one and one-half stories with two pairs of windows flanking a central door on the ground floor and five half windows above. The windows have limestone lintels and have preserved old, louvered shutters which may be original and were added no later than 1900. The Nicking House was added to the National Register of Historic Places in 1975.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t410 E Market St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Old Post Office",
            "lat": "41.660425",
            "lon": "-91.531321",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Post Office</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.660425,-91.531321\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old Post Office was built in 1904 and expanded in 1931. It represents a rare example of a structural addition so seamlessly integrated that it is virtually indistinguishable from the original. The Old Post Office was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t28 S Linn St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Paul-Helen Building",
            "lat": "41.660113",
            "lon": "-91.532446",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-paulhelenbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Paul-Helen Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.660113,-91.532446\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Paul-Helen Building was built in 1910 and named for the children of the brothers Schmidt and Kurz. The three-story, five bay edifice, was the first “Modern” commercial building in downtown Iowa City. The construction of this building in 1910 sparked a downtown building boom that marked the last major phase in the development of Iowa City’s central business district until the onset of urban renewal in the late 1960s. The combination of architectural and historical significance make the Paul-Helen Building one of the most important places in Iowa City. The Paul-Helen Building was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t207 E Washington St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Vogt House",
            "lat": "41.670957",
            "lon": "-91.528503",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vogt House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.670957,-91.528503\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Vogt House, built in 1890, is a well-preserved example of Queen Anne architecture. Its notable features are the semi-circular dormer, the use of stained glass, and the curved-head windows. No less important is its setting at the top of a hill at the end of a brick street, with outbuildings intact. Its natural environment, six acres of wooded land, has also been preserved. All dwellings on either side are similar in age and size, but differ in vernacular designs. The Vogt House was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t800 N Van Buren St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William Bostick House",
            "lat": "41.662931",
            "lon": "-91.530383",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William Bostick House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.662931,-91.530383\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bostick House is locally significant as one of the best surviving examples of Greek Revival-influenced residential design in Iowa City. It was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 N Gilbert St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Emma Harvat and Mary Stach House",
            "lat": "41.665777",
            "lon": "-91.530293",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-emmaharvatmarystachhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Emma Harvat and Mary Stach House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.665777,-91.530293\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Emma Harvat and Mary E. (May) Stach House is locally significant because of its association with Emma J. Harvat, first female mayor of Iowa City and the first woman in the nation to serve as chief executive of a municipality with a population of over 10,000. Harvat was significant as a businesswoman in Missouri and Iowa and set an example for other women to enter business and politics. She built the house at 322 E. Davenport together with her friend and business partner May Stach. The Emma Harvat and Mary Stach House was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t332 E Davenport St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "St. Mary&#039;s Catholic Auditorium",
            "lat": "41.806454",
            "lon": "-91.493932",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Mary&#039;s Catholic Auditorium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.806454,-91.493932\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The St. Mary&#039;s Catholic Auditorium was built in 1915. The auditorium was used as a library and social club for Catholic men and women. It contained club rooms, a library, a dining room, a kitchen, billiard tables, two bowling alleys, showers, a locker room, a ladies&#039; parlor, a cloak room, and an auditorium with a projector. The auditorium converted to strictly motion picture and live shows in 1927.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t130 S Dubuque St.<br />Solon, IA 52333<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Englert Civic Theatre",
            "lat": "41.659800",
            "lon": "-91.532324",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-artperforming-englertcivictheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Englert Civic Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.659800,-91.532324\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Englert Theatre was built in 1912, as a theatre for vaudeville shows and early motion pictures. The theatre was almost destroyed in 1926 by a massive fire, but was saved and rebuilt to reflect the elegant movie theatres being built across the country in the 1920s and 1930s. The theatre remained open until 1999 when it was sold to a bar owner who had plans to turn it into a nightclub. The theatre was saved, however, by a group of citizens who didn&#039;t want to lose this piece of local history in Iowa City. After a massive renovation process, the Englert Civic Theatre was reopened in 2004, and gave its first live performance in over 60 years. The theatre now holds a wide variety of live performances. The Englert Theatre was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t221 E Washington St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.688.2653</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.englerttemp.info/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Brown Street Historic District",
            "lat": "41.670157",
            "lon": "-91.527817",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-brownsthistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brown Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.670157,-91.527817\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Brown Street Historic District is significant for its association with Iowa City’s neighborhood settlement patterns; the development of a major transportation corridor, and its related sub-themes; its affiliation with the growth of the State University of Iowa after the turn-of-the-century; and its collection of representative examples of architectural forms and styles from the period extending from the 1850s through the 1920s. The Brown Street Historic District was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t520 Brown St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Bohumil Shimek House",
            "lat": "41.669946",
            "lon": "-91.527362",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-bohumilshimekhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bohumil Shimek House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.669946,-91.527362\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house, built in the late 1800s, was the home of Bohumil Shimek, a Czech American naturalist, conservationist, and professor at the University of Iowa. He was one of the leaders in the Iowa Conservation Movement from the time it emerged in the late 1890s until his death in 1937. The Bohumil Shimek House was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t529 Brown St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Boerner-Fry Company/Davis Hotel",
            "lat": "41.660278",
            "lon": "-91.530356",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Boerner-Fry Company/Davis Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.660278,-91.530356\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Boerner-Fry Company/Davis Hotel Building is closely and most significantly associated with the career of Emil Louis Boerner (1852-1933), who opened the Hotel. The Boerner-Fry Company/Davis Hotel Building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t332 E Washington St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First Unitarian Church",
            "lat": "41.661036",
            "lon": "-91.530067",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-firstunitarianchurch-4-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Unitarian Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.661036,-91.530067\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Designed by Boston architect Edwin J. Lewis Jr., the 1908 Tudor Revival church building represents specific guidelines for constructing dignified yet inexpensive houses of worship that were supported by the American Unitarian Association. The &quot;church home&quot; architectural aesthetic, was closely associated with a small but influential group of liberal women ministers who practiced in Iowa and surrounding states roughly between 1880 and 1930. The group’s leaders were Rev. Mary Safford and Rev. Eleanor Elizabeth Gordon, who served as ministers to the Iowa City congregation from 1896 to 1900 and were directly involved in the financing and construction of the Iowa City church, according to the nomination. A parsonage was built next to the church in 1909, but it was razed in 1962 to clear space for an education wing, which was also razed. Only the church remains, and it retains its historical integrity, including character-defining features that reflect the Arts and Crafts style popular at the time of its construction. It has an irregular T-shape layout with an intersecting gable roof and a raised basement supported by a rubble-stone foundation. Exterior walls are made of brick and ornamented with buttresses while its gables are clad in stucco and vertical half-timbers. There is no bell tower or steeple, and it resembles a large residence rather than an ecclesiastical building. In a broader sense, it follows the “meetinghouse” tradition – domestic in form and mass, an emphasis on horizontal design, a side entrance and a pulpit but no altar. “The term ‘meetinghouse’ implies ‘neutral public space,’ or a place that erases the distinction between sacred and secular, rather than a house of God, or a place where a deity resides,” according to the nomination. The First Unitarian Church was added to the National Register of Historic Places in 2018.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10 S Gilbert St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Tate Arms",
            "lat": "41.650585",
            "lon": "-91.532910",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tate Arms</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.650585,-91.532910\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The two-story, brick Foursquare house known as Tate Arms was built 1914 and housed Black students at the University of Iowa and other Black locals (mostly unmarried men) for the next half-century. By 2020, nearly all of the rooming houses, apartment houses and fraternity houses in Iowa City that housed Black men during the early to mid-20th century were demolished. Tate Arms is one of the few that remains and the only one known to have been built for a Black owner and constructed specifically as a rooming house. \r\n\r\nCharles and Dorothy Alberts built this home during a time of increasing racial segregation. At the same time, Charles Alberts also operated a successful masonry contracting and concrete-block manufacturing business at this property.\r\n\r\nElizabeth Tate, with her husband Junious “Bud” Tate, continued that tradition, operating the home as a rooming house for Black male university students 1940 to 1961. The Tates provided room and board to 20 students at a time when most white landlords would not rent to Black tenants and when the university prohibited Black students from staying in campus dormitories.\r\n\r\nTate Arms was designated as an Iowa City Historic Landmark in 2014 and added to the National Register of Historic Places in 2019.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t914 S Dubuque St.<br />Iowa City, IA 52245<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "R. Bruce and May W. Louden House",
            "lat": "41.004969",
            "lon": "-91.969516",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">R. Bruce and May W. Louden House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.004969,-91.969516\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This single-family dwelling is historically significant because it calls attention to R. Bruce Louden for his leadership of the Louden Machinery Company through a critical period in the firm&#039;s history. Louden served as the company&#039;s third president from 1940 until his death in 1951. During that time, the company foresaw, prepared for, and successfully supplied vast quantities of overhead handling equipment to American industries during World War II. The R. Bruce and May W. Louden House was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t501 W Adams Ave.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William and Mary Jane Louden House",
            "lat": "41.005931",
            "lon": "-91.969523",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William and Mary Jane Louden House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.005931,-91.969523\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Completed in 1897 the William and Mary Jane Louden House is significant because it calls attention to William Louden and his career as the inventive genius behind, and co-founder of, the Louden Machinery Company. His service to the firm propelled it into national prominence. The William Louden House was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t501 W Washington Ave.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Czechoslovakian Association Hall",
            "lat": "41.667503",
            "lon": "-91.526933",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Czechoslovakian Association Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.667503,-91.526933\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This hall was originally built as a meeting place for the Czechoslovakian Protective Society. This association was organized in 1882 by Czech immigrants in Iowa City, who lived almost exclusively in the north and northeast parts of town. The C.S.P.S. offered members assistance in times of need and also maintained a busy calendar of social, cultural, educational and recreational events. The lodge/meeting hall functioned as a center of community activity for newcomers to a strange land. The Czechoslovakian Association Hall was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t524 N Johnson St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Letovsky-Rohret House",
            "lat": "41.665569",
            "lon": "-91.527936",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-letorskyrohrethouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Letovsky-Rohret House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.665569,-91.527936\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Letovsky-Rohret House has a two-fold significance. It is the only known extant structure in Iowa City closely associated with the Letovsky family, publishers of Iowa’s first Czech language newspaper. Secondly, it is the only surviving residence of Peter Rohret, a German immigrant and early settler famed for his expertise with an ax, who helped build “Old Capitol”, and later served in numerous county offices. The Letovsky-Rohret House was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t515 E Davenport St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Trinity Episcopal Church",
            "lat": "41.659168",
            "lon": "-91.530660",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-trinityepiscopalchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Trinity Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.659168,-91.530660\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Trinity Parish Church is the only Gothic Revival building in Iowa City that employs vertical boarding, a common building technique of the mid-19th century. The church was built in 1871 at a cost of $6,250. Three University Presidents were parishioners here and one Rector of Trinity Parish served as President of the University. The church and its congregation are an integral part of the social fabric of the community. Trinity Episcopal Church was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t321 E College St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "State Historical Society Research Center (Iowa City)",
            "lat": "41.661380",
            "lon": "-91.529877",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historicalsociety-researchcenter-iacity.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">State Historical Society Research Center (Iowa City)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.661380,-91.529877\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The State Historical Society Research Center collections facilitate access to primary and secondary resources related to the history of Iowa. It serves a wide range of visitors including authors, educators, students, news media, curators, archaeologists, preservationists, historians and genealogists.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t402 Iowa Ave.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.335.3916</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://iowaculture.gov/history/research/research-centers\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Orpheum Theater",
            "lat": "41.007802",
            "lon": "-91.964766",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jefferson-theater-orpheumtheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Orpheum Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.007802,-91.964766\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Orpheum Theater is an independent cinema and theater space located in downtown Fairfield, Iowa. The theater opened on July 28th, 1910 and in 1940 was renamed the Co-Ed by students from the now defunct Parsons College. The theater screens blockbuster, independent, and foreign films.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t121 W Broadway Ave.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jefferson County Courthouse",
            "lat": "41.009019",
            "lon": "-91.963132",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jefferson-nhr-jeffersoncountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jefferson County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.009019,-91.963132\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Courthouse is an attractive courthouse in the Victorian Romanesque architectural style. The building is locally significant as the historical focus of county government, and the focus of the political power and prestige derived from the community’s status as the county seat. The Jefferson County Courthouse was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t248 N Court St.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "McElhinny House",
            "lat": "41.009736",
            "lon": "-91.962669",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jefferson-nhr-mcelhinnyhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McElhinny House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.009736,-91.962669\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The McElhinny house is a well-preserved example of Vernacular domestic architecture, dating from the early decades of Fairfield history. The house is now used by the Fairfield Women&#039;s Society as a gathering space. The McElhinny house was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 N Court St.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Close House",
            "lat": "41.654350",
            "lon": "-91.529806",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Close House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.654350,-91.529806\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Close House, built in 1874, is one of the largest surviving dwellings in Iowa City of the Italianate Villa style. The principal façade has a projecting pavilion with a single segmental arch and a double round-headed window on the second floor, and a one-story bay and imposing portal on the ground floor. The Close House was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t538 S Gilbert St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "F. X. Rittenmeyer House",
            "lat": "41.667034",
            "lon": "-91.525977",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">F. X. Rittenmeyer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.667034,-91.525977\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rittenmeyer House, built of brick on a stone foundation, is believed to have been built in the mid-1870s. The house is a well-preserved example of a typical, modest, residential structure from the mid-19th century. The porch, with its somewhat unusual geometrically patterned frieze, is the most distinctive feature of the house. The property was acquired in 1875 by F. X. Rittenmeyer and the house was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t630 Fairchild St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Windrem House",
            "lat": "41.661498",
            "lon": "-91.526932",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Windrem House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.661498,-91.526932\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Windrem House is one of the few remaining houses from the earliest period of Iowa City. The house is most interesting for the fineness of its exterior detail and unusual variations on traditional elevation schemes and use of materials. William Windrem, born in Ireland, came to this country in 1830 and arrived in Iowa City in 1842. Windrem was a carpenter and worked on the Territorial Capitol. He bought some land in 1845 and started building this house shortly after. The Windrem House was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t604 E Iowa Ave.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Former United States Post Office Building",
            "lat": "41.006253",
            "lon": "-91.962633",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jefferson-nhr-formerpostoffice.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Former United States Post Office Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.006253,-91.962633\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1876 by James F. Wilson, this building calls attention to the man&#039;s business career in Fairfield. Wilson was a leader in Fairfield business and was instrumental in establishing the city&#039;s first nationally chartered bank in 1865. The Former United States Post Office is significant because of its link with the life of James Wilson. The Former United States Post Office Building was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 S Court St.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Louden Monorail System in the Auto Repair Shop",
            "lat": "41.007762",
            "lon": "-91.961536",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Louden Monorail System in the Auto Repair Shop</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.007762,-91.961536\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Installed in 1922, the Louden Monorail System in the Auto Repair Shop is historically significant because of its associations with the Louden Machinery Company. The Monorail System enabled automobile repairmen to move heavy engines and parts to and from vehicles with ease. This system remains intact and is permanently fixed to the walls of the Auto Repair Shop. The Louden Monorail System and Auto Repair Shop was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t117 E Broadway Ave.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Robert Bruce and Lizzie L. Louden House",
            "lat": "41.005852",
            "lon": "-91.964785",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Robert Bruce and Lizzie L. Louden House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.005852,-91.964785\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The R.B. and Lizzie L. Louden House is historically significant because it reflects the period in which R.B. Louden served as president of the Louden Machinery Company and lived in this house. His service to the firm provided the executive leadership, which eventually propelled the Company into national prominence. The Robert Bruce Louden House was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t107 W Washington Ave.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wilson Building",
            "lat": "41.006258",
            "lon": "-91.962604",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jefferson-nhr-wilsonbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wilson Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.006258,-91.962604\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1876 by James F. Wilson as an investment, the Wilson Building housed several commercial establishments. The building is significant because it calls attention to James F. Wilson&#039;s importance to the economic development of Fairfield, Iowa. The building is also important in calling attention to Wilson&#039;s later political career because it served as Wilson&#039;s local office during his tenure in the United States senate (1883-1895). The Wilson Building was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t106 S Court St.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Isaac A. Wetherby House",
            "lat": "41.668332",
            "lon": "-91.523010",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Isaac A. Wetherby House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.668332,-91.523010\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Isaac A. Wetherby House, originally located at 935 E. Market in 1854, moved to 611 N. Governor Street in 2008. This is the only extant building associated with Wetherby, an important figure in art, photography, and social history of the last half of the 19th century who occupied the house from 1860 until 1887. The Isaac A. Wetherby House was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t611 N Governor St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Schindhelm-Drews House",
            "lat": "41.666071",
            "lon": "-91.523940",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Schindhelm-Drews House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.666071,-91.523940\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Schindhelm-Drews House is a well-preserved example of 19th century domestic architecture in Iowa City’s Goosetown neighborhood. Consisting of an 1855 stone house section with frame additions completed between 1867 and 1899, the Schindhelm-Drews House embodies the concepts of continuity through adaptation and organic growth. The combined stone-frame residence tells the story of the relative austerity and modest scale of first generations of frontier housing, the growing prosperity of successive generations of Bohemian and German immigrants and their ability to finance building additions, and finally, the valuable role that housing played in promoting strong family bonds and maintaining a cultural identity for these ethnic groups. The Schindhelm-Drews House was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t410 N Lucas St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Carnegie Library Historical Museum",
            "lat": "41.005936",
            "lon": "-91.962728",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jefferson-historymuseum-carnegiemuseum-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carnegie Library Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.005936,-91.962728\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Steel-magnate Andrew Carnegie donated money to build 2,509 libraries across the world during his lifetime. The first libraries were built in places where Carnegie had a personal connection, specifically in Scotland and the Pittsburgh, Pennsylvania area. The Fairfield Public Library was the first Carnegie library commissioned outside of Pennsylvania and without direct ties to Carnegie himself. The construction of the library in Fairfield in 1892 helped develop the model that would be used by Carnegie to fund construction of 1,688 additional libraries across the United States (101 total in Iowa). The Fairfield Carnegie library building now houses the local history museum with collections dating to 1877. The building was added to the National Register of Historic Places in 1983.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 S Court St.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.472.6343</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.fairfieldmuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Trimble/Parker Historic Farmstead",
            "lat": "40.718047",
            "lon": "-92.370832",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Trimble/Parker Historic Farmstead</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.718047,-92.370832\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This farmstead is a well-preserved example of an early twentieth-century purebred stock farm in southern Iowa. Many of the original buildings remain intact, including a diverse set of livestock buildings reflecting the varied stock types and operations carried out on the farmstead between 1901 and 1952. It was added to the National Register of Historic Places in 2003. Part of the farmstead is open to the public as a bed and breakfast.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t23981 240th St.<br />Bloomfield, IA 52537<br />Davis County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.664.1555</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.trimble-parker.com/Home.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "College Green Historic District",
            "lat": "41.658928",
            "lon": "-91.525285",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">College Green Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.658928,-91.525285\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The College Green Historic District is significant for its residential architecture which spans almost the entire history of Iowa City. In the original plat the neighborhood was separated from the downtown commercial district by a strip of undeveloped land, providing some shelter from the noisy bustle of commerce. The College Green Historic District was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t714 E College St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Robert Lucas Gravesite",
            "lat": "41.668693",
            "lon": "-91.522201",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-govgravesite-govrobertlucasgravesite.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Robert Lucas Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.668693,-91.522201\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Robert Lucas (April 1, 1781 - February 7, 1853) served as the first governor of the Iowa Territory. In July 1838 President Martin Van Buren appointed him as Iowa Territorial Governor and Superintendent of Indian Affairs. He served until 1841. His gravesite is located at Oakland Cemetery in Iowa City.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 Brown St.<br />Oakland Cemetery<br />Iowa City, IA 52245<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "underground-railroad.png",
            "title": "College Green Park",
            "lat": "41.659538",
            "lon": "-91.526202",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-undergroundrailroad-collegegreenpark-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/underground-railroad.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">College Green Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.659538,-91.526202\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>By 1855, Iowa City had about 7,000 residents and was the westernmost point of the railroad in Iowa. It was also home to well-known abolitionists William Penn Clarke and Dr. Jesse Bowen, both of whom played an active role in Iowa’s Underground Railroad efforts and supported those fighting to make Kansas a free state. A sign in the city’s College Green Park commemorates this history. This is stop #13 on the Freedom Trail tour: John Brown and his party passed through Iowa City on February 24, 1859, on their way to Springdale, thirteen miles further east. They were aided on their way by prominent Iowa City abolitionists, Jesse Bowen and William Penn Clarke. At this time, the residents of Iowa City were clearly divided on the issue of slavery, making this a risky place for Brown and his group to stop.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t193 S Dodge St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bowery Street Grocery Store Building",
            "lat": "41.654240",
            "lon": "-91.528120",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bowery Street Grocery Store Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.654240,-91.528120\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bowery Street Grocery Store Building was built in the 1800s as a small, 740 square foot, neighborhood grocery store. The building served as a neighborhood grocery store for 80 years. It was also used as rental housing. In 2014, the building was listed on the National Register of Historic Places. The building has been rehabilitated and operates as a specialty grocery store, with groceries once again lining the same wooden shelves. In 2015, Preservation Iowa awarded the Bowery Street Grocery Building the &quot;Preservation at Its Best Award.&quot;</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t518 Bowery St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Whittier Friends Meeting House and Cemetery",
            "lat": "42.093357",
            "lon": "-91.463436",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-whittierfriendsmeetinghouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Whittier Friends Meeting House and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.093357,-91.463436\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">111.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Whittier Friends Meeting House is located at the crossroads hamlet of Whittier. It was built in 1893 by members of the Orthodox Conservative (Wilburite) Friends, a sect that stretched from eastern Ohio through Southeast Iowa. Between 1893 and 1917, this meetinghouse was the center of community life for the local Orthodox Conservative Friends settlement that formed around Whittier. Friends believed that the church was the living body of worshipers, and the meeting house was simply a gathering place for shared worship. Because of this, the Friends Meetinghouse is plain and unassuming. A plain cemetery, the Whitter Friends Cemetery, is immediately west of the meetinghouse. The Whittier Friends Meetinghouse was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3200 Whittier Rd.<br />Springville, IA 52336<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George A. Wells House",
            "lat": "41.004146",
            "lon": "-91.964102",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George A. Wells House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.004146,-91.964102\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112mi.</span></div>\n\t\t</div>\n\n\t\t<p>George A. Wells House is architecturally significant in terms of its style as well as its local importance as a representative of an early example of 19th century Fairfield. The house is of a vernacularized Greek revival style combining brick veneer and frame structure. The George A. Wells House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t304 S Main St.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "James F. Clarke House",
            "lat": "41.002740",
            "lon": "-91.964062",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James F. Clarke House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.002740,-91.964062\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clarke house is a good example, of the mature work of Francis Barry Byrne. It has been described as one of Byrne’s best works, for its clean, geometric massing of interlocking rectangles, and for its simplicity and greater independence from the influence of the prairie school. The James F. Clarke House was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t500 S Main St.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Samuel Kirkwood Gravesite",
            "lat": "41.670633",
            "lon": "-91.519904",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-govgravesite-govkirkwoodgravesite.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Samuel Kirkwood Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.670633,-91.519904\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112mi.</span></div>\n\t\t</div>\n\n\t\t<p>Samuel Jordan Kirkwood (December 20, 1813 – September 1, 1894) served as the 5th governor of Iowa from 1860-1864 during the American Civil War and as the 9th Governor of Iowa from 1876-1877. Kirkwood also served as a U.S. Senator and Secretary of the Interior under President James Garfield. Kirkwood died in Iowa City and is buried in Oakland Cemetery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 Brown St.<br />Oakland Cemetery<br />Iowa City, IA 52245<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "featured.png",
            "title": "Plum Grove",
            "lat": "41.648388",
            "lon": "-91.525279",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-statehistoricsite-plumgrove.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/featured.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Plum Grove</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.648388,-91.525279\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Plum Grove was built in 1844 by Robert Lucas, the first Territorial Governor of Iowa (1838-1840). It was located on a farm of 80 acres just south of Iowa City. The two-story house was built in the Greek Revival style, using locally made brick. Governor Lucas named his homestead Plum Grove because of the grove of wild plum trees that surrounded it. Plum Grove was added to the National Register of Historic Places in 1973. The home is owned by the State Historical Society of Iowa and the National Society of Colonial Dames of America furnished the home with authentic period pieces, representative of the 1844-1853 period.</p>\t\t<p><em>A location in the collection, State Historic Sites</em></p><p><em>Iowa&#039;s State Historic Sites are located across the state and present authentic stories of Iowa&#039;s history. These sites are overseen by the Iowa Department of Cultural Affairs and are operated in partnership with local historical societies and county conservation boards.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1030 Carroll St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Emmet County Historical Society Museum",
            "lat": "43.398755",
            "lon": "-94.819356",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/emmet-historymuseum-emmetcountyhistoricalsocietymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Emmet County Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.398755,-94.819356\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Emmet County Historical Society Museum complex provides a look at life in the late 1800s and early 1900s. Experience history at the blacksmith shop, the one-room Bolstad country school, as well as exhibits featuring Golden Sun, Boone Jewelry, and Kinnard&#039;s Dairy Bar.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1720 3rd Ave. S<br />Estherville, IA 51334<br />Emmet County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.362.2750</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowa Federation Home",
            "lat": "41.661428",
            "lon": "-91.521116",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Federation Home</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.661428,-91.521116\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Federation Home was established in 1919 by the Iowa Federation of Colored Women’s Clubs (in a house built at least 20 years earlier). The group’s scholarship committee recognized that Black female students lacked housing options in Iowa City; they often lived in the households of university professors or other locals, typically working as domestic servants while also studying at the university. So the federation’s scholarship committee launched a statewide campaign and raised $2,047 to purchase a house the students could call home. They spent $1,000 on the down payment and another $1,000 on furnishings and other expenses. \r\n\r\nFrom 1919 through 1951, the Iowa Federation Home provided room and board for Black female students at a time when the University of Iowa prohibited Black students from living in campus dormitories and most local white landlords would not rent to Black tenants. The Iowa Federation Home was one of very few women’s dormitories in the nation formally owned and operated by a group of African-American women.\r\n\r\nAs of 2020, the house that was known as the Iowa Federation Home remained in use as an apartment house. It was added to the National Register of Historic Places in 2019.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t942 Iowa Ave.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "James A. Beck House",
            "lat": "41.006891",
            "lon": "-91.958099",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James A. Beck House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.006891,-91.958099\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Beck house is superbly representative of Queen Anne residential architecture. It exemplifies all the more important characteristics of the style: the agitated mass, variety of detail, materials and color, the erosion of the mass by covered exterior space, the interpenetrating of interior and exterior, and the conservative irregularity of the plan. The James A. Beck House was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 E Burlington Ave.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bethel African Methodist Episcopal (AME) Church",
            "lat": "41.656332",
            "lon": "-91.523141",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bethel African Methodist Episcopal (AME) Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.656332,-91.523141\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bethel A.M.E. Church is significant as the only historically African American church in Iowa City which, when it was constructed in 1868 and for many years after, provided a critical source of community and association for the town’s small population of African Americans. The Bethel A.M.E. Church was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t411 S Governor St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cavanaugh-Zetek House",
            "lat": "41.669188",
            "lon": "-91.518058",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cavanaugh-Zetek House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.669188,-91.518058\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Cavanaugh-Zetek House is significant for its unique architecture, and is one of the two brick Gothic Revival houses remaining in Iowa City from the late 1860s. The house was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t704 N Reno St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jack Linsay House",
            "lat": "41.658590",
            "lon": "-91.521390",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jack Linsay House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.658590,-91.521390\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Linsay House is an example of Queen Anne architecture, which developed in the United States in the late 1870s. The design was characterized by informality of the plan and elevations, irregular roof contours, projecting wings and bays, and a variety of exterior wall surfaces. The Linsay House was added to the National Register of Historic Places on Aug. 2, 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t935 E College St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Thomas C. Carson House",
            "lat": "41.659216",
            "lon": "-91.522420",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-thomasccarsonhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thomas C. Carson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.659216,-91.522420\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Thomas C. Carson was one of the passengers on the first train to arrive in Iowa City on December 31, 1855, and played an important role in the early growth and commercial development of the city. His long and successful career marks him as one of the important early businessmen in the county and his elaborate home is a symbol of his financial success. The Thomas C. Carson House was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t906 E College St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "O. F. and Lulu E. Fryer House",
            "lat": "40.998759",
            "lon": "-91.963536",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jefferson-nhr-oflulufryerhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">O. F. and Lulu E. Fryer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.998759,-91.963536\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1920 the Fryer House is significant because it helped inaugurate new ideas into the residential architecture of Fairfield, Iowa. The property features a number of amenities for the automobile, including a porte cochere, an architecturally compatible garage, and a poured concrete vehicular driveway. The Prairie School styling is of additional architectural interest as the design of Guy A. Carpenter, a free-lanced architect practicing in Fairfield during the late 1910s. The O.F. and Lulu E. Fryer house was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t902 S Main St.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wells-Stubbs House",
            "lat": "41.006223",
            "lon": "-91.955745",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wells-Stubbs House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.006223,-91.955745\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wells-Stubbs house is architecturally significant and a fine example of vernacular details modified and updated the building in 1900. The Wells-Stubbs House was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t508 E Burlington Ave.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Clark House",
            "lat": "41.649083",
            "lon": "-91.522947",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clark House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.649083,-91.522947\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clark House illustrates the transition from America’s Georgian Colonial tradition, so handsomely embodied in Plum Grove, to the Victorian idea of “richness” that supplanted it. It was built in the 1870s, a generation later than Plum Grove. The basic forms are familiar, with the red brick and gables. The Clark House is a part of a small but architecturally significant group of Italianate-Victorian style houses that remain in Iowa City. It was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t829 Kirkwood Ave.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Summit Apartment Building",
            "lat": "41.658201",
            "lon": "-91.520923",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Summit Apartment Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.658201,-91.520923\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Summit Apartment Building, built in 1916, is the first walk-up flat or apartment block to be constructed in Iowa City, by Parker Nobel Berry, a student of Louis Sullivan. The building contained 13 apartments and its design features frontal side wings and a deep frontal courtyard. The local paper stated that it was one of finest and most up-to-date apartment buildings found to be anywhere. The Summit Apartment Building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t228 S Summit St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "U.S. Senator James F. Wilson House",
            "lat": "40.999704",
            "lon": "-91.962474",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jefferson-nhr-ussenjameswilsonhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">U.S. Senator James F. Wilson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.999704,-91.962474\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The U.S. Senator James F. Wilson House is significant because it is associated with one of Iowa&#039;s foremost leaders during the early decades of Republic party politics and his business leadership in the commercial life of Fairfield&#039;s development. Purchased by Wilson in 1863, the house also calls attention to the private life of Wilson and adds a personal dimension to the properties associated with him as a man of public affairs and business. The U.S. Senator James F. Wilson House was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t805 S Main St.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Alexander Young Log Cabin",
            "lat": "41.297019",
            "lon": "-91.702245",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alexander Young Log Cabin</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.297019,-91.702245\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This old log house, built in 1840 by Alexander Young, is a relic of the days when the Iowa territory was a sparsely settled section of tractless timber and wild prairie. An original structure, the cabin was constructed in Cedar Township before Washington County was formed. The cabin is now situated in Sunset Park. For 36 years this log house served as the family home for Alexander and Mary Young and their eight children. The Young Family was active in the growing community and their home served many purposes and services. It was added to the National Register of Historic Places on August 14, 1973.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Madison St.<br />Sunset Park<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.653.3272</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.chamber.washingtoniowa.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Albert J. and Alice E. Borts House",
            "lat": "41.666318",
            "lon": "-91.518371",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Albert J. and Alice E. Borts House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.666318,-91.518371\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>David Borts arrived in Iowa City from Pennsylvania in 1855, when the community was just starting to take root. He was a successful contractor responsible for many red-brick buildings in town and on the University of Iowa campus, including Calvin Hall (1885).\r\n\r\nHe built this home for his son Albert and daughter-in-law Alice in 1898. The variety of building materials, including common red brick, rusticated dark-red brick and bluish-gray stone, is unusual for the Queen Anne style and reflects Borts’ personal taste as a master builder. As of 2019, Iowa City boasted 87 remaining Queen Anne homes, and only six were built of brick. \r\n\r\nThe Albert J. and Alice E. Borts House was added to the National Register of Historic Places in 2019.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t416 Reno St.<br />Iowa City, IA 52245<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "East College Street Historic District",
            "lat": "41.658826",
            "lon": "-91.519462",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-eastcollegehistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">East College Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.658826,-91.519462\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The East College Street Historic District is locally significant because it encompasses many well preserved examples of the various architectural styles common in Iowa City and illustrates the evolution of the popular styles of residential architecture from the late 19th century to the early 20th century. The East College Street Historic District was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1106 E College St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "South Summit Street District",
            "lat": "41.654524",
            "lon": "-91.521086",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">South Summit Street District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.654524,-91.521086\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The South Summit Street District is made up of 50 buildings, most of which date from 1860 to 1910. The street is broad, the lots and parking wooded with old trees, and most houses sit back at least 60 feet. The flavor of the area is park-like and strongly evocative of the culture of wealthy middle-class Midwestern Americans of the late nineteenth century. An additional item of interest: in the front yard at 331 South Summit a six-foot limestone obelisk dated 1839 marks the southeast corner of the original survey of Iowa City. The South Summit Street District was added to the National Register of Historic Places in 1973.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t526 S Summit St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Woodlawn Historic District",
            "lat": "41.661203",
            "lon": "-91.519295",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Woodlawn Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.661203,-91.519295\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Woodlawn Historic District is a well-preserved residential neighborhood at the east end of Iowa Avenue in Iowa City. The area was originally intended as the site for the governor&#039;s mansion, but in 1857 Iowa&#039;s capital was moved to Des Moines and the Woodlawn area was platted for residential development in the 1880s. This historic neighborhood is made up of large two and two and one half story homes in the Italianate and Queen Anne architectural styles. These homes are on spacious lots set back from the street, which remains unpaved. The Woodlawn Historic District was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1040 Woodlawn Ave. E<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowacity.com/city/planning/historicWoodlawn.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "James McCollister Farmstead",
            "lat": "41.633808",
            "lon": "-91.529484",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James McCollister Farmstead</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.633808,-91.529484\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This site is part of the Philip Clark homestead, which played an important role in early Johnson County and Iowa history. The McCollister farm is a source of rich soil, timber, and water, all necessary elements for a successful and productive pioneer family. The site consists of a brick house in Anglo-Italian style, a large 45’ X 80’ barn, and a smokehouse. The McCollister Farmstead was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2460 S Gilbert St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Oakes-Wood House",
            "lat": "41.656948",
            "lon": "-91.518192",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oakes-Wood House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.656948,-91.518192\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This historic house was the home of American regional artist Grant Wood (1891-1942) from 1936 until his death. The Oakes-Wood House was built in 1858 by Nicholas Oakes and has an interesting mixture of elaborate and plain architectural characteristics. It was added to the National Register of Historic Places on April 17, 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1142 E Court St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Joseph Keck House",
            "lat": "41.298773",
            "lon": "-91.697056",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Joseph Keck House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.298773,-91.697056\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Keck house is an interesting, and very well preserved, example of French mansard residential architecture. If, as is believed (although not yet confirmed), the house was built in the mid-late 1850’s, it is a significantly early manifestation of the style, particularly in Iowa. The division of the facades into panels is one of the best features of the house, and is indicative of certain sophistication on the part of the builder or architect. The interior plan is rather unusual, and may be due to the fact that the center rear mass is believed to have been constructed as early as the 1840’s, with the rest of the house added about a decade later. It was added to the National Register of Historic Places on November 28, 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t504 W Washington St.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Frank Stewart House",
            "lat": "41.298186",
            "lon": "-91.698339",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Frank Stewart House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.298186,-91.698339\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Frank Stewart House is a very good example of a residence in Queen Anne spindle work design. The house coveys architectural significance through its large scale, its steeply pitched roof, extensive use of spindle work, studied asymmetry, variety of wall surface texture, and large lot size. The Frank Stewart House was one of the showplace residences in Washington when it was built. The house is one of the few of its type; which retains today, a high integrity of fabric in the community. It was added to the National Register of Historic Places on November 16, 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t603 W Washington St.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Washington West Side Residential Historic District",
            "lat": "41.298508",
            "lon": "-91.698220",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/washington-nhr-westsideresidentialdistrict-10-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Washington West Side Residential Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.298508,-91.698220\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The West Side Residential Historic District is bound along West Main Street (north), West Jefferson Street (south), South Avenue B (east) and Sunset Park (west). It includes 252 houses and garages, an educational property and Sunset Park, which was developed in the early 20th century.\r\n\r\nThe National Register nomination identified four different time periods of historic residential development and numerous architectural styles in the West Side district including the Railroad Era, 1850-1885 (Gothic Revival, Second Empire, Italianate, T-plan buildings), Turn of the Century, 1885-1910 (Queen Anne, Foursquare, Victorian, Colonial Revival, Shingle, bungalow styles), First Half of the 20th Century, 1910-1945 (Craftsman, Classical Revival, Dutch Colonial Revival, Tudor Revival styles), Post-War Period, 1945-1970 (Ranch, split-level, gable roof, hip roof styles). In addition, Sunset Park and its network of drives and entries were also cited in the nomination form, including 46 contributing structures such as shelters, restrooms, bridges, play equipment, gardens and a pool building.\r\n\r\nThe city of Washington’s earliest development goes back to 1839 when it was platted as the county seat for Washington County. But the town’s most significant period of development was tied to the Missouri and Mississippi Railroad (later the Chicago, Rock Island, and Pacific) in the 1850-1860s and continued after the Civil War and into the first part of the 1880s. While the town’s leaders prepared for a building boom at the turn of the 20th century, population grew slowly from about 4,300 in 1900 to only 4,700 by 1920. Subsequently, residential construction slowed for the next 30 years as the country dealt with the Great Depression, World War II and post-war issues. In 1950, the town enjoyed a new cycle of growth in population and construction, which lasted the next 20 years. It peaked in the 1960s and slowly leveled out throughout the 1970-1980s.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Washington Blvd.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Kirkwood House",
            "lat": "41.649025",
            "lon": "-91.519466",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kirkwood House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.649025,-91.519466\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was the home of Samuel J. Kirkwood, an Iowa city lawyer and business man who served three terms as Governor of Iowa, (1860-1864 and 1876-1877); was sent to the United State Senate twice (1866-1867 and 1877-1881); and served as Secretary of the Interior under President James A. Garfield (1881-1882). The house was built in 1864, just after Kirkwood stepped down as Governor the first time. The Kirkwood House was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1101 Kirkwood Ave.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Kurtz House",
            "lat": "41.297253",
            "lon": "-91.695890",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kurtz House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.297253,-91.695890\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kurtz House is a good local example of vernacular Italianate architecture. It is distinguished by fine proportions and carefully restrained use of detail. The loss of the front veranda does not detract from the significance of the house; indeed, its absence allows better appreciation of the basic form. It was added to the National Register of Historic Places on September 22, 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t305 S C Ave.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Scofield House",
            "lat": "41.299158",
            "lon": "-91.694580",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Scofield House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.299158,-91.694580\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Scofield house was the home of General Hiram Scofield, a soldier during the Civil War. Gen. Scofield was an early opponent of slavery and his house was used as part of the Underground Railroad. He was also a practicing lawyer in Washington Iowa in 1858.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t339 W Main St.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Roy and Antoinette Louden House",
            "lat": "41.004924",
            "lon": "-91.951565",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Roy and Antoinette Louden House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.004924,-91.951565\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1925 the R.R. and Antoinette Louden House is historically significant for calling attention to “Roy” Louden and his career with the Louden Machinery Company. Louden’s employment with the firm began in 1913. It included a highly successful service as the manager of the company’s advertising department in the 1920s and as the corporation’s secretary from 1931 until his death in 1951. Roy’s career also illustrates the second generation of the Louden family entering the management echelons of the Louden Machinery Company. Roy and Antoinette Louden House was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t905 E Adams Ave.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rose Hill",
            "lat": "41.665469",
            "lon": "-91.514837",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-rosehillhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rose Hill</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.665469,-91.514837\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Rose Hill is locally significant as one of the earliest extant dwellings in Iowa City displaying the Greek Revival style. This is exhibited in details such as the window trim, the stone entablature, the entryway and its sidelights, and the cornice. This style was popular in Iowa City from the town&#039;s inception when a design by architect John Francis Rague was selected for the new territorial capitol. Rose Hill was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1415 E Davenport St.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Mills Seed Co. Building",
            "lat": "41.301113",
            "lon": "-91.692141",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/washington-historicsite-millsseedco.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mills Seed Co. Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.301113,-91.692141\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mills Seed Co. building was constructed in 1907 to serve as the western distribution center for Mills Seed Co., headquartered in Rose Hill, New York. In 1934, the building was purchased by Curran Co. which produced valentines, tally cards for Bridge, greeting cards and many other printed items. The Washington Pearl Button factory occupied the building in 1952. After falling into disrepair it was listed on the ten most endangered buildings in Iowa in 2009. The following year it was moved about ten blocks to its current location in the Washington Historic District where you can visit, listen to live music and shop for antiques.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t212 N Iowa Ave.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Confederate Invasion of Iowa",
            "lat": "40.677500",
            "lon": "-92.427300",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/davis-monument-confederateinvasionofiowa.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Confederate Invasion of Iowa</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.677500,-92.427300\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This monument marks the northern most point of incursion into Iowa by Confederate Forces. On October 12, 1864, Lieutenant James &quot;Bill&quot; Jackson led twelve heavily armed Missouri Partisan Rangers dressed in Union uniforms in a raid through Davis County, Iowa, resulting in the murder of three local citizens.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tLilac Ave. and 265th St.<br />Bloomfield, IA 52537<br />Davis County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Washington Historic Main Street",
            "lat": "41.299435",
            "lon": "-91.692366",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Washington Historic Main Street</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.299435,-91.692366\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The town of Washington became the county seat of Washington County on January 25, 1839 and was named for President George Washington. The city&#039;s historic main street and commercial district has a number of preserved structures allowing visitors a glimpse into Washington&#039;s past. The historic commercial district was added to the National Register of Historic Places on May 22, 2013</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t205 W Main St.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.653.3918</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.mainstreetwashington.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Washington County Courthouse",
            "lat": "41.299654",
            "lon": "-91.693927",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Washington County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.299654,-91.693927\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1885-1887, the Washington County Courthouse is an excellent example of Iowa’s Victorian Romanesque courthouse. As center of county government, an Iowa town was reasonably assured of economic and population growth. It was added to the National Register of Historic Places on July 2, 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t220 Main St. W<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.653.7715</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://co.washington.ia.us\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Longfellow Historic District",
            "lat": "41.654582",
            "lon": "-91.516509",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Longfellow Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.654582,-91.516509\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Longfellow Historic District is locally significant as an example of suburban development and as a fine collection of early 20th century residential design. The Longfellow Historic District was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t602 Oakland Ave.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Muscatine Avenue Moffitt Cottage Historic District",
            "lat": "41.657187",
            "lon": "-91.515260",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Muscatine Avenue Moffitt Cottage Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.657187,-91.515260\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The five cottages located in the 1300 block of Muscatine Avenue form a district which is locally significant as an excellent example of the rental houses built by Howard F. Moffitt during 1939 and 1940. These were designed in a popular Period House style and faced with limestone rubble collected from local outcroppings, intended to evoke an image of a vernacular, hand-built, cottage of the English or European countryside. These stone cottages exhibit a high degree of integrity of design, workmanship, and materials and an outstanding degree of integrity of association and setting. The Muscatine Avenue Moffitt Cottage Historic District was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1322 Muscatine Ave.<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Winfield Smouse House",
            "lat": "41.296642",
            "lon": "-91.692101",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Winfield Smouse House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.296642,-91.692101\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Winfield Smouse house illustrates the financial and social status Washington pioneer Winfield Smouse achieved. Smouse arrived in Washington in 1867, and was engaged in the grocery hardware trades for many years. He made his fortune in real estate investments and at the time of his death he was considered to be the wealthiest resident in the city. It was added to the National Register of Historic Places on January 27, 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t321 S Iowa Ave.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Coffin&#039;s Grove Stagecoach House",
            "lat": "42.498571",
            "lon": "-91.536425",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Coffin&#039;s Grove Stagecoach House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.498571,-91.536425\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Coffin&#039;s Grove Stagecoach House is one of the few buildings still standing that were used as stagecoach stops during the 1850s. Also unique is the house&#039;s stark Victorian architecture, which was rarely found in the Midwest. The house was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1363 Candle Rd.<br />Manchester, IA 52057<br />Delaware County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Louden Whirl Around",
            "lat": "40.998617",
            "lon": "-91.954036",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Louden Whirl Around</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.998617,-91.954036\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Installed on the grounds of the Fairfield Golf and Country Club circa 1930 and fabricated at approximately the same time, the Louden Whirl-Around was the introduction of playground equipment to the Louden product line, and stemmed from the firm’s need to acquire certain patent rights critical for the development of its overhead material handling systems. Because another company in Illinois held those rights, Louden acquired that firm to obtain those patent rights. This purchase illustrates the burgeoning growth of the Louden Machinery Company as an industrial manufacturer in the 1920s. The Whirl-Around provides a surviving reminder of that growth and the company’s presence in the everyday life of Fairfield. The Louden Whirl Around was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t905 E Harrison Ave.<br />Fairfield Golf and Country Club<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "State Theater",
            "lat": "41.298189",
            "lon": "-91.690724",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">State Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.298189,-91.690724\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The State Theater was initially an Opera House and has been showing movies since 1897 and is the world&#039;s longest continually operating movie theater. The theater was renovated in 2011 to blend the historic façade with modern amenities like plush and spacious theater seating.\r\n\r\nThe State Theater featured prominently in the 2017 film &quot;Saving Brinton.&quot; In the film, Michael Zahs uncovers some of America&#039;s oldest motion pictures and premieres them at the State Theater.</p>\t\t<p><em>A location in the collections: Hollywood in the Heartland, 99 County Tour - Iowa History Month</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t123 E Washington St.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.653.4023</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.fridleytheatres.com/washington.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Blair House",
            "lat": "41.298144",
            "lon": "-91.690219",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Blair House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.298144,-91.690219\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Blair House was designed and built in 1880-1881 by Iowa architect William Foster, who also designed the Washington County Courthouse. The first resident was Winfield Smouse and was later occupied by the Blair family. The house served as the headquarters of the Washington Commercial Club in 1902 and the City Hall in 1925.  It was added to the National Register of Historic Places on June 4, 1973.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t205 E Washington St.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.653.3272</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.chamber.washingtoniowa.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Mary&#039;s Parish Catholic Church",
            "lat": "41.483090",
            "lon": "-91.581503",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Mary&#039;s Parish Catholic Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.483090,-91.581503\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Its hilltop location, overlooking the Riverside community, and the relatively large scale of the various buildings, give it marked visual prominence. The church spire can be seen from the highway some distance before the town comes into clear view, and the complex, or one or more of its members, is visible from many points in the community. They are, collectively, perhaps the largest buildings in the town, and their brick facades further set them off from the surrounding smaller frame houses which comprise the bulk of Riverside’s residential construction. It was added to the National Register of Historic Places on July 9, 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t360 Washburn St.<br />Riverside, IA 52327<br />Washington County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Saints Peter and Paul Chapel and Cemetery",
            "lat": "41.848497",
            "lon": "-91.463724",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Saints Peter and Paul Chapel and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.848497,-91.463724\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Saints Peter and Paul Catholic Church was originally built in 1861 by Czech immigrants. The building began to deteriorate in 1916 and was eventually torn down in 1938. The new (and current) church was built across the street in 1917, and a monument was placed at the original location. The church operated until 1996 when it had to be closed for lack of patronage. Soon after the church closed, a group of parishioners collaborated to purchase and renovate the church into a more modern facility. The renovations were complete in 1998 and the church is now available to rent for weddings and other small ceremonies. It was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1165 Taft Ave. NE<br />Solon, IA 52333<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.624.2223</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.sts-peterandpaul.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Evergreen Ridge Stock Farmstead Historic District",
            "lat": "40.984774",
            "lon": "-91.965842",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jefferson-nhr-evergreenridgestockfarmhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Evergreen Ridge Stock Farmstead Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.984774,-91.965842\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Evergreen Ridge Stock Farmstead Historic District is significant locally because the property calls attention to the importance of draft horses used for powering agricultural equipment prior to farm mechanization during the 20th century. The owner of this farm, J. G. Maasdam, was a prominent importer and breeder of award-winning Belgian, Percheron and other draft horses. The Evergreen Ridge Stock Farmstead Historic District was added to the National Register of Historic Places in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2224 Hwy 1 S<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Abbe Creek School",
            "lat": "41.942168",
            "lon": "-91.451333",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-abbecreekschoolmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Abbe Creek School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.942168,-91.451333\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Abbe Creek School, located in Franklin Township northwest of Mount Vernon in Linn County, Iowa, features distinctive characteristics of an antebellum one-room rural district school built in a vernacular expression of the Greek Revival style using locally-made brick. Built in 1858, the school was built on land owned by Henry Kepler, a pioneer Franklin Township farmer, for public school purposes on part of his original land claim. Throughout its history, the school was known variously as the Sugar Grove School, the Kepler School, the Sumner School (Independent), the Little Brick School, and the Abbe Creek or Abbe School. Paid for and maintained by local and county property taxes, this one-room brick schoolhouse served this rural Linn County district for nearly eight decades, educating Kepler&#039;s children and many other Franklin Township children until 1936, when the school closed permanently. The Sumner School was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t877 W Mount Vernon Rd.<br />Mount Vernon, IA 52314<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Estherville Carnegie Library",
            "lat": "43.402494",
            "lon": "-94.835978",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/emmet-nhr-historiccarnegielibrary-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Estherville Carnegie Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.402494,-94.835978\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in the heart of downtown Estherville, this historic Carnegie Library building is more than 100 years old. Carnegie libraries were built around the state between 1892 and 1919 with grants given by Scottish-American businessman and steel magnate Andrew Carnegie. Enjoy the beauty of the architecture, monuments, and green space in the surrounding square.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t613 Central Ave.<br />Estherville, IA 51334<br />Emmet County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World War I Monument",
            "lat": "43.402226",
            "lon": "-94.836020",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World War I Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.402226,-94.836020\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The World War I Monument on the Estherville Library Square commemorates soldiers from the Emmet County area who fought in World War I. According to the Estherville Enterprise of January 5, 1939, the granite monument listed the names of 612 soldiers and featured a life-size doughboy. After its mid-winter installation, the monument was officially dedicated on Memorial Day 1939. The Service Star Legion, previously known as the War Mothers, led the effort to raise $4,000 to purchase the 9-ton monument.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Central Ave.<br />Estherville Public Library<br />Estherville, IA 51334<br />Emmet County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Future Birthplace of Captain James T. Kirk",
            "lat": "41.479668",
            "lon": "-91.581982",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/washington-uniquelyiowa-futurebirthplacecaptainkirk.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Future Birthplace of Captain James T. Kirk</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.479668,-91.581982\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Fictional Star Trek character Capt. James T. Kirk, arguably the most famous and highly-decorated starship captain in the history of the Starfleet, will be born in Riverside, Iowa, on March 22, 2228.\r\n\r\nThe community of Riverside was also the setting for the 2005 film &quot;Invasion Iowa&quot; featuring William Shatner (the actor that portrayed Capt. James T. Kirk).</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t51 W 1st St.<br />Riverside, IA 52327<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.930.8735</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Maasdam Barns",
            "lat": "40.986826",
            "lon": "-91.963117",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jefferson-historymuseum-maasdambarns.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Maasdam Barns</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.986826,-91.963117\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Maasdam Barns were built in 1910. The barns were used by the Maasdam family who raised and sold award winning draft horses, and also bred the Worlds Largest Horse, which is pictured at the barns with a life sized cardboard cutout. There is also a museum area that has historical artifacts about the family.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2000 S Main St.<br />Fairfield, IA 52556<br />Jefferson County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://jeffersoncountyiowa.com/barns/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Finken Barn",
            "lat": "41.521697",
            "lon": "-95.726032",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-barn-finkenbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Finken Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.521697,-95.726032\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Finken Barn is a unique historic barn. The roof has laminated rafters which were raised into place with gin pole and horses. Each rafter is five boards thick bolted together and cut in curved shape. The barn was featured on the Iowa Barn Foundation&#039;s All-State Barn Tour in 2012 and 2014.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3005 335th St.<br />Logan, IA 51546<br />Harrison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "West Auburn Bridge",
            "lat": "43.016266",
            "lon": "-91.878593",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Auburn Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.016266,-91.878593\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">112.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The West Auburn Bridge was built in 1881. It is a pin-connected Whipple through truss bridge, one of only eight bridges of that type known to exist in Iowa. A new bridge was constructed in 1996, but the 1881 bridge was left standing. The bridge was added to the national Register of Historic Places on June 25, 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBn Rd.<br />Saint Lucas, IA 52166<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Riverside History Center",
            "lat": "41.480774",
            "lon": "-91.576654",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Riverside History Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.480774,-91.576654\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Riverside History Center/Museum is also known as the Voyage Home Museum. The museum houses historical artifacts, as well as a monument to the &quot;Future Birthplace of Captain James T. Kirk&quot; of the Star Trek franchise. The museum has exhibits devoted to Cap. Kirk and the Star Trek franchise, along with actual historical items that display the history of Riverside.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t361 E 1st St<br />Riverside, IA 52327<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.648.2226</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "St. Lucas Historical Society Museum",
            "lat": "43.066766",
            "lon": "-91.930563",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Lucas Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.066766,-91.930563\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Luke&#039;s School is a unique architectural example of the Georgian Revival style which attempted to restore order and simplicity to buildings after the exuberant styles of the 19th century. The design and detailing were more refined and complex and classical elements and detailing more pronounced. St. Luke&#039;s is also significant because it is one of the few remaining schools of that era left in Fayette County. The school was in operation until about 2000 and is now used by the Saint Lucas Historical Society for a museum. The St. Luke&#039;s School and Recreation Center was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t212 E Main St.<br />Saint Lucas, IA 52175<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.1454</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Jonathan Clark Conger House Museum",
            "lat": "41.298052",
            "lon": "-91.682146",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jonathan Clark Conger House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.298052,-91.682146\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Conger House was built in 1847 by Nathan Littler, teacher and author of the first Washington County History book. Major additions were made in 1867 by businessmen, Jonathan Clark Conger, under the direction of John Patterson Huskins. In 1973 the house became the Jonathan Clarke Conger House Museum and displays collections relating to Washington County history. It was added to the National Register of Historic Places on June 28, 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t903 E Washington St.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.653.3272</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.chamber.washingtoniowa.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Smith Wildman and Jennie (Hearne) Brookhart House",
            "lat": "41.297999",
            "lon": "-91.678313",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Smith Wildman and Jennie (Hearne) Brookhart House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.297999,-91.678313\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Smith Wildman and Jennie (Hearne) Brookhart residence, built in 1910, was home to one of the most significant (and controversial) figures in Iowa politics in the 1920s who fought for governmental assistance for farmers in Iowa. Brookhart was an important figure in military circles due to his emphasis on marksmanship as a necessary skill, thus becoming known as &quot;The Man Who Taught the Army How to Shoot.&quot; The residence is a significant example of a substantial early 20th century &quot;fireproof&quot; residence of &quot;steel concrete&quot; construction that was designed by the Davenport architectural firm of Clausen and Clausen. It was added to the National Register of Historic Places on August 22, 2005.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1203 E Washington St.<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Polygonal Barn",
            "lat": "43.225666",
            "lon": "-92.127472",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Polygonal Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.225666,-92.127472\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The most common of the variations of the round barn built in Iowa between 1910 and 1920 was the polygonal barn of 6:16 equal sides. This barn is a 16-sided structure with a central silo and self-supporting roof in 16 sections. This example is exceptional because of its heavy timber construction with interlocking joints. It was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t22664 200th St.<br />Cresco, IA 52136<br />Howard County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henyon-Kasper-Duffy Barn",
            "lat": "41.749566",
            "lon": "-91.472421",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henyon-Kasper-Duffy Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.749566,-91.472421\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Henyon-Kasper-Duffy Barn illustrates the adaptation of the traditional timber frame barn design to the engineering of taller barns, and is one of the few intact pre-1880 barns. It retains a high degree of period integrity from its construction. The Henyon-Kasper-Duffy Barn was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2520 Hwy. 1 NE<br />Solon, IA 52333<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Mulford Barn",
            "lat": "41.701230",
            "lon": "-91.485436",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-barn-mulfordbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mulford Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.701230,-91.485436\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This farm was originally owned by Henry Felkner, a prosperous miller and farmer.  He bought the land in 1837. Built between 1840 and 1870, this 30’x67’ barn is considered a Civil War barn. Old battens are attached with square nails and the barn is framed using hewn timber posts and beams. The barn was built in one single building “campaign.” It is quite a large barn, especially for not having an expansion. Because of it’s age, the Mulford Barn is an important historical barn. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3188 IA Hwy. 1 NE<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Roland and Marilyn Wehner House",
            "lat": "41.707988",
            "lon": "-91.482967",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Roland and Marilyn Wehner House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.707988,-91.482967\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Roland Wehner, a noted Iowa architect, graduated from Iowa State College in Ames in 1954. He married his wife Marilyn in 1956, and the couple moved to Iowa City where Wehner designed and built this home in 1959. The house was designed in the popular Prairie School style, influenced by the work and writings of Frank Lloyd Wright. Notable features include distinctive roof lines and a cantilevered porch balcony. The house was listed on the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3112 Iowa Highway 1 NE<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Union Township No. 5 School",
            "lat": "42.953830",
            "lon": "-91.809040",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Union Township No. 5 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.953830,-91.809040\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Union Township No. 5 school was a very advanced one room schoolhouse for its time. Built in 1856, the school had a large classroom area, a kitchen, and a large outdoor area. The school&#039;s architecture models a small church rather than a schoolhouse.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t511 S Vine St.<br />Fayette County Fairgrounds<br />West Union, IA 52175<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Vine Street Bridge",
            "lat": "42.954514",
            "lon": "-91.808030",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vine Street Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.954514,-91.808030\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Vine Street Bridge spans Otter Creek. It is a concrete Luten arch bridge built in 1910 by N.M. Stark and Company. At 66 feet, it is one of the longest concrete bridges in the state. The Vine Street Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tVine St.<br />West Union, IA 52175<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "McGee Brick School House",
            "lat": "42.502143",
            "lon": "-91.518690",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McGee Brick School House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.502143,-91.518690\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The McGee School is an example of a brick one-room school house. It was built in 1868 and remained in operation until 1952. It is also the only known school building associated with the rural school advocate and educator, Sarah Gillespie Huftalen. Huftalen established the Rural Teachers component of the Iowa State Teachers Association in 1910 and developed progressive teaching methods that inspired rural students, parents, and teachers. The McGee School was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t197th St. and 145th Ave.<br />Manchester, IA 52057<br />Delaware County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.927.6088</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.mcgeebrickschool.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Clarinda Treatment Complex",
            "lat": "40.757545",
            "lon": "-95.035069",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-historymuseum-clarindatreatmentcomplex.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clarinda Treatment Complex</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.757545,-95.035069\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>At the Clarinda Treatment Complex visitors can view the organte Victorian architectural detail of the facility built as the home of Iowa&#039;s third insane asylum. When construction was complete in 1888 the Clarinda State Hospital&#039;s Kirkbride was the longest under one roof in the world, enclosing over 500,000 square feet. The hospital housed alcoholics, mentally ill, criminally insane and elderly patients.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1800 N 16th St.<br />Clarinda, IA 51632<br />Page County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "State Savings Bank - Logan",
            "lat": "41.642888",
            "lon": "-95.787205",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-nhr-statesavingsbank.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">State Savings Bank - Logan</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.642888,-95.787205\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The State Savings Bank, built in 1902, is a good example of small town bank design, featuring white terra cotta ornamentation. This locally distinctive building recalls the once popular Classical Revival style as applied to commercial architecture. The wrap-around design, made possible by an alley-side location, allowed for the use of a traditional corner bank type façade in the middle of a city block. The bank was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t312 E 7th St.<br />Logan, IA 51546<br />Harrison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hobson Block",
            "lat": "42.961040",
            "lon": "-91.808525",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-nhr-hobsonblock.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hobson Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.961040,-91.808525\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1885, the Hobson Block is a good example of Late Victorian commercial architecture. The building is also significant for its association with Joseph Hobson a successful lawyer, real estate speculator and politician. The Hobson Block was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 S Vine St.<br />West Union, IA 52175<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Harrison County Courthouse",
            "lat": "41.643576",
            "lon": "-95.789785",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-nhr-harrisoncountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Harrison County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.643576,-95.789785\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Harrison County Courthouse was completed in 1911 and is the fifth building to serve this function. The original county seat was Magnolia, but it was moved to Logan in 1876. The courthouse was designed in the Classical Revival style by architect Joseph E. Mills. The building&#039;s interior features four murals along the main stairway, depicting the old courthouse in Magnolia, the first courthouse in Logan, the horn of plenty, and Lady Justice. The building was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t7th St.<br />Logan, IA 51546<br />Harrison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Moorhead Cultural Center of the Loess Hills",
            "lat": "41.922330",
            "lon": "-95.851031",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monona-historymuseum-moorheadculturalcenteroftheloesshills.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Moorhead Cultural Center of the Loess Hills</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.922330,-95.851031\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Moorhead Cultural Center of the Loess Hills features exhibits highlighting local arts and interests. It is housed in the former Cover School, a one-room school that operated from 1929 to 1955.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t120 Oak St.<br />Moorhead, IA 51558<br />Monona County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.886.5384</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fayette County Courthouse",
            "lat": "42.961936",
            "lon": "-91.807257",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fayette County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.961936,-91.807257\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The citizens of Fayette County squabbled over a location of the county seat for many years. Fayette even offered to built a courthouse for free if it was chosen as county seat. But, West Union was chosen as county seat. In 1872, a jail had not yet been built and prisoners were being housed in the courthouse. A prisoner knocked out a stovepipe and used matches to start the courthouse on fire. He escaped while the courthouse burned down! A new courthouse was erected, and it also burned - in 1922. The present courthouse was completed in 1923, at a cost of $299,000. The Fayette County Courthouse was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 N Vine St.<br />West Union, IA 52175<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First Baptist Church of West Union",
            "lat": "42.962894",
            "lon": "-91.808477",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Baptist Church of West Union</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.962894,-91.808477\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First Baptist Church of West Union is Greek Revival style church. It is the only structure in the city with historic integrity remaining from the early settlement and development of the community. The First Baptist Church of West Union was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 N Vine St.<br />West Union, IA 52175<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Fayette County Historical Center",
            "lat": "42.961520",
            "lon": "-91.806084",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fayette County Historical Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.961520,-91.806084\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Fayette County Historical Center is housed in the Maple View Sanitarium, constructed in 1903. 1903 three-level brick building with elevator. It is as an interpretive center staffed by volunteers. Agricultural exhibits are located on the lower level with general museum upstairs. The research room is located on the ground level and has a collection of American Civil War rosters.  The building was built by Dr. F.B. Whitmore, using his own resources, built the Maple View Sanitarium where patients could come to receive care with modern techniques. The building served as a hospital until 1951, when it became one of the first nursing homes in the area. It is now the Fayette County Historical Center. The Maple View Sanitarium was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 N Walnut St.<br />West Union, IA 52175<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.422.5797</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.fayettecountyiowa.org/HistoricalCenter\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Red Brick Schoolhouse",
            "lat": "41.264556",
            "lon": "-91.690010",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Red Brick Schoolhouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.264556,-91.690010\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Red Brick Schoolhouse was home to the Red Brick School District. The district was established in 1877 and the school house was in operation until May 8, 1960. The schoolhouse was donated to the Washington County Historical Society in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2706 Co Rd W47<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.653.3272</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.chamber.washingtoniowa.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Fred C. Brummett Bridge",
            "lat": "40.739284",
            "lon": "-95.012871",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fred C. Brummett Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.739284,-95.012871\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Fred C. Brummett was the first Page County soldier to die in France during World War I. He was killed in action in March 1918 and was decorated with the Croix de Guerre for his bravery. A new bridge over the Nodaway River at Clarinda was nearly complete at the time of his death, so it was named in his honor. According to a bulletin from the Iowa State Highway Commission, some 3,000 people attended the 1918 dedication of the Brummett Bridge, where Gov. William L. Harding offered a few remarks, and the Major George W. Landers&#039; Clarinda Military Band and the Liberty Loan Glee Club performed a few tunes. The original 250-foot-long steel pony truss bridge was replaced by a concrete bridge in 1949, but a memorial plaque remains.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. J35<br />Clarinda, IA 51632<br />Page County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Correctionville Historic Marker",
            "lat": "42.474841",
            "lon": "-95.785694",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-historicmarker-correctionvillename-2b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Correctionville Historic Marker</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.474841,-95.785694\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Correctionville - the city with the longest single name in Iowa - was named for the correction line which forms Fifth Street through the heart of the business district. \r\n\r\nCorrection lines were used by surveyors in making land divisions. Since the world is round, every land division from north to south cannot be the same size, because the earth curves toward the top.\r\n\r\nTo allow for this, east/west correction lines were established, then adjustments were made along those lines to make all land parcels nearly equal in size.\r\n\r\nIn Correctionville, each north/south street is adjusted at the 5th Street correction line - creating a &quot;jog.&quot;  The main &quot;jog&quot; is in the heart of town, where Rock, Kedron and Union Townships meet.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5th St. and Driftwood St.<br />Correctionville, IA 51016<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George A. and Mary Tinkel Bailey House",
            "lat": "42.481217",
            "lon": "-95.784559",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-georgemarybaileyhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George A. and Mary Tinkel Bailey House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.481217,-95.784559\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Significant for being the anchor of the town, this Victorian mansion was built for businessman George A. Bailey in 1883. Orator and politician William Jennings Bryan stayed in the home in 1911, and the house was the scene for numerous citywide gatherings. One year, a burglar entered the home but was frightened, so the story goes, by the family parrot. A year later, a mock trial was staged in which a “burglar” was found guilty and ordered to buy treats for the ladies of the jury. The George A. and Mary Tinkel Bailey House was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t423 10th St.<br />Correctionville, IA 51016<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Backbone State Park",
            "lat": "42.616614",
            "lon": "-91.561410",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Backbone State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.616614,-91.561410\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Backbone is one of Iowa&#039;s most important state parks. It was the first state park to be acquired, dedicated in 1919, and was extensively developed by the Civilian Conservation Corps during the New Deal era. The park was added to the National Register of Historic Places in 1991. \r\n\r\nInterdisciplinary Artist Kimberly Moss will be working at Backbone State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1347 129th St.<br />Dundee, IA 52038<br />Delaware County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.924.2000</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610105\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Summit No. 2 School",
            "lat": "42.451236",
            "lon": "-95.794947",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-historicschool-summitno2.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Summit No. 2 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.451236,-95.794947\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Summit #2 Schoolhouse opened in 1912 and remained in use until 1967. The school still features many of its original interior pieces, including a wood burning furnace in the center of the classroom, wooden desks, slate writing plates, and other early 20th century school materials.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tO&#039;Brien Ave.<br />Little Sioux County Park<br />Correctionville, IA 51016<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Correctionville Museum",
            "lat": "42.474821",
            "lon": "-95.786374",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-historymuseum-correctionvillemuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Correctionville Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.474821,-95.786374\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Correctionville Museum is the largest collection of historical artifacts in Correctionville, which is the city with the longest single name in Iowa. The museum is held in the century-old Merchant&#039;s State Bank houses local artifacts including a extensive exhibit on Norman E. Lee, a well-known band leader.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5th St. and Driftwood St.<br />Correctionville, IA 51016<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.372.4791</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wesley West House",
            "lat": "41.917889",
            "lon": "-91.428969",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wesley West House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.917889,-91.428969\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wesley West House built in 1877 is an excellent example of the Italianate style, and exemplifies the craftsmanship of local builder Marsden Keyes. Wesley West was, by 1878, the owner of six hundred acres of farmland near Mount Vernon. The homestead, itself, included 170 acres and adjoined the city on its northern boundary. The Wesley West House was shortly after added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t525 Palisades Rd. SW<br />Mount Vernon, IA 52314<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bohemian Savings Bank",
            "lat": "43.217810",
            "lon": "-92.090742",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bohemian Savings Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.217810,-92.090742\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bohemian Savings Bank was built in 1910, constructed of local materials with Classical and central European stylistic elements. It is an important visual symbol of Protivin&#039;s economic self-reliance, independence, stability, and Czech ethnic origin. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 N Main St.<br />Protivin, IA 52163<br />Howard County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Gribble Barn",
            "lat": "43.160871",
            "lon": "-92.014950",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-barn-gribblebarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gribble Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.160871,-92.014950\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Gribble Barn is a Czech barn. It was remained in the same family since it was built. It was pictured in the New York Times on June 1, 2012. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3109 155th St.<br />Co. Rd. V64<br />Fort Atkinson, IA 52144<br />Winneshiek County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "King Memorial Chapel",
            "lat": "41.925114",
            "lon": "-91.423871",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-kingmemorialchapel.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">King Memorial Chapel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.925114,-91.423871\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>King Memorial Chapel sits high on a ridge and is the centerpiece of the Cornell College campus. It was named for Cornell College President William Fletcher King, who led the college for 45 years and kept the college financially afloat when it faced bankruptcy during construction of the chapel. King Chapel was built between 1875 and 1876, at a time when colleges were springing up across the state to spread culture among the people. Cornell and the chapel played a role in this effort, offering lectures, concerts and performances which were open to the public. These activities brought together town and gown, farmer and gentlemen, all seeking cultural enrichment. Over the years William Howard Taft, Amelia Earhart, Carl Sandburg, Frank Lloyd Wright and Martin Luther King, Jr. have spoken at King Chapel. King Chapel has a unique history, having never been the home of a formal congregation. It is perhaps the largest religious structure in the state not supported by an active congregation. King Memorial Chapel was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t600 1st St. SW<br />Cornell College<br />Mount Vernon, IA 52314<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cornell College Historic District",
            "lat": "41.925984",
            "lon": "-91.424862",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cornell College Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.925984,-91.424862\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Cornell College is well known for its mixture of institutional and residential architectural forms ranging from the 1850s to the present. The buildings within the district display a high degree of physical integrity, and represent a broad range of architectural forms, particularly those of the mid- and late 19th century. Cornell College was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t600 1st St. SW<br />Mount Vernon, IA 52314<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.895.4000</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.mvhpc.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Estherville Meteorite Site",
            "lat": "43.438505",
            "lon": "-94.817022",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/emmet-historicmarker-esthervillemeteoritesite-1.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Estherville Meteorite Site</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.438505,-94.817022\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>On May 10, 1879, a 455 pound meteorite fell to earth in Emmet County a few miles north of Estherville and has become known as the Estherville Meteorite. This is the largest Meteorite known to have fallen in North America. When it struck it buried itself 15 feet in the ground. Portions of the meteorite are on display in the Estherville Public Library, the Smithsonian Museum of Natural History and the Naturhistorisches Museum in Vienna, Austria.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHighway 4<br />Estherville, IA 51334<br />Emmet County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Ash Park Historic District",
            "lat": "41.927858",
            "lon": "-91.420330",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ash Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.927858,-91.420330\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ash Park District is significant because it embodies distinctive characteristics of the types and methods of construction in Mount Vernon from the period. As a residential district from the railroad era, a number of motifs and decorative features were commercially fabricated and brought in using rail service. Ash Park illustrates platting efforts stimulated by the rail line presence. The Ash Park Historic District was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t703 6th Ave. N<br />Mount Vernon, IA 52314<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Bijou Theatre",
            "lat": "41.922114",
            "lon": "-91.418510",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bijou Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.922114,-91.418510\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bijou Theatre opened in the early 1970s as the Strand Theatre in its original location on 1st St. The theatre burned down in early 1975, and was moved to its current location on 2nd St. The theatre reopened as the Odeum Theatre in late 1975, and operated for more than 20 years. It closed briefly in 1998, but reopened as the Bijou Theatre in 1999, and is currently operating in its current location.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t123 2nd St. SW<br />Mount Vernon, IA 52314<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Clarinda Carnegie Art Museum",
            "lat": "40.740581",
            "lon": "-95.038288",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-artmuseum-clarindacarnegieartmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clarinda Carnegie Art Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.740581,-95.038288\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 2014 Karen and Robert Duncan opened the Clarinda Carnegie Art Museum in the historic Clarinda Carnegie Library building. The Clarinda Carnegie Art Museum provides Clarinda and Southwest Iowa arts enrichment through educational programming, including high-quality exhibitions. In January 1908, the town of Clarinda received $15,000 in grant funding from the Carnegie Library Foundation for the construction of a new library building. Clarinda resident G. William Richardson donated the land and W.W. Welch was chosen as the architect for the project. The new library was formally dedicated on April 15, 1909 and remained in this building for 50 years. The Carnegie building was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 N 16th St.<br />Clarinda, IA 51632<br />Page County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "W. T. S. White House and Carriage House",
            "lat": "40.741724",
            "lon": "-95.038204",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-nhr-wtswhitehousecarriagehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">W. T. S. White House and Carriage House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.741724,-95.038204\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The W.T.S. White House and Carriage House is one of the best residential examples of Colonial Revival design in the city of Clarinda and work of southwestern Iowa architect and builder, William W. Welch. Built in 1906, this property is well preserved and carefully maintained and continues to be a prominent home in Clarinda. The first owner, W.T.S. White, was president of the Clarinda Poultry Butter and Egg Company. The company&#039;s produce was marked in the United States, England and Scotland with annual sales of $3 million. The W.T.S. White House and Carriage House was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 N 16th St.<br />Clarinda, IA 51632<br />Page County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Page County Courthouse",
            "lat": "40.738748",
            "lon": "-95.037121",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-nhr-pagecountycourthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Page County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.738748,-95.037121\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Page County Board of Supervisors struggled for many years to erect an adequate courthouse for the county. Clarinda became the county seat in 1853 and the county judge erected a building on the north side of the public square and was used until 1856 when a 30 by 40 foot, two-story frame structure was built on the southeast corner of the square. The county quickly outgrew the facility and churches and schools were used for court purposes. The board of supervisors repeatedly raised the issue of building a new courthouse in the early 1870s and 1880s. After the measure was defeated multiple times, the supervisors took matters into their own hands and the cornerstone of the present courthouse was laid in 1885 and completed in 1887. The courthouse has undgone little change over the years with only the removal of its clock and squire. The Page County Courthouse was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Clarinda, IA 51632<br />Page County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Neff Block",
            "lat": "41.922256",
            "lon": "-91.417212",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Neff Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.922256,-91.417212\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Neff Block was built in 1860. It has been used as a theater, a residence and a store. The building currently has commercial space on the first floor and apartments on the second floor. The Neff Block was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 1st St. NW<br />Mount Vernon, IA 52314<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Grimes Octagon Barn",
            "lat": "42.936384",
            "lon": "-91.762674",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grimes Octagon Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.936384,-91.762674\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grimes Octagon Barn is a 19th century octagon barn. Few are known to exist on Iowa farms. The Grimes Octagon Barn was added to the National register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tEcho Valley Rd.<br />West Union, IA 52175<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mount Vernon Commercial Historic District",
            "lat": "41.922322",
            "lon": "-91.417271",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mount Vernon Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.922322,-91.417271\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mount Vernon Commercial Historic District is significant because it embodies the distinctive characteristics of the types and methods of construction in Mount Vernon. The district matured during the railroad era, and its appearance reflected the availability of manufactured building materials brought in by train. These exotic elements--metal beams with Adamesque swags, heavy decorated cornices, fancy art glass windows--transformed main street and reflected the prosperity of the period. The Mount Vernon Commercial Historic District was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t103 1st St. NW<br />Mount Vernon, IA 52314<br />Linn County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.mvhpc.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-historic-landmarks.png",
            "title": "Col. William Peters Hepburn House",
            "lat": "40.741760",
            "lon": "-95.041757",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-nhl-colwilliampetershepburnhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-historic-landmarks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Col. William Peters Hepburn House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.741760,-95.041757\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The William P. Hepburn House was built in 1867. It was the home of Col. William P. Hepburn, an officer during the American Civil War. Later, he was elected to U.S. Congress, where he introduced the Hepburn Act of 1906. This act gave the Federal government the power to set railroad rates and regulated private industry. The William P. Hepburn House was added to the National Register of Historic Places in 1973.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t321 W Lincoln St.<br />Clarinda, IA 51632<br />Page County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Mills County",
            "lat": "41.016765",
            "lon": "-95.403864",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Mills County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.016765,-95.403864\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mills County Freedom Rock® is in Emerson, a town with a population just over 400 that has lost two native sons in combat in Afghanistan. Both are memorialized on the local rock. In November 2004, Iowa National Guard Specialist James Kearney III became the first Iowan to die in the War in Afghanistan when his convoy was hit with rocket-propelled grenades. Then on June 27, 2012, Army Sergeant James “Jamie” Skalberg Jr. was killed in action when an improvised explosive device struck his vehicle. Different eras and branches of the military are honored on the back of the rock, which includes a Union soldier, a World War II soldier, an Iraq/Afghanistan soldier, a ship and a jet. The Mills County (Emerson) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMorton Ave. and King St.<br />Emerson, IA 51533<br />Mills County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Johnson Barn",
            "lat": "42.983760",
            "lon": "-95.486235",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/obrien-barn-johnsonbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Johnson Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.983760,-95.486235\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dairy farmer John Adams had this barn built about 1920. The barn has a footprint of over 2,000 square feet. It’s twin cupolas and horse weathervanes are original. When the barn was built, arched rafters were hoisted in place using pulleys and horses. Because of this construction, the loft did not need support poles. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4594 Vine Ave.<br />Sutherland, IA 51058<br />O&#039;Brien County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Red Barn Model Railroad Museum",
            "lat": "42.596057",
            "lon": "-91.532163",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Red Barn Model Railroad Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.596057,-91.532163\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Red Barn Model Railroad Museum is a museum dedicated to model train sets. The museum has operating displays of Lionel, American Flyer and Marx toy trains, some of which date back to the early 1900s. There are also full sized railroad items that can be seen.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1388 132nd St.<br />Dundee, IA 52038<br />Delaware County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Glenn Miller Birthplace Museum",
            "lat": "40.733809",
            "lon": "-95.038159",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-historymuseum-glennmillerbirthplacemuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Glenn Miller Birthplace Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.733809,-95.038159\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Big Band musician Glenn Miller was born in Clarinda on March 1, 1904. The Glenn Miller Birthplace Museum is dedicated to his life. Miller was playing trombone by 1916 and joined the war effort in 1942, at the peak of his civilian career. On December 15, 1944, he was to fly from the United Kingdom to Paris, France, to play for soldiers. His plane disappeared over the English Channel and no trace was ever found. The museum is located next to the Glenn Miller Birthplace Home. The museum features exhibits and artifacts, music archives, a theatre, library, gift shop and the Glenn Miller Birthplace Society office.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t122 W Clark St.<br />Clarinda, IA 51632<br />Page County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.542.2461</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://glennmiller.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Nishnabotna River Bridge",
            "lat": "41.088976",
            "lon": "-95.480369",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mills-nhr-nishnabotnariverbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nishnabotna River Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.088976,-95.480369\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">115mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Nishnabotna River Bridge was designed by engineers for the Iowa State Highway Commission in the summer of 1929. The bridge&#039;s skewed orientation and long span required the commission to produce a special design for the trusses. Each of the trusses is configured as a Warren pony with polygonal upper chords. The sloped upper chords of the bridge are an anomoly, an attempt by the commission to develop a more materially conservant structural type for long-span ponies. Today, the Nishnabotna River Bridge is the only remaining (and historically may have been the only) example of this uncommon structural type in the state. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Hwy. M16<br />Over Nishnabotna River<br />Henderson, IA 51541<br />Mills County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Mill Race Bridge",
            "lat": "43.077266",
            "lon": "-91.889069",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mill Race Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.077266,-91.889069\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">115.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mill Race Bridge is a single-span truss across the Turkey River. It was likely fabricated by the Chicago Bridge and Iron Company in 1890. It is immediately west of the current bridge. It stands as an example of an uncommon 19th century truss type bridge. The bridge was added to the national Register of Historic Places on June 25, 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tPheasant Rd.<br />Saint Lucas, IA 52166<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Nodaway Valley Historical Museum",
            "lat": "40.721549",
            "lon": "-95.037302",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-historymuseum-nodawayvalleyhistoricalmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nodaway Valley Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.721549,-95.037302\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">115.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Nodaway Valley Historical Museum is dedicated to the varied history of the Nodaway Valley area. The museum includes exhibits on the history of 3-H and 4-H, the orphan train, WWII POW Camp Clarinda, military history, railroads, hotels, the Mental Health Institute and Clarinda Treatment Center, and Native American artifacts. The Goldenrod School, where Jessie Field Shambaugh was teaching when she began a program of basic farming and homemaking, is at the museum. Shambaugh&#039;s program eventually became 4-H. She left Page County, but returned in 1906 to work as superintendent of schools. During her tenure, Page County was acclaimed for having &quot;the best rural schools in America&quot; by the National Educational Bulletin. The Goldenrod School was moved to the museum from Fremont Township and added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1600 S 16th St.<br />Clarinda, IA 51632<br />Page County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.542.3073</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://nodawayvalleymuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Page County",
            "lat": "40.721264",
            "lon": "-95.037648",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-monument-clarindafreedomrock-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Page County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.721264,-95.037648\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">115.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Page County Freedom Rock® in Clarinda features Glenn Miller, a Clarinda native who was a best-selling big band musician. At the peak of his musical career, Miller joined the war effort and went missing over the English Channel in December 1944. It also shows the &quot;Page, Banner County of Iowa County&quot; flag, awarded to the county for having more men serve in the Civil War per capita than any other county in Iowa. The Page County (Clarinda) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1600 S 16th St.<br />Nodaway Valley Historical Museum<br />Clarinda, IA 51632<br />Page County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Torrance House",
            "lat": "41.895685",
            "lon": "-91.396773",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Torrance House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.895685,-91.396773\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">115.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Torrance House is a significant example of a settlement era residence, which incorporates both vernacular and classical design features into its plan. A “home stone” set into the gable peak of the house gives the building date and the inscription “C. and M. Torrance.” At the time of Torrance’s death he owned 600 acres, farmed and raised stock. His widow continued to occupy the homestead until her death. The Torrance House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t489 Standing Rock Rd.<br />Mount Vernon, IA 52314<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Troy Academy",
            "lat": "40.746630",
            "lon": "-92.200897",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Troy Academy</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.746630,-92.200897\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">115.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Troy Academy was built in 1853 and attracted students from across the county. Its widespread influence led to the organization of the Southern Iowa Normal School in Bloomfield. The wood-sided building was completed in 1854 and tuition rates for the first students were $2.50 for the school year. The building has been restored to its original style. The Troy Academy was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t20610 Wheat Ave.<br />Troy, IA 52551<br />Davis County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lincoln Elementary School",
            "lat": "42.477636",
            "lon": "-91.462522",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lincoln Elementary School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.477636,-91.462522\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">115.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lincoln Elementary School was built in 1916 and is an excellent example of the Prairie style of architecture. It was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 Lincoln St.<br />Manchester, IA 52057<br />Delaware County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "St. Anthony of Padua Chapel",
            "lat": "43.099612",
            "lon": "-91.893623",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Anthony of Padua Chapel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.099612,-91.893623\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">115.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The St. Anthony of Padua Chapel, also commonly called the &quot;world&#039;s smallest church&quot; was built in 1885 and dedicated in 1886. The chapel measures 14 foot by 20 foot with a 40 foot high belfry and seating for eight people. The chapel was constructed by nearby landowners from stone that was quarried at Snake Hollow. Joseph Spielman donated $20 toward a bell and Johann Gaertner donated $75 for the wood used. Frank Joseph Huber and his wife, Mary Ann, paid the balance. A small cemetery stands adjacent to the chapel. In addition, on this site in 1849, the first Catholic Mission north of Dubuque was founded and housed in a log structure.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1120 Little Church Rd.<br />Festina, IA 52144<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.532.9366</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Grant Wood&#039;s Fall Plowing Rural Historic Landscape District",
            "lat": "42.117560",
            "lon": "-91.384698",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grant Wood&#039;s Fall Plowing Rural Historic Landscape District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.117560,-91.384698\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Landscape District is significant at the local and state levels for its association with the life and landscape paintings of Grant Wood, a nationally-renowned American Regionalist artist. The Grant Wood &quot;Fall Plowing&quot; Rural Historic Landscape District was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWeber Ln.<br />Landscape District<br />Viola, IA 52402<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Matsell Bridge No. 222050",
            "lat": "42.130554",
            "lon": "-91.383194",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Matsell Bridge No. 222050</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.130554,-91.383194\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Matsell Bridge #222050 was built in 1939 by the Illinois Steel Bridge Company. The 141 ft. plate girder bridge crosses the Wapsipinicon River on Matsell Park Road near Anamosa. The Matsell Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMatsell Park Rd.<br />Springville, IA 52336<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Fort Atkinson State Preserve",
            "lat": "43.145094",
            "lon": "-91.939737",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-historymuseum-fortatkinsonstatepreserve.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fort Atkinson State Preserve</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.145094,-91.939737\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Fort Atkinson, like most of the army posts in the upper Mississippi Valley, was not the place of important decisions, glorious victories or ignoble defeats. This simple fort was built from 1840-1842. The army troop’s purpose was to keep Winnebago Indians on neutral ground after they were moved from Wisconsin, and to protect them from other tribes and white intruders on Indian land. The fort included 24 buildings and a stockade wall. Outside the 11-foot, 9-inch wall were 14 additional buildings. With the removal of the Winnebago Tribe from Iowa, the fort was no longer needed, and the last company of infantry marched out on February 14, 1849. The Museum is open by appointment only and during the &quot;Rendezvous Tradition.&quot; If you&#039;re unable to visit in person, listen to the Iowa Department of Natural Resources&#039; Interpretive Audio Tour on the website.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t303 2nd St. NW<br />Fort Atkinson, IA 52144<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.425.4161</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=4andidAdminBoundary=229\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Lisbon History Center",
            "lat": "41.921455",
            "lon": "-91.385345",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lisbon History Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.921455,-91.385345\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lisbon History Center, in downtown Lisbon and on the original Lincoln Highway, was established in 1990. The center boasts a research library with taped interviews, scrapbooks and family history books, in addition to a museum. The museum features exhibits covering the Lincoln Highway and Lisbon Community Schools, as well as a military display and an antique kitchenware.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 E Main St.<br />Lisbon, IA 52253<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.455.2714</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://lisbonhistorycenter.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Castle Theater",
            "lat": "42.484173",
            "lon": "-91.457227",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Castle Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.484173,-91.457227\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Castle Theatre was built in 1895 as a drugstore. The building was remodeled into a movie theater in 1935. In 2009, the theater was set to close - but a group of concerned citizens rallied to establish the Friends of Castle Theatre as a non-profit organization. The group made necessary repairs and improvements to the lobby, concession area and auditorium prior to a grand re-opening in November 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t112 E Main St.<br />Manchester, IA 52057<br />Delaware County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Lisbon Opera House",
            "lat": "41.921549",
            "lon": "-91.386482",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lisbon Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.921549,-91.386482\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lisbon Opera House was built in 1892. The building served as an opera, vaudeville, and movie house on the 1st and 2nd floors, while being an IOOF hall on the 3rd floor. In 1918, the IOOF left the 3rd floor, and it was purchased by the American Legion. The opera house remained open until 1940, when it was sold and converted into a manufacturing plant for Luster Sheen products. The Masonic Lodge then purchased the top floor in 1951, and used it as a meeting hall.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t122 W Main St.<br />Lisbon, IA 52253<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Clay County",
            "lat": "43.162333",
            "lon": "-95.328481",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Clay County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.162333,-95.328481\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clay County Freedom Rock® honors all who have served and the families who sacrifice as their loved ones are serving. The south side of the rock depicts Clay County&#039;s own Merlyn Dethlefsen, Air Force Medal of Honor recipient for actions in the Vietnam War. Major Dethlefsen was flying an F-105 in Vietnam and engaged in a fire suppression mission to take out enemy encampments in advance of a bomber mission. When Dethlefsen&#039;s aircraft was severely damaged, he should have returned to base, but he knew the bombers would be sitting ducks if the mission wasn&#039;t successful. Ignoring intense enemy firepower, Dethlefsen flew repeated close range strikes through a hail of anti-aircraft fire and MIG counterattacks, eventually rendering the enemy&#039;s defense ineffective and saving the mission. The north side memorializes Howard Roberts, an Everly native. Roberts was a Navy man aboard the USS Asheville, a small gun boat, in the Pacific Ocean shortly after Pearl Harbor. For quite a while, Roberts’ family back home thought he was missing in action – but the fate of the Asheville was not good. The boat had engine trouble and fell behind the rest of the fleet. The Asheville was discovered by a Japanese scout plane and sunk by two Japanese destroyers. The Japanese asked if there was an officer among the swimmers and took one aboard and left the rest to die. The officer eventually died in a prison camp, but not before telling the story of the fate of the Asheville. The Asheville was one of the few American surface ships lost with no known survivors at the end of the war. The Clay County (Everly) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Ocheyedan St.<br />Everly, IA 51338<br />Clay County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Delaware County Courthouse",
            "lat": "42.483541",
            "lon": "-91.454955",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Delaware County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.483541,-91.454955\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Delaware County Courthouse was built in 1894. Manchester was named the county seat in 1880, and the courthouse represents the political power and prestige the town has gained from being the focus of county government. It was added to the National Register of Historic Places in 1881.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310 E Main St.<br />Manchester, IA 52057<br />Delaware County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "J. J. Hoag House",
            "lat": "42.487851",
            "lon": "-91.456662",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J. J. Hoag House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.487851,-91.456662\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The J.J. Hoag House, also known as Wheat House, is a well-preserved example of mid-century Italianate residential architecture. The house is a large rectangular frame structure with a hipped roof crowned by a central belvedere. The exterior of the house also features impressive ornate millwork. It was built it 1864 and has been listed on the National Register of Historic Places since 1976.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t120 E Union St.<br />Manchester, IA 52057<br />Delaware County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Harrison Stuckslager House",
            "lat": "41.923754",
            "lon": "-91.384463",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Harrison Stuckslager House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.923754,-91.384463\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Stucklager house is a well-kept example of the 19th century vernacular Italianate style architectural form found throughout Iowa. The house displays many elements common to the form: wide bracketed eaves, decorative window hoods, projecting bays, and elaborate porches. The house was built in 1876 for Harrison Stucklager a prominent businessman in the Lisbon-Mt. Vernon area. This house was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t307 N Jackson St.<br />Lisbon, IA 52253<br />Linn County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Eldorado Bridge",
            "lat": "43.054006",
            "lon": "-91.834625",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Eldorado Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.054006,-91.834625\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Known locally as the Eldorado Bridge, the structure consists of a single pin-connected Camelback through truss, supported by stone abutments. The Eldorado Bridge was constructed by contractor J.G. Ratcliff of Waukon under contract with the Fayette County Board of Supervisors. Completed in March 1899, it has functioned in place since, in essentially unaltered condition. The Eldorado Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tState St.<br />Eldorado, IA 52175<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Sutliff Bridge",
            "lat": "41.839572",
            "lon": "-91.392971",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sutliff Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.839572,-91.392971\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sutliff Bridge spans the Cedar River in the small town of Sutliff, named after long-time resident Allen C. Sutliff. Dry crossings of the Cedar River at this location date to the establishment of Allan Sutliff&#039;s ferry service in 1838. Sandbars eventually formed in the river rendering the ferry inoperative and forcing travelers to make a long detour. Therefore, area residents petitioned county supervisors for a permanent bridge at the site of the old ferry crossing. The county awarded a contract to J.R. Sheeley and Company of Des Moines on January 8, 1897, at a cost of $12,000 and it was completed in April 1897. Thousands turned out to celebrate the completion at opening day ceremonies and a picnic in June. In 1984 residents purchased the bridge from the county and today, it serves as a pedestrian bridge in connection with the adjacent public park. It is an outstanding example of an uncommon early wagon truss design.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWhite Oak Ave. NE<br />Lisbon, IA 52253<br />Johnson County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.sutliffbridge.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Indian Creek Historical Society and Museum",
            "lat": "41.027688",
            "lon": "-95.461419",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mills-historymuseum-indiancreekhistoricalsocietymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Indian Creek Historical Society and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.027688,-95.461419\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Indian Creek Historical Museum is dedicated to preserving and exhibiting artifacts and structures used by southwest Iowa farming families from 1800 through 1940. The museum features an extensive and interesting display on Ben Wilson antique farm equipment, Oaks School restored and fully equipped for a turn of the century school day, and a Pioneer Log Cabin.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t59256 380th St.<br />Hastings, IA 51541<br />Mills County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.824.7730</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://visitmillscounty.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Stringtown House",
            "lat": "40.730805",
            "lon": "-92.200385",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stringtown House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.730805,-92.200385\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Stringtown House is an early frame house with a saltbox profile built in 1832. It was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t32873 227th St.<br />Milton, IA 52570<br />Davis County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Wilder Memorial Museum",
            "lat": "42.684047",
            "lon": "-91.536028",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-historymuseum-wildermemorialmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wilder Memorial Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.684047,-91.536028\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wilder Memorial Museum has an extensive collection. Exhibits include military items dating to the Revolutionary War, Victorian art glass and furniture, including a collection of forty hanging lamps, and correspondence from well known individuals such as Lyndon Johnson, Will Rogers Jr., and Helen Keller. There is also a collection of Meissen and Dresden porcelain and a large exhibit of Impressionist paintings by local artist Myrwyn Eaton.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t123 W Mission St.<br />IA Hwy. 3<br />Strawberry Point, IA 52076<br />Clayton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.933.4615</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://wildermuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Fort Atkinson Bridge",
            "lat": "43.153248",
            "lon": "-91.928482",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-bridge-fortatkinsonbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fort Atkinson Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.153248,-91.928482\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fort Atkinson Bridge was built in 1892 by D. H. Young of Manchester, Iowa. The bridge was one of many medium-span Pratt truss style bridges built during this time period in Iowa and one of the few well-preserved rural crossings remaining. The steel struss is supported by timber and concrete and has a unique decorative cresting on its portals. It was added to the National Register of Historic Places on May 15, 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2667 150th St.<br />Fort Atkinson, IA 52144<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Old Harrison County Courthouse",
            "lat": "41.694089",
            "lon": "-95.871346",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-nhr-oldharrisoncountycourthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Harrison County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.694089,-95.871346\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Magnolia was chosen as the first county seat of Harrison County, because it was nearest to the geographical center of the county. This courthouse was the third building to serve as the center of county government. It was completed in 1873, replacing a previous building that had been deemed unsafe. Built at a cost of $5,000.00, the Old Harrison County Courthouse was sold to the Methodist Episcopal Church when the county seat moved to Logan in 1876. The building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t811 Main St.<br />Magnolia, IA 51550<br />Harrison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Franklin Hotel",
            "lat": "42.683574",
            "lon": "-91.534101",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-franklinhotel.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Franklin Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.683574,-91.534101\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Franklin Hotel opened in a gala ceremony on February 12, 1903. The hotel served as a major hostelry for both railroad and highway travelers and still serves in that role today. The colonial atmosphere is reminiscent of a period of American history that befits its stately, pioneer character, reminding patrons of its glorious past. It was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 Elkader St.<br />Strawberry Point, IA 52076<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Grand Meadow Heritage Center and Museum",
            "lat": "42.603869",
            "lon": "-95.800844",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand Meadow Heritage Center and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.603869,-95.800844\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">117.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grand Meadow Heritage Center was founded in 1975. The museum has a focus on the rural way of life and farming as it was in the past. The museum is in an old elementary/high school building that was built in 1921. They provide exhibits and interactive learning displays about various aspects of rural farm life.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6306 D Ave.<br />Washta, IA 51061<br />Cherokee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.447.6164</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Martelle Public Library and History Museum",
            "lat": "42.020385",
            "lon": "-91.358671",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Martelle Public Library and History Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.020385,-91.358671\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">117.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Martelle Public Library and History Museum is a dedicated to giving the residents of Martelle free service to delve into books and research materials. They have an extensive collection of research and leisure materials.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t202 South St.<br />Martelle, IA 52305<br />Jones County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.482.4121</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ingemann Danish Evangelical Lutheran Church and Cemetery",
            "lat": "41.938581",
            "lon": "-95.926851",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monona-nhr-ingemanndanishevangelicallutheranchurchcemetery.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ingemann Danish Evangelical Lutheran Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.938581,-95.926851\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">117.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ingemann Danish Evangelical Lutheran Church and Cemetery is locally significant for its historical significance of the rural church in the religious life of the Danish immigrant community in the vicinity of the town of Moorhead in Monona County and in its representation of the split in the Danish Lutheran Church in 1894. It is also considered historically significant for the fact that this church represents an example of the Grundtvigian Congregation retaining the historic church building after the split and the Inner Mission members leaving to build a new church elsewhere in the neighborhood. It was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t32044 Cty. Rd. E54<br />Moorhead, IA 51558<br />Monona County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John A. Green Estate",
            "lat": "42.116105",
            "lon": "-91.358306",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-nhr-johngreenestate.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John A. Green Estate</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.116105,-91.358306\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">117.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John A. Green Estate at Stone City includes eight buildings and structures, all built of the limestone which came from Green’s own Champion Quarries at Stone City. The mansion was built in 1882, gutted by fire in 1963 and torn down in the 1990s. Green’s estate was a typical display of the Gilded Age self-made man. As concrete and cement became preferable building materials over limestone, the Greens were forced to close all the quarries and sell the estate. The Green Estate was where artist Grant Wood&#039;s Stone City Art Colony gathered the summers of 1932 and 1933. The John A. Green Estate was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. X28<br />Stone City, IA 52205<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Saint Joseph&#039;s Roman Catholic Church",
            "lat": "42.113819",
            "lon": "-91.354974",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-nhr-saintjosephromancatholicchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Saint Joseph&#039;s Roman Catholic Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.113819,-91.354974\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">117.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Joseph&#039;s Roman Catholic Church calls attention to its Dubuque-based architect, Guido Beck and his contributions to Catholic Church construction in the Archdiocese of Dubuque at the turn of the 20th century. Beck designed at least five churches in the area. St. Joseph&#039;s is notable for its architectural design, influenced by Late Gothic Revival styling. Grant Wood used the monumental massing of this church as a visual anchor in his celebrated picture &quot;Stone City,&quot; painted in 1930. The Saint Joseph&#039;s Roman Catholic Church was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t12472 Co. Rd. X28<br />Stone City, IA 52205<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Harrison County Historical Village and Welcome Center",
            "lat": "41.583635",
            "lon": "-95.847106",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-historymuseum-harrisoncountyhistoricalvillage.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Harrison County Historical Village and Welcome Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583635,-95.847106\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">117.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Harrison County Historical Village and Visitors Center is a collection of historical buildings that provide an interactive and fun way to experience history. This museum complex is straight out of the 1800s, with an original log cabin, general store and school. You&#039;ll also see a rare and well-preserved marker for the historic Lincoln Highway. Also passing through the historical village is the Western Skies Scenic Byway that stretches 142 miles and runs parallel to Interstate 80.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2931 Monroe Ave.<br />Missouri Valley, IA 51555<br />Harrison County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.642.2114</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://harrisoncountyparks.org/welcome\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Stone City Historic District",
            "lat": "42.113173",
            "lon": "-91.350540",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-nhr-stonecityhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stone City Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.113173,-91.350540\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">117.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Stone City Historic District is nestled in a narrow section of the Wapsipinicon River valley. With an abundance of locally available, high-quality dolomite limestone, three men started quarries around the town. Henry Dearborn, John A. Green and John Rohnen, operated quarries in town and built their estates overlooking the town. In the valley, on both sides of the river, there was once a school, a commercial building (still standing), a railroad depot and two hotels. Locally quarried limestone was used for construction of most of the buildings in town. The Stone City Historic District was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tStone City Rd.<br />Stone City, IA 52205<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jones Creek Watershed Historic District",
            "lat": "41.878310",
            "lon": "-95.927302",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monona-nhr-jonescreekwatershedhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jones Creek Watershed Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.878310,-95.927302\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">117.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jones Creek Watershed, two miles north of Pisgah, is one of the earliest watershed protection projects undertaken in the nation. Because of the topography of the Loess Hills, soil erosion was a problem in the region. Every year, upland farmers watched their farm productivity drop and bottomland farmers spent thousands of dollars to clear hillside topsoil from their ditches. \r\n\r\nYoung men were available to work to solve the erosion problem through the Civilian Conservation Corps (CCC) a public relief program to make work for unemployed, unmarried men ages 18-25 during the New Deal, from 1933-1942. Men in the CCC worked on conservation projects and lived in camps set up across the nation. There was a CCC camp at Preparation Canyon State Park, adjacent to the Jones Creek Watershed. The watershed project may have begun from a need to keep CCC men busy after the work at Preparation Canyon was complete.\r\n\r\nBetween 1937/8 and 1942, CCC men built eight gully control dams and created one reservoir on Jones Creek, a small tributary of the Soldier River.  Five of the dams were concrete flumes near the center of earthen berms, while three were earthen berms built with sod spillways. CCC men did most of this work by hand, moving earth with shovels and wheelbarrows. They did have small caterpillar tractors for heavy work. To create five concrete flumes and the detention dam outlet, they poured about 350 tons of concrete mixed on-site in batch mixers. Several of the original structures and landform modifications survive and remain functional.\r\n\r\nNotably, the project is named Jones Creek Watershed for Wallace Jones, on whose farm the detention dam was built. CCC camp superintendent, Ray Jones, who also played an important role in getting the project started, was Wallace’s son.\r\n\r\nThe Jones Creek Watershed National Historic District was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCounty Hwy E60<br />Loess Hills National Forest<br />Moorhead, IA 51558<br />Monona County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Pioneer Theater",
            "lat": "43.324105",
            "lon": "-95.150154",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-theater-pioneertheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pioneer Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.324105,-95.150154\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">117.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pioneer Theater was built in 1920. The theater features a 1950s marquee and is located in the Okoboji commercial district. The original building still stands today, and the theater remains operational.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t905 Okoboji Ave.<br />Milford, IA 51351<br />Dickinson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Inkpaduta&#039;s Campsite Historic Marker",
            "lat": "42.254944",
            "lon": "-95.925121",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-historicmarker-inkpadutacampsite.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Inkpaduta&#039;s Campsite Historic Marker</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.254944,-95.925121\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118mi.</span></div>\n\t\t</div>\n\n\t\t<p>During the harsh winter of 1856-1857, Inkpaduta and his outcast band of renegade Sioux Indians camped near the Little Sioux River on the Elijah Adams farm. Relations between the Indians and whites disintegrated, and following a dispute over allegedly stolen corn, the settlers drove the Indians out of the area in February 1857. The band headed north up the Little Sioux Valley to Spirit Lake, where less than one month later occurred the Spirit Lake Massacre.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310th St.<br />Oto, IA 51044<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wenzil Taylor Building",
            "lat": "43.201159",
            "lon": "-91.951261",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-nhr-wenziltaylorbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wenzil Taylor Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.201159,-91.951261\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wenzil Taylor Building is the sole surviving commercial structure at the south end of the main street in Spillville. The structure was built about 1871 and Mr. Taylor, and later A. A. Novak, operated a general store at the location until 1908. After 1908 the building served many purposes including, a tavern, harness shop, tinsmith shop and post office. The building was executed in a “brick mason&#039;s vernacular Victorian Italianate” style, and is one of four similar commercial structures in Spillville. It was added to the National Register of Historic Places on March 21, 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t331 S Main St.<br />Spillville, IA 52132<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "St. Wenceslaus School",
            "lat": "43.204804",
            "lon": "-91.954760",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-historicschool-stwenceslausschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Wenceslaus School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.204804,-91.954760\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The St. Wencelaus School, built in 1870, is the oldest surviving Czech parochial school in the United States. For more than 75 years, the school served as a home for teaching nuns serving the parish and later was used as a boarding house for rural students, a place of worship and community hall. The school is the home of Antonin Dvorak&#039;s Opus 96: &quot;Quartet in F Major&quot; and Opus 97: &quot;Quintet in E Flat Major&quot;.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t208 Church St.<br />Spillville, IA 52132<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Bily Clocks Museum and Antonin Dvorak Exhibit",
            "lat": "43.201925",
            "lon": "-91.951219",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-historymuseum-bilyclocks.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bily Clocks Museum and Antonin Dvorak Exhibit</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.201925,-91.951219\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Bachelor brothers Frank and Joseph Bily carved many intricate clocks during their lifetimes. The clocks depict history, art, religion and culture and are covered with hundreds of expertly carved figures, some standing more than nine feet tall. Also, visitors will find an exhibit memorializing Czech composer Antonin Dvorak. Dvorak and his family spent the summer of 1893 living on the second floor of the building.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t323 S Main St.<br />Spillville, IA 52132<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.562.3569</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://bilyclocks.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "St. Wenceslaus Catholic Church and Cemetery",
            "lat": "43.205868",
            "lon": "-91.953924",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-historicsite-stwenceslauscatholicchurchandcemetery-20b-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Wenceslaus Catholic Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.205868,-91.953924\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Wenceslaus Catholic Church was built in 1860 and is the oldest surviving Czech Catholic Church in the United States. The bell tower was added in 1869 and the sanctuary and transept were completed in 1873. An original pipe organ installed in 1876 still remains in the church.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t207 Church St.<br />Spillville, IA 52132<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-ballrooms.png",
            "title": "Inwood Ballroom",
            "lat": "43.199176",
            "lon": "-91.946592",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-historicballroom-inwoodballroom.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-ballrooms.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Inwood Ballroom</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.199176,-91.946592\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Beginning in 1920, local and regional bands began playing at the newly constructed pavilion in Spillville&#039;s Riverside Park. From the 1930s through the 1950s, renovations and expansion efforts were undertaken and national acts started playing at the Inwood. Lawrence Welk, Louis Armstrong, Earl Hines, the Six Fat Dutchmen, Leo Greco, Guy Lombardo and others all performed to sell out crowds. The first &quot;Teen Dance&quot; was held on May 27, 1960. Teen hops flourished, masterminded by Darrell Winkie and his famous &quot;Wink-I Pepsi Parties.&quot; Winkie and his portable deejay service supplied the music for those early rock and roll shows. Live rock shows began in 1965 with the performance by the legendary Byrds who had the number one hit that summer, &quot;Mr. Tambourine Man.&quot; For the next 10 years a who&#039;s who of rock and roll bands came from throughout the country to perform at the Inwood. National acts appearing included Bobby Goldsboro, The Stillroven, Dee Jay and the Runaways, the Pete Klint Quintet, The Buckinghams, the Fabulous Flippers, The I.BT.C., Enoch Somkey and ShowTime Parts 1 and 2. Although many ballrooms have fallen by the wayside, the Inwood Ballroom is still operating today as the quintessential site for wedding dances, polka parties and special musical events. (Source: Iowa Ballroom Project)</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t116 Bridge St.<br />Riverside Park<br />Spillville, IA 52132<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Oak Grove School",
            "lat": "40.815330",
            "lon": "-92.025729",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oak Grove School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.815330,-92.025729\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The first classes in the Oak Grove School were held in 1874. An addition was built in 1909 and the school continued to serve the community for another 50 years. The schoolhouse is now used for a variety of community functions and is open to visitors for special events or by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t15818 Iowa Oak Grove Ave.<br />Douds, IA 52551<br />Van Buren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.293.3066</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Sailors and Soldiers Memorial Bandstand",
            "lat": "43.205173",
            "lon": "-91.951127",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-memorial-sailorsandsoldiersmemorialbandstand.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sailors and Soldiers Memorial Bandstand</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.205173,-91.951127\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>A group called the Civic Improvement Association formed in Spillville in 1919. Members aimed to develop a public square in the community as a memorial to those who advanced the causes of liberty and equality by fighting in World War I. The Soldiers and Sailors Memorial Bandstand was built on a primitive roundabout and dedicated on July 4, 1921. Since it was constructed, additional brass plaques have been added to commemorate local residents who have served in subsequent wars. In 2016, the Spillville American Legion and American Legion Auxiliary undertook a project to renovate the bandstand and make it more accessible.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t126 N Main St.<br />Spillville, IA 52132<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Loess Hills Scenic Overlook",
            "lat": "41.905277",
            "lon": "-95.945726",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monona-uniqueiowa-loesshillscenicoverlook.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Loess Hills Scenic Overlook</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.905277,-95.945726\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Enjoy one of the best views of the Loess Hills from this forest overlook nicknamed &quot;The Spot&quot; by Walter Ordway Jr. An Iowa native, Ordway was an accomplished artist and organic farmer, who for years traveled the world before returning to Iowa. He was instrumental in developing the Loess Hills Scenic Byway which was awarded National Scenic Byways status in 2000. The Loess Hills are a unique land form created 14,000 years ago by strong winds that deposited silt from the Missouri River Valley flood plain into clouds of dust, depositing them into rugged bluffs.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tOak Ave.<br />Moorhead, IA 51558<br />Monona County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "New Sweden Chapel and Cemetery",
            "lat": "41.024151",
            "lon": "-91.779897",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">New Sweden Chapel and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.024151,-91.779897\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The New Sweden Church is the oldest parent church of this synod. Built in 1848, it is also the first church of the First Settlement of Swedes Church in Iowa and the first one west of the Mississippi river. The New Sweden Chapel was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3099 195th St.<br />Lockridge, IA 52635<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Old Stone School",
            "lat": "42.797347",
            "lon": "-91.564542",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Stone School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.797347,-91.564542\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old Stone School at Volga was built in 1868 and used as a school until 1943. Between 2001 and 2004, it was restored and, although there have been additions to the building, the original stone school structure is still intact. It is now used for commerical purposes.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t12077 Bell Rd.<br />Volga, IA 52077<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bay Settlement Church",
            "lat": "42.390927",
            "lon": "-91.377399",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bay Settlement Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.390927,-91.377399\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bay Settlement Church, Cemetery, and Monument sit on four acres in rural Delhi. The church was built in 1873 and is made of white painted clapboard with a foundation of cut limestone. It was added to the National Register of Historic Places in 1977.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2133 275th St.<br />Delhi, IA 52223<br />Delaware County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Mann No. 2 School",
            "lat": "41.929923",
            "lon": "-95.953379",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monona-nhr-mannschool.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mann No. 2 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.929923,-95.953379\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mann School is locally significant for its role in education, social history, and architecture. It was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tOak Ave.<br />Moorhead, IA 51558<br />Monona County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Old Stone Church",
            "lat": "43.284847",
            "lon": "-92.051909",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-historicsite-oldstonechurch.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Stone Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.284847,-92.051909\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>St John&#039;s Lutheran Church, also known as the Old Stone Church was constructed in 1873. It was found by the Reverend Karl Freidrich Jungck a German immigrant. It was built by local stonemason Peter Reis. The church celebrated it&#039;s 150 year anniversary on August 1 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3300 240th St.<br />Ridgeway, IA 52165<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Dover No. 6 School",
            "lat": "43.037453",
            "lon": "-91.754463",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dover No. 6 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.037453,-91.754463\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dover No. 6 school is a traditional one room Iowa schoolhouse. It features wood desks, slate writing plates, and an antique playground outside. The 19th century schoolhouse provides a look back into the foundation of our state&#039;s education.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t28000 Ironwood Rd<br />West Union, IA 52175<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Superior 71 Drive-In",
            "lat": "43.432132",
            "lon": "-94.992485",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-theater-superior71drivein.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Superior 71 Drive-In</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.432132,-94.992485\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Superior 71 Drive-In is one of the few remaining drive-in theaters in Iowa. The theater features one large screen and a large parking area for &quot;seating.&quot; The theater plays two movies a night, and is a great way to experience a movie in a rare format.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1482 300th Ave.<br />Spirit Lake, IA 51360<br />Dickinson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Clark Museum of Area History and Antique Acres",
            "lat": "43.335522",
            "lon": "-95.165764",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clark Museum of Area History and Antique Acres</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.335522,-95.165764\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">119mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clark Museum of Area History and Antique Acres is the largest collection of historical artifacts in the Iowa Great Lakes area. The museum has pictures, newspapers, business advertisements, and much more. History buffs be prepared to spend hours viewing the many unique items, pictures, and stories in the Museum&#039;s multiple buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2151 213th Ave.<br />Milford, IA 51351<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.338.2147</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-hotels.png",
            "title": "Iowan&#039;s Hotel",
            "lat": "40.834074",
            "lon": "-95.307288",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-nhr-iowanshotel-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-hotels.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowan&#039;s Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.834074,-95.307288\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">119.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowan&#039;s Hotel was completed on November 14, 1906 and replaced the former Lindel Hotel that stood on the same site. The hotel was located directly across the tracks from the Chicago, Burlington and Quincy depot and was one of the largest buildings constructed in Essex. In addition to hosting the traveling public, the building was used for meetings, dining, dancing and other social events. It was added to the National Register of Historic Places on Jan. 29, 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t508 Railroad St.<br />Essex, IA 51638<br />Page County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Ainsworth Opera House",
            "lat": "41.288714",
            "lon": "-91.551847",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ainsworth Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.288714,-91.551847\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">119.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Ainsworth Community Together (A.C.T.) has been improving the Ainsworth area since 1988. In 1994, A.C.T began its most ambitious project - the restoration of the Ainsworth Opera House. The Opera House was renovated to serve as a multi-purpose building for the community while retaining its historical integrity. The Ainsworth Opera House meets the county&#039;s need for a comfortable, attractive, affordable space for community events including concerts, plays, a yearly film festival, and various workshops.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t284 N Railroad St.<br />Ainsworth, IA 52201<br />Washington County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://ainsworthoperahouse.org/Home_Page.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Arnolds Park Amusement Park",
            "lat": "43.365125",
            "lon": "-95.136563",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-historicunique-arnoldsparkamuseumentpark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Arnolds Park Amusement Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.365125,-95.136563\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">119.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Arnold&#039;s Park opened in 1889 by W. B. Arnold. The Park began with one ride, but then added more including the Legend roller coaster in 1927. The park was hit by a tornado in 1968, but much of the destroyed property has been replaced, making it the oldest amusement park west of the Mississippi River.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t37 Lake St.<br />Arnolds Park, IA 51331<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.332.2183</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://arnoldspark.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Iowa Great Lakes Maritime Museum",
            "lat": "43.365637",
            "lon": "-95.135712",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-historymuseum-iowagreatlakesmaritimemuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Great Lakes Maritime Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.365637,-95.135712\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">119.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Great Lakes Maritime Museum is a collection of historical Marine equipment from Lake Okoboji. Located in Arnold&#039;s Park, the museum holds remnants of dismantled rides, marine artifacts, and a speedboat that was recovered from the bottom of Lake Okoboji.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t243 W Broadway<br />Arnolds Park, IA 51331<br />Dickinson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Okoboji Spirit Center",
            "lat": "43.365625",
            "lon": "-95.135701",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-historymuseum-okobojispiritcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Okoboji Spirit Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.365625,-95.135701\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">119.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Okoboji Spirit Center is located right on West Lake Okoboji. The Spirit Center houses an Iowa Welcome Center; Maritime Museum; Hedberg Theatre, and Okoboji Foundation Wall of Fame. It is a great place to plan your visit in Okoboji, as well as learn something about the history of the area.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t243 W Broadway St.<br />Okoboji, IA 51355<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.332.6550</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://arnoldspark.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Iowa Rock-N-Roll Music Association Museum",
            "lat": "43.365626",
            "lon": "-95.136794",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-historymuseum-iowarocknrollmusicassociationmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Rock-N-Roll Music Association Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.365626,-95.136794\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">119.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Rock &#039;N&#039; Roll Music Association Museum is a museum dedicated to Rock &#039;N&#039; Roll in the state of Iowa. The museum is ran by the Iowa Rock &#039;N&#039; Roll Music Association, or IRRMA. The IRRMA provides music education programs statewide to schools, churches and youth groups. They also host, sponsor, and promote various entertainment events and concerts throughout venues in Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t91 Lake St.<br />Arnolds Park, IA 51331<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.332.6540</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://iowarocknroll.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Iowa&#039;s Dairy Center",
            "lat": "43.163788",
            "lon": "-91.865441",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-heritagearea-iowasdairycenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa&#039;s Dairy Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.163788,-91.865441\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">119.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Iowa&#039;s Dairy Center is not only a working farm, but a tourism facility where you can learn about modern dairy farming. On your tour you will see the milking parlor, free stall barn for housing the milk cows, special needs barn for calving (you may even see a calf being born), and calf barn (pet a calf). Iowa&#039;s Dairy Museum is also located at the center.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1527 Hwy. 150 S<br />Calmar, IA 52132<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.534.9957</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadairycenter.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "featured.png",
            "title": "Abbie Gardner Sharp Cabin",
            "lat": "43.365591",
            "lon": "-95.140604",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-statehistoricsite-abbiegardnercabin.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/featured.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Abbie Gardner Sharp Cabin</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.365591,-95.140604\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">119.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Abbie Gardner Sharp Cabin State Historic Site is a cabin located near Arnolds Park. The cabin was erected in 1856 by Rowland Gardner, one of the first settlers in the Okoboji Lakes region. The Gardner Cabin was the scene of a major incident between Native Americans and white settlers in the Upper Midwest. These conflicts, later called the Spirit Lake Massacre of 1857, were witnessed by 13-year-old Abbie Gardner who was abducted from the cabin by the Dakota Indian nation. She returned to Arnolds Park in 1891 and purchased the cabin, operating it as one of Iowa&#039;s earliest tourism attractions. Due to the continued use as a home and museum the cabin has remained intact and well preserved. In addition to the cabin, the one-acre park includes a visitor&#039;s center, cemetery and monument dedicated to those killed in the massacre. The site was added to the National Register of Historic Places in 1973.</p>\t\t<p><em>A location in the collections: State Historic Sites, 99 County Tour - Iowa History Month</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t74 Monument Dr.<br />Arnolds Park, IA 51331<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.332.7248</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowahistory.org/historic-sites\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Volga Opera House",
            "lat": "42.801554",
            "lon": "-91.540837",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Volga Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.801554,-91.540837\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">119.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>According to long-time residents, the Volga Opera House served a number of functions and was the venue for live stage productions, community receptions and movies since it opened in 1913. In the 1930s, a traveling movie company would come to town and show movies about once a week with the cost of admission about 25 cents. Movies discontinued by the 1950s, when the opera house closed. The flood of 1999 caused significant damage to the interior finishes and it has remained vacant.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t609 Washington St.<br />Volga, IA 52077<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Farmers&#039; State Bank",
            "lat": "42.802959",
            "lon": "-91.541289",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-farmerssavingsbank-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Farmers&#039; State Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.802959,-91.541289\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">119.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1912, the one-story Famers&#039; State Bank building was completed during a prolonged period of growth and development from about 1890 to 1920 in Volga, a small Clayton County community once situated on the Volga Branch of the Chicago, Milwaukee &amp; St. Paul Railroad. The bank was Volga’s second financial institution and reflected the rural community’s economic strength in the early 20th century. It remained in business for the next 20 years, even weathering the post-World War I agricultural depression. The building is cited as a well-preserved example of a small, early-20th century Main Street commercial structure with a well-executed Beaux Arts-style façade that includes a large elliptical-arch window, Ionic granite columns, classical entablature and a stone garland-framed circle window. The building’s period of historic significance begins in 1912 and runs until 1931, when Farmers’ State Bank merged with the town’s other bank and became Iowa State Savings Bank, which operated for about a year in the building until it failed. In 1935, the city of Volga bought the building to house the public library and town hall. Later, from 1947 to 2015, it housed the Volga State Bank and a branch of the Central State Bank of Elkader. The Farmers&#039; State Bank was added to the National Register of Historic Places in 2018.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t502 Washington St.<br />Volga, IA 52077<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Pillsbury Point State Park &amp; Overlook",
            "lat": "43.367576",
            "lon": "-95.141564",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-botany-pillsburypointstateparkoverlook.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pillsbury Point State Park &amp; Overlook</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.367576,-95.141564\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">119.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civilian Conservation Corps (CCC) was a public relief program to make work for unemployed, unmarried man ages 18-25 during the New Deal, from 1933-1942. Men in the CCC worked in camps set up across the nation, and many of the camps were in Iowa State Parks. Many state park facilities date to the CCC. The buildings, structures, and objects reflect the effort to blend park amenities into the natural landscape in their material, design, workmanship, and immediate setting and reflect common types developed by the National Park Service for park construction. The rustic, landscaped park at the Pillsbury Point State Park Overlook was constructed by the CCC. The park is an irregularly shaped plot of land representing the northernmost portion of Pillsbury Point State Park. This park is one of the smallest and most urban, comprising of only 6 acres located within the city limits of Arnolds Park. The Pillsbury Point State Park Overlook District was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUS Hwy. 71<br />Arnolds Park, IA 51331<br />Dickinson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Boot Hill Cemetery, Iowa Men&#039;s Reformatory",
            "lat": "42.112029",
            "lon": "-91.308659",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-nhr-cemetery-boothillcemetery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Boot Hill Cemetery, Iowa Men&#039;s Reformatory</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.112029,-91.308659\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">119.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Men&#039;s Reformatory Cemetery is significant in the area of law for its potential contribution to the understanding of the orientation toward prisoners under the reformatory program at the Iowa Men&#039;s Reformatory. The 1914 reburial of prisoners in mass rather than individual graves, the stark appearance of individual stones and the cemetery itself, and the impersonalized treatment of each stone parallels the absence of individualized treatment or consideration at the reformatory. The tone of the cemetery suggests that they were not men to be vocationally retrained and socially and mentally refitted for re-entrance into society. Rather, the prisoners were undergoing punishment and supporting the operation of their institution through their hard labor. The Iowa Men&#039;s Reformatory Cemetery was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRidge Rd. E28<br />Anamosa, IA 52205<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Lower Road Bridge",
            "lat": "42.114749",
            "lon": "-91.305890",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lower Road Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.114749,-91.305890\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located northeast of Anamosa on what was known historically as the Lower Road, this two-span iron bridge spans a branch of the Wapsipinicon River. The structure is comprised of two bowstring arch-trusses, one through and one pony, supported by massive stone masonry pier and abutments. The bridge was fabricated and erected here in 1878 by the King Iron Bridge and Manufacturing Company of Cleveland. Now abandoned by the county and used to provide access to a private farm field, the Lower Bridge remains in place in essentially unaltered condition. The bowstring arch-truss was the iron span of choice for Iowa counties in the late 1860s and 1870s. Marketed exclusively throughout the Midwest by such Ohio-based industry giants as the Wrought Iron Bridge Company, the King Iron Bridge Company and the Massillon Bridge Company, these often-patented bridge configurations featured a wide range of span lengths, economical fabrication cost and relatively quick erection. The bowstring had some rather severe structural flaws, however, relating primarily to lateral stability of the arches, and it was largely superseded by the pin-connected truss in the early 1880s. The Lower Road Bridge is in excellent and was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBuffalo Rd.<br />Anamosa, IA 52205<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Rialto Theater",
            "lat": "41.556522",
            "lon": "-95.890102",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-theater-rialtotheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rialto Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.556522,-95.890102\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rialto Theater was built originally as a general store in 1901. The building was converted to a theater in 1908, and remodeled to show motion pictures in 1913. The theater would be remodeled again in 1944, and operate until it closed in 1980. The building was closed for a number of years, when it reopened in 2002 in its current state.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t405 E Erie St.<br />Missouri Valley, IA 51555<br />Harrison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Lone Tree Historical Museum",
            "lat": "41.485933",
            "lon": "-91.426145",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lone Tree Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.485933,-91.426145\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lone Tree Historical Museum features historical artifacts and social history from the late 1800s and early 1900s. The museum is located in a 3-story home, has exhibits ranging from a county kitchen, country store, and barbershop, to antiques and farm equipment on display. The exhibits are constantly rotated to keep the museum fresh and new for visitors.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t203 S Devoe St.<br />Lone Tree, IA 52755<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.356.6542</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Farm No. 1, Iowa Men&#039;s Reformatory",
            "lat": "42.109618",
            "lon": "-91.300843",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-nhr-farm1iowamensreformatory.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Farm No. 1, Iowa Men&#039;s Reformatory</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.109618,-91.300843\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Farm No. 1 of the Iowa Men&#039;s Reformatory represents the work program established by a series of legislative acts between 1900 and 1915 at the Iowa Men&#039;s Reformatory. Engaging honor or minimum security prisoners in agriculture became one way of removing these men from inside the prison walls and allowing them to lead a more normal life style. The Farm No. 1 Iowa Men&#039;s Reformatory was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. E28<br />Anamosa, IA 52205<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rick&#039;s Brewery",
            "lat": "42.113285",
            "lon": "-91.299930",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-nhr-ricksbrewery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rick&#039;s Brewery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.113285,-91.299930\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Rick’s Brewery is one of few remaining examples of early Iowan industry in the Anamosa area. Constructed prior to 1859, the stonework, with minor exceptions appears exactly as it did when the last addition was completed in 1872. Building materials came from a local quarry and sawmill, businesses that were already established by this time. Research has shown that this brewery site represents a design of German origins. Rick himself emigrated from Germany around 1847. Immigrant stone cutters and masons were responsible for the construction of the building. Rick&#039;s Brewery was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t12412 Buffalo Rd.<br />Anamosa, IA 52205<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "The Higgins Museum",
            "lat": "43.381726",
            "lon": "-95.136117",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-historymuseum-thehigginsmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Higgins Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.381726,-95.136117\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Higgins Museum opened in 1978. Their mission is the collection, preservation, and presentation of National Bank Notes. This collection has over $300,000 worth of Iowa Bank notes and is the largest permanent collection of National Bank Notes anywhere in the country.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1507 Sanborn Ave.<br />Okoboji, IA 51355<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.332.5859</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://thehigginsmuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Secrest Octagonal Barn",
            "lat": "41.613404",
            "lon": "-91.370287",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/johnson-nhr-secrestoctagonalbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Secrest Octagonal Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.613404,-91.370287\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Secrest Octagonal Barn was built in 1883 and is one of the oldest and largest round barns in the United States. The ten-acre farmstead has been well-preserved and virtually unchanged since the late 1800s.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5750 Osage St. SE<br />West Liberty, IA 52776<br />Johnson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "West Branch Heritage Center (Gruwell and Crew General Store)",
            "lat": "41.671560",
            "lon": "-91.347113",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Branch Heritage Center (Gruwell and Crew General Store)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.671560,-91.347113\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This former store is a well-preserved example of a small town commercial structure, and is currently a small museum. The small dimensions reflect the needs of the small Quaker town of West Branch in the late nineteenth century. It was constructed in 1894, and the store is one of four wood frame commercial structures in town, but it is the only one to have survived intact. It sits on a quiet commercial street filled with nineteenth and early twentieth century buildings of similar size and proportion. The store is virtually unchanged and contains many original elements. It was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t109 W Main St.<br />West Branch, IA 52358<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "West Branch Commercial Historic District",
            "lat": "41.671484",
            "lon": "-91.346635",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cedar-nhr-westbranchcommericalhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Branch Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.671484,-91.346635\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The West Branch Commercial District is a very tangible economic indicator of the greatest period of prosperity in American agricultural history. Commercial buildings within the West Branch Commercial District are illustrative of the commercial growth prompted by what has been termed the &quot;Golden Era of American Agriculture.&quot; They illustrate the economic momentum that allowed a small Midwestern farm town to experience a period of unparalleled prosperity as grain and livestock farming quickly evolved from a primitive, pioneering exercise in self-sufficiency to a highly complex business organized on a scientific, capitalist, commercial basis. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t135 W Main St.<br />West Branch, IA 52358<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Herbert Hoover National Historic Site",
            "lat": "41.669208",
            "lon": "-91.347766",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cedar-nhr-herberthoover.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Herbert Hoover National Historic Site</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.669208,-91.347766\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Herbert Hoover National Historic Site commemorates the birth and boyhood of the thirty-first president, Herbert Clark Hoover. The site shows Hoover&#039;s humble beginnings and how his Iowa values shaped his life. Hoover was orphaned at age 9, and soon moved to Oregon to live with relatives. The site illustrates American history by preserving the entire career of an important figure in 20th century history. Visitors can tour Hoover&#039;s birthplace cabin, a National Historic Landmark. At the site there is also a working blacksmith&#039;s shop, West Branch&#039;s first school, and a Quaker meeting house. Hoover and his wife Lou Henry, also an Iowa native, are both buried on site. It was added to the National Register of Historic Places in 1966.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 Parkside Dr.<br />West Branch, IA 52358<br />Cedar County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.643.5301</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.hoover.archives.gov\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Calmar Train Depot and Museum",
            "lat": "43.183850",
            "lon": "-91.864656",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-nhr-calmartraindepot.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Calmar Train Depot and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.183850,-91.864656\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Calmar Train Depot was built in 1915 by the Milwaukee Railroad and replaced the former depot and roundhouse that were destroyed by fire in 1914. At the time, Calmar was a major railroad hub of the Milwaukee Railroad between Marquette and Mason City. Trains running through Calmar included passenger trains, livestock shipments and meat shipments in refrigerated cars from the Hormel plant in Austin bound for Chicago. The Calmar Train Depot, added to the National Register of Historic Places in 2011, is also home to the Calmar Museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t202 N Maryville St.<br />Calmar, IA 52132<br />Winneshiek County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.decoraharea.com/business/calmar-train-depot.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Howard County Historical Preservation Center",
            "lat": "43.374235",
            "lon": "-92.127379",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Howard County Historical Preservation Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.374235,-92.127379\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Howard County Historical Preservation Center is a cooperative venture between the Howard County Historical Society and the Howard County Agricultural Society. The 14,250 sq. ft. center is dedicated to preserving the history of Howard County. The center is divided into four parts, two areas function as the museum, while the other two work as an education center and a multi-purpose area. The museum collection includes large agricultural, home and industrial artifacts, as well as, photographs, coins, books, clothing, and old records.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t314 W 7th St.<br />Howard County Fairgrounds<br />Cresco, IA 52136<br />Howard County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.547.3400</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://mhcfair.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Anamosa State Penitentiary Museum",
            "lat": "42.112664",
            "lon": "-91.289631",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-historymuseum-anamosapenitentiarymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Anamosa State Penitentiary Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.112664,-91.289631\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Anamosa State Penitentiary Museum showcases more than 100 years of history at Iowa&#039;s largest prison. The museum offers displays describing prison life, the role of the &quot;guard&quot; through the years, and a huge variety of photographs from the prison&#039;s early days. You can also see dioramas of quarrying and construction techniques, a full-sized replica of a cell, videos about the prison&#039;s overall history and the role of sports, and much more.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t406 N High St.<br />Anamosa, IA 52205<br />Jones County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.462.2386</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://asphistory.com/museum\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jones County Courthouse",
            "lat": "42.109161",
            "lon": "-91.289925",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-nhr-jonescountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jones County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.109161,-91.289925\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jones County Courthouse is one of ten county courthouses built in Iowa during the New Deal Era as part of the federal Public Works Administration (PWA) program&#039;s operation in the 1930s and early 1940s. It is an example of the PWA Moderne style of public building architecture developed during the 1930s and early 1940s. Its design blends Art Deco and Moderne architectural elements. The Jones County Courthouse was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t500 W Main St.<br />Anamosa, IA 52205<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Iowa Men&#039;s Reformatory Historic District (Anamosa State Penitentiary)",
            "lat": "42.111467",
            "lon": "-91.289277",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-nhr-iowamensreformatoryhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Men&#039;s Reformatory Historic District (Anamosa State Penitentiary)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.111467,-91.289277\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">120.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa Men&#039;s Reformatory Historic District was built beginning in 1873. It was built because the penitentiary at Fort Madison was overcrowded and the state needed additional quarters for prisoners. The building was modeled after the prison at Wethersfield, Connecticut. The buildings are late interpretations of a style commonly applied to prison architecture, the Romanesque Revival with some Gothic Revival influences. The historic district stands at the west edge of the City of Anamosa and is comprised of twenty-two properties. The walls of the reformatory enclose all but two of the buildings, and define much of the district&#039;s boundary. The Iowa Men&#039;s Reformatory Historic District was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t498 N High St.<br />Anamosa, IA 52205<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Watson Steam Train and Depot Museum",
            "lat": "41.556208",
            "lon": "-95.905308",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-historymuseum-watsonsteamtraindepotmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Watson Steam Train and Depot Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.556208,-95.905308\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121mi.</span></div>\n\t\t</div>\n\n\t\t<p>At the Watson Steam Train and Depot Museum, the grand old railroad days are celebrated. The complex, built in Missouri Valley’s City Park in 2009, includes the depot and a 1,700 foot long 12 gauge railroad. The railroad, which visitors can ride, has a bridge and a 50’ tunnel. There are also two train engines inside the depot – a restored steam train formerly owned by the Missouri Valley Fire Department, and a 2013 Union Pacific diesel replica.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t800 W Huron St.<br />Missouri Valley City Park<br />Missouri Valley, IA 51555<br />Harrison County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.642.2210</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Gull Point State Park",
            "lat": "43.371463",
            "lon": "-95.167755",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-nhr-gullpointstatepark.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gull Point State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.371463,-95.167755\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civilian Conservation Corps (CCC) was a public relief program to make work for unemployed, unmarried men ages 18-25 during the New Deal, from 1933-1942. Men in the CCC worked in camps set up across the nation, and many of the camps were in Iowa State Parks. Many state park facilities date to the CCC. The buildings, structures, and objects reflect the effort to blend park amenities into the natural landscape in their material, design, workmanship, and immediate setting and reflect common types developed by the National Park Service for park construction. Located along the shores of West Lake Okoboji, Gull Point State Park has rustic architecture and timber-stonework created by the CCC. Parts of Gull Point State Park were added to the National Register of Historic Places in 1990. \r\n\r\nIntramedia Artist Paula Streeter will be working at Gull Point State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1500 Harpen St.<br />Milford, IA 51351<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.337.3211</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610129\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Former Anamosa Public Library",
            "lat": "42.106615",
            "lon": "-91.285318",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-nhr-anamosapubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Former Anamosa Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.106615,-91.285318\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Anamosa Public Library, built in 1902-1903, is a side-gable-end type of small library building. The building is one of few libraries in the state that is Romanesque. The exterior is simple, restrained and extremely homogenous. Its character is set in large part by the elegant masonry work. The building is an exercise in planes that never meet in simple corners. The Anamosa Public Library was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 E 1st St.<br />Anamosa, IA 52205<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Edmund and Mary Ann Walworth Booth House",
            "lat": "42.106826",
            "lon": "-91.285349",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-nhr-edmundmaryboothhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Edmund and Mary Ann Walworth Booth House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.106826,-91.285349\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Edmund and Mary Ann Walworth Booth House was constructed by the Booths in 1870. Mr. Booth was a leader in the advocacy for the education and advancement of the deaf in Iowa. Booth and four other men founded the Iowa Association for the Deaf (IAD), in 1881, an organization by and for the deaf dedicated to their general welfare and betterment. The Booth House was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t125 S Ford St.<br />Anamosa, IA 52205<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Anamosa Main Street Historic District",
            "lat": "42.108275",
            "lon": "-91.284669",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-nhr-anamosamainstreethistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Anamosa Main Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.108275,-91.284669\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Anamosa Main Street shows the development of the city’s commercial center. The commercial center emerged from disjointed beginnings following the Civil War. Several strong local leaders, including Colonel William T. Shaw, journalist Edmund Booth, worked to create a unified business district. Today, the Anamosa Main Street has a pleasing streetscape. Settled in the mid-19th century, the influence of Italianate styling pervades the streetscape and structures reflecting this age. The architecture prominently features locally quarried and dressed limestone. The use of limestone for structural and decorative purposes, along with its warm color and pronounced veining, provides visual cohesion to these structures. The Anamosa Main Street Historic District was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t117 N Ford St.<br />Anamosa, IA 52205<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Cresco Opera House and Community Theatre",
            "lat": "43.373481",
            "lon": "-92.117120",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cresco Opera House and Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.373481,-92.117120\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cresco Opera House opened in early 1915 and was uniquely designed to accommodate both live shows and motion pictures, incorporating a stage with footlights as well as a projection booth. At the time of its construction, Vaudeville shows were still quite popular, and silent movies were on the rise, so Cresco needed a versatile performance venue. The building continues to serve the community&#039;s entertainment needs as a movie theater and as a performance venue for productions by the Cresco Community Theatre group. The theater was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 2nd Ave. W<br />Cresco, IA 52136<br />Howard County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.547.4292</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.crescotheatreoperahouse.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Elgin Historical Society Museum",
            "lat": "42.957212",
            "lon": "-91.629549",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Elgin Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.957212,-91.629549\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Elgin Historical Society Museum, located in the historic Elgin Block, has displays local history artifacts and memorabilia. In addition, the society holds research materials for genealogists including photographs, school histories, records and obituaries. The historic Elgin Block completion in 1872 marked the first substantial business block built in Elgin. It was an effort by local merchants who worked together on the large-scale project to benefit the entire community. The commercial buildings provided Elgin with its first major brick building and saved the town when the railroad located in the adjoining village of Lutra. Both towns had separate business districts until the early 20th century, but the new block helped Elgin retain commercial supremacy and eventually absorb Lutra. The Elgin Block was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t231 Center St.<br />Elgin, IA 52141<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.423.7126</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lidtke Mill Historic Site",
            "lat": "43.464351",
            "lon": "-92.278663",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lidtke Mill Historic Site</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.464351,-92.278663\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lidtke Mill Historical Site is a large campsite area located on the Upper Iowa River. The Lidtke Mill was built in 1857 and in addition to milling grains, the facility also provided hydroelectric power to surrounding communities. It was added to the National Register of Historic Places in 1977 and has been converted into a museum. The site provides the opportunity to fish and gives canoeists a starting point for their river trips. There are also camping areas provided with electricity and water.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tOld Mill Road<br />Lime Springs, IA 52155<br />Howard County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Howard County Courthouse",
            "lat": "43.373461",
            "lon": "-92.115583",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Howard County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.373461,-92.115583\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Howard County Courthouse was built from 1879 to 1880 to replace the previous courthouse after it was destroyed in a fire. The building was designed in the Italianate style by architects B.D. Everingham and J.L. Harlow. It was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t137 N Elm St.<br />Cresco, IA 52136<br />Howard County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Kellow House Museum",
            "lat": "43.376854",
            "lon": "-92.121520",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kellow House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.376854,-92.121520\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>William Kellow, Jr. was the son of a Cornish farmer and stonemason who came to Iowa in 1854. Kellow began his career as a merchant in the grocery and merchandise business at age 17. This home was built for his family in 1880, the foundation being built by his father, William Kellow, Sr. The Second Empire style home has been owned by the historical society since 1969 and is furnished in the period of the late 1800s and early 1900s, and many of the furnishings once belonged to the Kellow family. The home was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t324 4th Ave. W<br />Cresco, IA 52136<br />Howard County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Kilbourn Bridge",
            "lat": "40.800203",
            "lon": "-91.970431",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kilbourn Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.800203,-91.970431\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Before 1913, the Iowa State Highway Commission (ISHC) was not involved in all bridge projects. The commission undertook a small number of major bridge commissions as well, the largest and most noteworthy of which was the Kilbourn Bridge in Van Buren County. The Kilbourn Bridge was constructed in 1909, and is historically significant as the first large-scale engineering project undertaken by ISHC. Indicative of its transitional nature, it is also one of the only pin-connected truss designs the ISHC used prior to adopting its standard, rigid-connected truss plans in 1913. A regionally important crossing of a major river, the Kilbourn Bridge is an outstanding, well-preserved example of wagon truss construction - one of the last of the multiple-span pinned trusses remaining in Iowa. The bridge is closed to all traffic and the deck is in poor condition. The Kilbourn Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tJuniper Trl.<br />Over Des Moines River<br />Kilbourn, IA 52535<br />Van Buren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Flour Mill and Power Plant Overlook",
            "lat": "42.997562",
            "lon": "-91.658458",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-historicsite-fourmillandpowerplantoverlook-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Flour Mill and Power Plant Overlook</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.997562,-91.658458\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1854, this structure served as a grinding mill for some of the best wheat markets in the country. The mill was converted to an electric power plant in 1909, bringing electricity and heat to a major portion of Northeast Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMill St.<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Wisecup Farm Museum",
            "lat": "41.549561",
            "lon": "-95.910617",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-historymuseum-wisecupfarmmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wisecup Farm Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.549561,-95.910617\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wisecup Farm Museum is a collection of antique farm and home equipment. The museum has over 100 pieces of farm equipment, an 1800s school house replica, 1800s cedar church, log cabin, and a 1900s gas station.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1200 Canal St.<br />Missouri Valley, IA 51555<br />Harrison County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.642.2114</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "The Straight Story Lawnmower",
            "lat": "42.999755",
            "lon": "-91.656412",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-uniquelyiowa-straightstorylawnmower-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Straight Story Lawnmower</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.999755,-91.656412\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1994, Laurens farmer Alvin Straight set out to visit his brother in Mount Zion, Wisconsin. Straight did not have a driver license, so he hitched a trailer to his lawn mower for the 240-mile journey. He travelled through Clermont, and here you can see the 1966 John Deere Lawn Mower used in the movie detailing his trip - a 1999 drama: &quot;The Straight Story.&quot;</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t213 Mill St.<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Clermont Historical Museum",
            "lat": "43.000044",
            "lon": "-91.656118",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-historymuseum-clermonthistoricalmuseum-4b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clermont Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.000044,-91.656118\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1913, this museum showcases significant items collected through Governor Larrabee&#039;s world travels. Find everything from geological collections and prehistoric fossils to ancient artifacts and weapons of war.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t302 Mill St.<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.423.5561</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Stone Jail",
            "lat": "42.999681",
            "lon": "-91.657028",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-historicsite-clermontstonejail-5b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stone Jail</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.999681,-91.657028\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Erected in 1852, the stone jail was used for incarceration until the 1920s. Although people were detained for crimes, the jail was most frequented by town drunks looking for a free place to spend the night.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210 Mill St.<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Hart Parr Tractor",
            "lat": "42.999374",
            "lon": "-91.656346",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-notableiowan-hartparrtractor-4.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hart Parr Tractor</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.999374,-91.656346\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This tractor was built in 1927 at Charles City, Iowa. The manufacturer of this tractor, Hart Parr, is famous for having coined the term &quot;tractor&quot; when he shortened the old name for the machines previously known as gasoline traction engines. This tractor was restored by Mr. Richard Vagts of Eldorado and given to the Clermont Community Club.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t211 Mill St.<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Downey Savings Bank",
            "lat": "41.616081",
            "lon": "-91.349612",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Downey Savings Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.616081,-91.349612\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Downey Savings Bank is a well-preserved example of an early 20th century commercial bank building. The bank was chartered in 1903 when the town of Downey was prosperous. It served the town and surrounding communities until 1932. The bank was never reopened. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4th St.<br />Downey, IA 52358<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. William Larrabee Gravesite",
            "lat": "42.992155",
            "lon": "-91.649657",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-cemetery-godsacrescemetery-7b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. William Larrabee Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.992155,-91.649657\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>William Larrabee (January 20, 1832 - November 16, 1912) served as the 12th Governor of Iowa from 1886 until 1890. After serving two terms as governor, Larrabee retired to Montauk, his family mansion in Clermont which is now a State Historic Site. His gravesite is located at God&#039;s Acres Cemetery in Clermont.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t24821 Canoe Rd.<br />Gods Acres Cemetery<br />Clermont, IA 52141<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Riegel Blacksmith Shop",
            "lat": "42.999623",
            "lon": "-91.656547",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-nhr-riegelblacksmithshop-5b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Riegel Blacksmith Shop</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.999623,-91.656547\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Burkard Riegel settled in Clermont in 1931 and set up this blacksmith shop that he operated into the early 1980s. A native of Germany, Riegel spent three years in an apprenticeship under a master blacksmith before earning his master&#039;s title and horseshoeing diploma. Visitors to the shop will enjoy a unique insight into history -  as the shop and its contents remain nearly untouched since Riegel ceased operations in the 1980s.  It was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210 Mill St.<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.423.7295</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Downey School",
            "lat": "41.615009",
            "lon": "-91.349236",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Downey School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.615009,-91.349236\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Downey School was designed by architect John G. Ralston and constructed by Frank W. Chapman, both of Waterloo, Iowa. The school was built in 1905 for $8,000 and opened in January the following year to serve grades 1-12. From 1925 to 1954, it served as an elementary and intermediate school (grades 1-8), while older students were bused to a consolidated school in West Branch. After Downey School closed in 1954, all students were bused to West Branch, but the building remained a prominent landmark. \r\n\r\nFor several years after the school closed, the Wapsie Valley Grange (an organization focused on agricultural education and social activities) used the building, but little maintenance work has been done on the building since 1954. \r\n\r\nThere was an effort in the late 1970s to add the Downey School to the National Register of Historic Places, but the site wasn’t added until in 2019.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t212 Broadway St.<br />Downey, IA 52358<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Westport Rural School Museum",
            "lat": "43.399544",
            "lon": "-95.140255",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-historicschool-westportruralschoolmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Westport Rural School Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.399544,-95.140255\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wesport Rural Schoolhouse was built around 1896 and included a classroom, an office, and a cloak room. A stage area was added onto the building in the 1910s. Classes were held in the schoolhouse until 1952. The school was then used as a community center unitl 1996, when it was moved to its present location in Kenue Park. It is now a museum that recreates the experience of a one-room schoolhouse and is open seasonally for public and private tours.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2279 170th St.<br />Kenue Park<br />Okoboji, IA 51355<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.332.2969</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Clermont Opera House",
            "lat": "43.000851",
            "lon": "-91.655458",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-theater-clermontoperahouse-2b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clermont Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.000851,-91.655458\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clermont Opera House was a hub for entertainment including silent movies, concerts, plays and dances from 1912 to the mid-1940s. Inside is a hand-painted backdrop detailing Clermont&#039;s historic sites. Tours are available by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 Mill St.<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.423.5561</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Great Plains Wing Commemorative Air Force Museum",
            "lat": "41.258434",
            "lon": "-95.762810",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-historymuseum-commemorativeairforcemuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Great Plains Wing Commemorative Air Force Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.258434,-95.762810\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Great Plains Wing Commemorative Air Force Museum is dedicated to the military aircraft of World War II and the men and women that built, serviced, and flew them. The museum features iconic military aircraft of the time, including a P-51 Mustang and an Aeronca L3. It also has more than 2000 artifacts pertaining to the aircraft and  pilots.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t16803 McCandless Rd.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.322.2435</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Hale Bridge",
            "lat": "42.092665",
            "lon": "-91.274724",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-bridge-nhr-halebridge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hale Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.092665,-91.274724\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The wrought iron Hale Bridge, completed in 1879, replaced a flood-prone wooden structure erected in 1870. The new bridge provided year round access across the Wapsipinicon River between the northern and southern halves of Hale Township, and spurred economic development in this area of Jones County by providing safe and reliable access to the rail line and depot at Hale Village. The Hale Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tShaw Rd.<br />Anamosa, IA 52323<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Former Spirit Lake Public Library",
            "lat": "43.422398",
            "lon": "-95.101958",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-nhr-formerspiritlakepubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Former Spirit Lake Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.422398,-95.101958\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Spirit Lake Public Library is a built with the late-medieval or Tudor Style. The design is simple, uncluttered with detail, well-integrated and restrained. It was used until 1990. This site was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1801 Hill Ave.<br />Spirit Lake, IA 51360<br />Dickinson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Union Sunday School and Kimball Organ",
            "lat": "43.000354",
            "lon": "-91.654525",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-nhr-unionsundayschoolandkimballpipeorgan-14b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Union Sunday School and Kimball Organ</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.000354,-91.654525\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1858, the Union Sunday School houses the largest pneumatic Kimball pipe organ in the United States. This historic organ was a gift from Governor and Mrs. William Larrabee in 1896. It was restored in 1980. The walnut case of the organ measures 20 feet long, 11 feet deep, and 7.5 feet high. The pipes extend to make the organ 20 feet tall. Organ concerts are held in the Union Sunday School during the summer months. The Union Sunday School was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t406 Larrabee St.<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Patrick Catholic Church",
            "lat": "40.880683",
            "lon": "-95.425992",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont-nhr-stpatrickcatholicchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Patrick Catholic Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.880683,-95.425992\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Patrick Catholic Church was built in 1915 with white Carrera marble features, stained glass, Stations of the Cross, and an oak ceiling, all of which remain well-preserved. This church was built to replace one built in 1881 but destroyed by fire in 1892, however, the bell and Pieta from the original church were saved. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t304 3rd St.<br />Imogene, IA 51645<br />Fremont County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.386.2200</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.stpatrickimogene.parishesonline.com/scripts/HostedSites/Org.asp?ID=13704\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Colonel William T. and Elizabeth C. Shaw House",
            "lat": "42.102470",
            "lon": "-91.272136",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-nhr-colonelwilliamelizabethshawhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Colonel William T. and Elizabeth C. Shaw House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.102470,-91.272136\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Shaw House is associated with the life of Colonel William T. Shaw. The house is the only example of Italian Villa design in Anamosa and the surrounding community. Shaw, according to a contemporary, &quot;had more to do with the material growth and development of the town than any other citizen during his residence of fifty-six years in our midst&quot; (Anamosa Eureka 1909). The house is associated with Shaw&#039;s productive post-Civil War years when he played a major role in Anamosa&#039;s commercial and residential construction, banking interests, industrial development and promotion, political service including the first mayor of Anamosa and as a State Representative. The Colonel William T. Shaw House was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t509 S Oak St.<br />Anamosa, IA 52205<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Antlers Hotel",
            "lat": "43.423172",
            "lon": "-95.101997",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-nhr-antlershotel.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Antlers Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.423172,-95.101997\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Antlers Hotel is associated with early 20th century tourism and hostelry in the Iowa Great Lakes region. The hotel is mainly built of bricks and stone. It was added to the National Register of Historic Places in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1703 Hill Ave.<br />Spirit Lake, IA 51360<br />Dickinson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Episcopal Church of the Savior",
            "lat": "43.002750",
            "lon": "-91.653769",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-historicsite-episcopalchurchofthesavior-9b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Episcopal Church of the Savior</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.002750,-91.653769\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1867, this church was a gift from Mrs. Frances Dyer Vinton of Providence, Rhode Island. She had it built in memory of her son and daughter who died in their youth. Vinton chose Clermont as the site of this church because she believed it to be the geographical center of the United States. (Actually, the geographical center of the United States is near Belle Fourche, South Dakota).</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t606 Mill St.<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.423.5508</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://churchofthesaviour.tripod.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "IDEAL School and Museum",
            "lat": "43.001022",
            "lon": "-91.653196",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-nhr-larrabeeidealschoolandmuseum-2b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">IDEAL School and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.001022,-91.653196\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Groundbreaking for Larrabee&#039;s IDEAL School was held in May of 1912. Governor and Mrs. Larrabee studied school layout and construction for more than 15 years prior to constructing the IDEAL School. The school was built for and donated to the community by the Larrabees, who believed the children in Clermont deserved the best education. It operated as a public school from 1913 to 1990 and today houses the Clermont Historical Society Museum and public library. The museum, and artifacts from Governor Larrabee&#039;s travels around the world, can be toured by appointment. The IDEAL School was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t505 Larrabee St.<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.423.5561</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Abraham Lincoln Statue and Park",
            "lat": "43.003245",
            "lon": "-91.652621",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-monument-abrahamlincolnstatueandpark-2b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Abraham Lincoln Statue and Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.003245,-91.652621\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Erected in 1902, this handsome bronze statue of Abraham Lincoln was sculpted by George E. Bissell and serves as a tribute to the soldiers and sailors of the Civil War. Also, located in Abraham Lincoln Park is the Clermont Veterans Memorial.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t749 Mill St.<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Dickinson County Historical Museum",
            "lat": "43.423016",
            "lon": "-95.106469",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-historymuseum-dickinsoncountymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dickinson County Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.423016,-95.106469\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dickinson County Historical Society operates the Dickinson County Historical Museum, which chronicles the history of the county from the Spirit Lake Massacre to WWII.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1708 Keokuk Ave.<br />Spirit Lake, IA 51360<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.336.5463</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Steffen 1:8 Scale Railroad",
            "lat": "42.485376",
            "lon": "-91.342056",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Steffen 1:8 Scale Railroad</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.485376,-91.342056\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Ride the backyard rails in rural Manchester. This 1:8 scale railroad has 1,700 feet of track and hand built railroad cars. The miniature tracks lie along what was the 1873 Milwaukee Road branch line. A kit built locomotive pulls three cars near flower gardens and through a 60 foot tunnel. Rides are made by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2310 210th St.<br />Manchester, IA 52057<br />Delaware County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.927.4221</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Gilbertson Conservation Education Area",
            "lat": "42.957716",
            "lon": "-91.611429",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gilbertson Conservation Education Area</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.957716,-91.611429\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>A 345-acre recreation and education area that includes the Gilbertson Nature Center, Maize Maze, Mavis and Conner Dummermuth Historical Building, Hart Dummermuth Historical Building, petting zoo and crop demonstration plots. This unique area also offers canoe access, a paved, accessible quarter mile trail, a playground, a shelter house, a modern campground and over five miles of trails.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t22502 A Ave.<br />Elgin, IA 52141<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.426.5740</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.elginiowa.org/gilbertson.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowa Lakeside Laboratory Historic District",
            "lat": "43.378952",
            "lon": "-95.183942",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-nhr-iowalakesidelaboratoryhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Lakeside Laboratory Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.378952,-95.183942\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lakeside Laboratory, located near Little Miller Bay, is one of the earliest educational institutions associated with the conservation movement. The property is closely associated with Thomas H. MacBride, who is considered by many to be the father of the conservation movement in Iowa. The Iowa Lakeside Laboratory Historic District was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1838 Iowa 86<br />Milford, IA 51351<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 888.469.2338</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.continuetolearn.uiowa.edu/lakesidelab/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Historic Band Shell",
            "lat": "43.002667",
            "lon": "-91.649636",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-historicsite-clermonthistoricbandshell-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Historic Band Shell</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.002667,-91.649636\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Stroll through Clermont City Park and discover a historic band shell made of Clermont brick built in 1920.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tClermont City Park<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Cedar No. 6 School (Peach Blossom School)",
            "lat": "40.915277",
            "lon": "-91.811452",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cedar No. 6 School (Peach Blossom School)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.915277,-91.811452\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">122mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Peach Blossom School was built in 1915. The Cedar #6 school is a part of the Round Prairie Park, a large camp site in scenic Fairfield. The schoolhouse can be reserved fro meetings and special occasions.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRound Prairie Park<br />Stockport, IA 52651<br />Jefferson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "National Motorcycle Museum",
            "lat": "42.104901",
            "lon": "-91.265573",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-historymuseum-nationalmotorcyclemuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">National Motorcycle Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.104901,-91.265573\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">122.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The National Motorcycle Museum was founded in 1989 by a collection of avid motorcycle riders, builders, and collectors. The museum shows the history of motorcycles and motorcycle culture. The museum has many featured bikes, scooters, and a restored 1920s era steel, modular Shell gas station.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 Chamber Dr.<br />Anamosa, IA 52205<br />Jones County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.462.3925</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://nationalmcmuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "public-art.png",
            "title": "Civil War Statues at Montauk",
            "lat": "43.008060",
            "lon": "-91.649099",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-statehistoricsite-montaukstatues.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/public-art.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Civil War Statues at Montauk</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.008060,-91.649099\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">122.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Tour the grounds of Montauk and you will find four life-sized statues of Civil War heroes: Generals Ulysses S Grant, William T. Sherman, Grenville Dodge and Admiral David Farragut. Larrabee fronted the money for these statues to be used at the Iowa Pavilion at the St. Louis World&#039;s Fair. The State of Iowa never reimbursed him, so he took them home to Montauk. George Edwin Bissell (1839-1929) sculpted Dodge, Farragut and Sherman. John Massey Rhind sculpted Grant.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t26223 Harding Rd.<br />Montauk State Historic Site<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Eisenhower Bridge",
            "lat": "40.678446",
            "lon": "-92.117329",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Eisenhower Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.678446,-92.117329\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">122.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located some two miles east of Milton, this long-span through truss carries a gravel-surfaced county road over the Fox River. It is comprised of a single pinned Pratt truss, which was once part of a two-span structure built between Lee and Des Moines counties in 1888. The Eisenhower Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tChestnut Ave.<br />Over Fox River<br />Milton, IA 52570<br />Van Buren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-historic-sites.png",
            "title": "Montauk State Historic Site",
            "lat": "43.008375",
            "lon": "-91.648765",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-statehistoricsite-montauk.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Montauk State Historic Site</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.008375,-91.648765\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">122.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Journey into the past at the home of Iowa&#039;s 12th Governor, William Larrabee. Larrabee served as the Governor of Iowa from 1886 until 1890. After serving two terms as governor, Larrabee retired to Montauk, his family mansion in Clermont which is now a State Historic Site. Enjoy a guided tour where you will see and hear how the Larrabee family furnished and maintained this two-story 1874 mansion and estate for more than 100 years, adapting with the changing agricultural life. The Larrabees named their estate Montauk, after their home in New York. Montauk was added to the National Register of Historic Places in 1973.</p>\t\t<p><em>A location in the collections: State Historic Sites, 99 County Tour - Iowa History Month</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t26223 Harding Rd.<br />US Hwy. 18 E<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.423.7173</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://iowaculture.gov/history/sites/montauk-historic-site\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Samuel and Sarah Hulme House",
            "lat": "41.079261",
            "lon": "-91.640403",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Samuel and Sarah Hulme House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.079261,-91.640403\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">122.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>When Sarah Howard married Samuel Hulme in 1862, and her father, Hiram Howard, built this brick home on the Trenton-Wayland Road as a gift for the newlywed couple. The Hulmes would remain in this home for their entire married life, eventually sharing it with five children.\r\n\r\nSamuel was a gentleman farmer, involved in the Henry County Institute of Science, which was established in 1869 in nearby Trenton with a lecture room, museum and library for the promotion of arts and sciences. The 1870 census valued the Hulme Farm at $3,120, indicating it was a small- to medium-sized operation. In 1913, Samuel passed the operation to his grandson, and various Hulme descendants lived in the home until 1999.\r\n\r\nHenry County opened to white settlement in 1833, and this Late Georgian Revival home, built 29 years later, is considered an early dwelling. The home is unusual as it is constructed with brick, which was more common in Mount Pleasant but rare in the county’s rural areas.\r\n\r\nThe house was added to the National Register of Historic Places in 2019.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1577 Franklin Ave.<br />Co. Rd. W55<br />Trenton, IA 52654<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Midway Stock Farm",
            "lat": "40.802448",
            "lon": "-91.930822",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Midway Stock Farm</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.802448,-91.930822\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">122.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Midway Stock Farm Barn is a surviving example of how a 19th Century barn was converted from stock raising to dairy farming purposes through the installation of Louden equipment. In 1918 up-to-date Louden equipment was installed throughout the building. This included a litter carrier with tracks and switches, a hay carrier with steel track, a grapple hook hay fork, and a metal aerator on the roof. The litter carrier is historically significant as an important Louden invention. It is one of the few remaining examples of this equipment within the vicinity. The Midway Stock Farm was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA Hwy. 1<br />Mount Zion<br />Keosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Heritage Farm Park",
            "lat": "43.013750",
            "lon": "-91.642019",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fayette-historymuseum-heritagefarmpark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Heritage Farm Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.013750,-91.642019\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">122.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Heritage Farm Park is a recreational and educational facility that celebrates and preserves northeast Iowa&#039;s rural agricultural and cultural heritage. This 106-acre park features 10 miles of trail, a petting zoo, campsites and historical attractions. Tours and wagon rides are offered June, July and August.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t26411 Harding Rd.<br />Clermont, IA 52135<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.419.8534</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.heritagefarmpark.webs.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Charles Tolles Historic Marker",
            "lat": "41.004094",
            "lon": "-95.584881",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mills-undergroundrailroad-charlestollesmarker.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles Tolles Historic Marker</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.004094,-95.584881\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">122.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Charles W. Tolles held strong antislavery beliefs and was active in Underground Railroad operations. He and his wife Sylvia were well-known to the antislavery community of Fremont County, having previously worked with Ira and Mary Blanchard of Civil Bend in Kansas during the 1840s. The Tolles Cabin, located 1.5 miles northwest of present day Malvern, became a regular stop for those escaping or helping others to escape slavery, due to its convenient location between Tabor in northern Fremont County and Lewis in western Cass County. This is stop #3 on the Freedom Trail tour: On February 12, 1859, Brown’s group stopped at the cabin of Charles W. and Sylvia Tolles. The party rested overnight at Tolles’ cabin before moving on to Oliver Mills’ farm near Lewis the next day. A historic marker commemorating this stop on the Underground Railroad stands in Paddock Park in Malvern.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t154 E 6th St.<br />Malvern, IA 51551<br />Mills County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Pittsburg Cemetery",
            "lat": "40.749063",
            "lon": "-91.995997",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pittsburg Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.749063,-91.995997\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">122.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pittsburg Cemetery is located about two miles northwest of Keosauqua across the Des Moines River. The cemetery is the most notable historic site remaining from the original community of Pittsburg, now an unincorporated community. The town was originally platted in 1839 and named Rising Sun which also included a town of the same name - one on the north side of Chequest Creek and one on the south. It became Pittsburg in 1842. Notable Iowan, Voltaire P. Twombly, Civil War veteran and Iowa Medal of Honor recipient, is buried at the cemetery. Twombly grew up in the Keosauqua area and after the war operated a flour mill at Pittsburg for a time.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIvy Tr.<br />Keosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Jacob and Valeria Wortman Cabin",
            "lat": "41.004166",
            "lon": "-95.584764",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mills-historicsite-jacobandvaleriawortmancabin.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jacob and Valeria Wortman Cabin</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.004166,-95.584764\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">122.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jacob and Valeria Wortman hand-hewn log cabin was built in 1856 in what is now the South Grove neighborhood of Mills County between Hastings and Strahan. It is considered to be the oldest standing structure in Mills County and has been confirmed as a National Society of the Daughters of the American Revolution Historic Landmark. It was donated to the city of Malvern by one of the descendants, Allen Wortman (the then editor of the Malvern Leader newspaper), to be located in the town&#039;s Paddock Park and used as a pioneer memorial. Former Governor Bob Ray is also a descendant of Jacob and Valeria Wortman.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tPaddock Park<br />Malvern, IA 51551<br />Mills County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Ossian Opera House",
            "lat": "43.146154",
            "lon": "-91.765701",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ossian Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.146154,-91.765701\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">122.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ossian Opera House is a well preserved example of a small town opera house from the late 19th century. The building is well-conceived and pleasing as a work of architecture, and successfully expressive of its purpose as a place of public gathering. The Ossian Opera House was erected in 1893 by the Ossian Hall Company, organized locally and incorporated the same year. It was added to the National Register of Historic Places on June 18, 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 W Main St.<br />Ossian, IA 52161<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Louise Robinson Barn",
            "lat": "41.874876",
            "lon": "-91.259771",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cedar-barn-louiserobinsonbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Louise Robinson Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.874876,-91.259771\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">122.9mi.</span></div>\n\t\t</div>\n\n\t\t\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t493 Fox Ave.<br />Mechanicsville, IA 52306<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Pikes Point State Park",
            "lat": "43.415303",
            "lon": "-95.163529",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-nhr-pikespointstatepark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pikes Point State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.415303,-95.163529\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">123.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civilian Conservation Corps (CCC) was a public relief program to make work for unemployed, unmarried man ages 18-25 during the New Deal, from 1933-1942. Men in the CCC worked in camps set up across the nation, and many of the camps were in Iowa State Parks. Many state park facilities date to the CCC. The buildings, structures, and objects reflect the effort to blend park amenities into the natural landscape in their material, design, workmanship, and immediate setting and reflect common types developed by the National Park Service for park construction. The shelter and steps at Pikes Point State Park were constructed by the CCC. They were added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t15973 213th Ave.<br />Spirit Lake, IA 51360<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.337.3211</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610198\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "County Line Bridge",
            "lat": "41.266786",
            "lon": "-91.485199",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">County Line Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.266786,-91.485199\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">123.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The County Line Bridge was built in September 1893. The cast iron columns were manufactured by the Cast Iron Pile and Bridge Company in Keosauqua, Iowa. That was a short-lived company, and the columns on this bridge are the only known surviving work from that firm. The bridge is closed to traffic and was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCounty Line Rd.<br />Columbus Junction, IA 52738<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Wonderland Theater",
            "lat": "42.979619",
            "lon": "-95.687888",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/obrien-theater-wonderlandtheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wonderland Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.979619,-95.687888\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">123.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wonderland Theater was built in 1912, under a different, unknown name. The theater was remodeled in 1945, and reopened as the Wonderland Theater. The theater is still operating today, and retains its 1940s architecture, as well as its number of historic movie posters.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 S Main St.<br />Paullina, IA 51046<br />O&#039;Brien County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Murray General Merchandise Store",
            "lat": "41.809485",
            "lon": "-96.024559",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-nhr-murrayhall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Murray General Merchandise Store</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.809485,-96.024559\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">123.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The flat facade on the front of the Murray General Merchandise Store is a false front, which makes the building look larger than it actually is.  These types of wood-frame buildings were commonly the first type of commercial buildings constructed in frontier towns. In most towns, these early wooden buildings were replaced with masonry structures after the railroad arrived in town and it was easier to obtain bricks. Little Sioux never had a direct rail connection, which may account for the survival of Murray Hall.\r\n\r\nThe building is named for Michael Murray, who was born in Scotland in 1840. He came to America in 1857 and settled at Council Bluffs. He worked as a mail carrier, stage driver and on the railroad, residing in Council Bluffs, Denver, Cheyenne and Salt Lake City. In 1868, he settled at Little Sioux and purchased the local mercantile which he operated with various business partners. In 1877, Murray built this two-story building, now known as Murray Hall. The upper story of the building was used as the Masonic Hall.  In addition to the mercantile, Murray also dealt in grain and hogs and owned the elevator in River Sioux from 1887 to 1897. Murray died in 1916 and his daughter, Ada, owned the building until 1942 when she sold the building to the Masonic Lodge. \r\n\r\nIn 1996, ownership of the building was transferred to Harrison County in order to better preserve the building and continue with restoration efforts. As of 2016, several State Historical Society of Iowa grants have been used for the preservation and restoration of the Murray General Merchandise Store. The building was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2nd St.<br />Little Sioux, IA 51545<br />Harrison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Castle Grove No. 9 School",
            "lat": "42.280475",
            "lon": "-91.261629",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Castle Grove No. 9 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.280475,-91.261629\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">123.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Castle Grove No. 9 or Hardscrabble School was built in 1870 and used until 1959. The school was unique because it was one of the few schools that had more Native American students than it did white students.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t19879 Hardscrabble Rd.<br />Monticello, IA 52310<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Morris Memorial Park",
            "lat": "40.888854",
            "lon": "-91.799703",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Morris Memorial Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.888854,-91.799703\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">123.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Morris Park is a picturesque, 60 acre park located 4 miles northeast of Stockport. It is owned and operated by Van Buren County Conservation with a resident park attendant. Quiet, peaceful and remote, Morris Park offers a beautiful setting for camping and for the pioneer relics on display. The park has several buildings containing artifacts from the county&#039;s farming past as well as a stocked pond, nature trails, picnic areas and camping hookups. The area was originally settled in 1838 by Henry and Jane Morris. One hundred years later their grandsons, John and Arthur Morris, established a park in their honor. They built a replica of the original Morris cabin which now contains utensils, tools, clothing, a spinning wheel, and other artifacts from the 1840&#039;s on. The &quot;Music Hall&quot; holds an old pump organ and piano along with a dentist&#039;s chair. The &quot;Art Hall&quot; displays some Morris memorabilia, old photos an some history of the family. The newest building is the full-sized replica of a turn-of-the-century barn. Housed in the barn are such things as a glass-sided horse drawn hearse, a wooden two-man corn planter, the Utica huckster wagon, a replica of a McCormick reaper, a rare hay stacker, etc. Sitting next to a quiet pond is an old country schoolhouse, the East Union School.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tTimber Rd.<br />Stockport, IA 52651<br />Van Buren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.796.2148</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://villagesofvanburen.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Bridge Near West Liberty",
            "lat": "41.568323",
            "lon": "-91.323465",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bridge Near West Liberty</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.568323,-91.323465\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">123.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bridge near West Liberty is an historic structure located west of the town of West Liberty in rural Muscatine County. The welded steel rigid frame bridge was built in 1937 and was designed by Otto Wendling of the Iowa State Highway Commission. The bridge was listed on the National Register of Historic Places in 1998 as a part of the Highway Bridges of Iowa Multiple Property Submission.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t120th St.<br />Over unnamed stream<br />West Liberty, IA 52766<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Abner Martin House",
            "lat": "40.775388",
            "lon": "-91.927078",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Abner Martin House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.775388,-91.927078\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in the 1850s, the Abner Martin House is a fine example of vernacular architecture. Martin was an early settler in Van Buren County and worked as a farmer. The Abner Martin House was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t18260 Hawk Dr.<br />Keosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Osborne Welcome Center and Nature Center",
            "lat": "42.791385",
            "lon": "-91.445879",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Osborne Welcome Center and Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.791385,-91.445879\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Osborne Welcome Center is an Iowa Welcome Center and Nature Center, serving over 15,000 students annually. In the 1870s and 1880s, Osborne was a community - but it never reached more than 50 residents. In the fall of 1960, the Clayton County Conservation Board purchased 60 acres of the original Osborne homestead and established it as a county park. There are several buildings on site, including St. Paul&#039;s Lutheran Church Catechism. The Clayton County Conservation Board A vision of “a place where students can learn” has been the guiding force for the development of the Osborne Center. In 1971 the Conservation Board purchased an additional 155 acres of land from Ben Casey. The land, located north across the Volga River, is used for archery, hiking, skiing, sledding, and birding. Osborne boasts a Native Wildlife Exhibit, walking trails and a gift shop.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t29862 Osborne Rd.<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.245.1516</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://claytoncountyconservation.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Big Slough Creek Bridge",
            "lat": "41.477168",
            "lon": "-91.348405",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Big Slough Creek Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.477168,-91.348405\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Big Slough Creek Bridge was built in 1937 on Bancroft Avenue. It is a single-span concrete rigid frame bridge designed by the Iowa State Highway Commission and built by Otto Wendling. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBancroft Ave.<br />Over Big Slough Creek<br />Nichols, IA 52766<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Mondamin Hall",
            "lat": "41.710516",
            "lon": "-96.022139",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-theater-mondaminhall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mondamin Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.710516,-96.022139\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Mondamin Hall was built in 1916, replacing previous commercial buildings that had been destroyed by fire. Locals referred to the building as the “opera house,” even though its primary function was as a general store on the first floor and dance hall on the second floor. Occasionally, movies were shown in the upstairs auditorium. According to historic newspapers, talking movies were being shown at Mondamin Hall by 1938. The building is also known as Keith’s Store, for the general store that operated on the first floor from 1927 through the 1980s.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 Maple St.<br />Mondamin, IA 51557<br />Harrison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hannah Morse Fowler Hall House",
            "lat": "41.759139",
            "lon": "-91.253665",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hannah Morse Fowler Hall House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.759139,-91.253665\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built for Hannah Morse Fowler Hall in 1854. It is a post and beam dwelling. The accompanying hog house and machine shed were built about 1900 vintage and the gabled barn was built in 1922. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWalters Ave.<br />Buchanan, IA 52772<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mederville Bridge",
            "lat": "42.763678",
            "lon": "-91.421470",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mederville Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.763678,-91.421470\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mederville Bridge was constructed in 1918 by F.E. Marsh and Company after being designed by the Marsh Engineering Company—both based out of Des Moines. The bridge spans a 155-foot wide ravine, and was built as a replacement for an earlier structure. It is today exceeded in age by only a couple of open spandrel arches in Des Moines and Iowa City. It was added to the National Register of Historic Places in 1998.  The Mederville Bridge, on Eclipse Road, is not in use, but remains visible directly northwest of the modern bridge on Evergreen Road.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tEvergreen Rd.<br />Mederville, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Franklin Pearson House",
            "lat": "40.735605",
            "lon": "-91.967754",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/vanburen-nhr-franklinpearsonhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Franklin Pearson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.735605,-91.967754\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pearson House was constructed in 1847. This half-stone and half-brick home was built by Benjamin Franklin Pearson who was a skilled stonemason who had intended to build the entire house of stone, but after erecting the first story, he accepted a quantity of brick as payment on a debt so he used the brick to complete the house. A prominent stop on the Underground Railroad, escaping slaves were hidden within a secret basement room until it was safe for them to proceed with their journey to freedom. This property is preserved by the Van Buren County Historical Society</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t718 Dodge St.<br />Keosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.293.3088</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://villagesofvanburen.com/sites-of-interest.html?item=20\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Heritage Park",
            "lat": "43.086902",
            "lon": "-95.620577",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/obrien-historymuseum-heritagepark-centertownshipno3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Heritage Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.086902,-95.620577\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Visitors to Heritage Park will step back in time in this village featuring a log cabin, historic home, hotel, bank, the Philby Church and Center Township No. 3 School. The school was moved to the park in 1976.  The park is full of artifacts and exhibits and also houses research materials for those wishing to learn more about the people and places in O&#039;Brien County. The park is operated by the O&#039;Brien County Historical Society.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t498 Heritage Park Rd.<br />Primghar, IA 51245<br />O&#039;Brien County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.930.3241</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Morning Star School",
            "lat": "40.772481",
            "lon": "-95.371142",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-historicschool-morningstarschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Morning Star School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.772481,-95.371142\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Morning Star School was built in 1883 and operated until 1948. The school was originally located at the northwest corner of Section 22 of Walnut Township in Fremont County, Iowa, west of Shenandoah. The school was moved to Sportsmans Park in Shenandoah is maintained as a museum by the Greater Shenandoah Historical Society. It is open by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t429 IA Hwy. 48<br />Sportsman Park<br />Shenandoah, IA 51601<br />Page County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wabash Combination Depot",
            "lat": "40.772224",
            "lon": "-95.370619",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-nhr-wabashcombinationdepot.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wabash Combination Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.772224,-95.370619\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wabash Combination Depot in Shenandoah is one of the few remaining standard plan, wooden Wabash Railway depots in Iowa and represents the typical mid-American small town railroad station built during the peak railroad years. The Wabash Railway was a minor player in the industry in Iowa and by the 1960s, little more than 200 miles of Wabash rails existed. The Wabash Combination Depot was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Center St.<br />Shenandoah, IA 51601<br />Page County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Antioch School",
            "lat": "42.085175",
            "lon": "-91.214132",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-nhr-countryschool-anitochschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Antioch School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.085175,-91.214132\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Antioch School is a one-room schoolhouse that served the German and Irish neighborhood four miles east of Anamosa for 77 years. Famed artist Grant Wood (1892-1942) attended this school from 1897-1901. Wood lived on a nearby farm and began drawing at home and continued this interest in school. The vivid scenery, common activities and agriculture from this time in his life were a basis for many subjects over the course of his successful career. The Antioch School was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t17314 IA Hwy. 64<br />Anamosa, IA 52205<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "O&#039;Brien County Courthouse",
            "lat": "43.086726",
            "lon": "-95.627612",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/obrien-nhr-obriencountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">O&#039;Brien County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.086726,-95.627612\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The O’Brien County Courthouse was built in 1915 for $159,000. The exterior is finished with buff Bedford limestone. Interior hallways are made of Italian marble and the handrails are finished in bronze. The O&#039;Brien County Courthouse was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st St.<br />Primghar, IA 51245<br />O&#039;Brien County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Civil War Monument: Delaware County",
            "lat": "42.345043",
            "lon": "-91.243411",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Civil War Monument: Delaware County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.345043,-91.243411\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Civil War Monument was dedicated November 17, 1865 on the former campus of the old Bowen Collegiate Institute (later called Lenox College). The college, which operated from 1859-1944, had many students who enlisted and served in the 21st Iowa Infantry during the Civil War. The monument is inscribed with the names of the students including Dr. Mary Edwards Walker who attended the college in 1860 and is the only female to earn the Medal of Honor.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 College St. NE<br />Delaware County Historical Museum<br />Hopkinton, IA 52237<br />Delaware County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Delaware County Historical Museum (Lenox College)",
            "lat": "42.345351",
            "lon": "-91.243185",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Delaware County Historical Museum (Lenox College)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.345351,-91.243185\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lenox College consists of four acres of land and four major school buildings. A marble Civil War Monument was erected near the center in 1865. The buildings include Old Main, Clark Hall, Doolittle Memorial Hall, and Finkbohner Hall and they feature a variety of architectural styles. The college operated from 1859 to 1944, and the buildings that remain are now used as the Delaware County Historical Museum Complex which includes a Civil War monument, farm machinery halls, one-room school, restored train depot and caboose, restored Reformed Presbyterian Church and microfilm roster of Iowa Civil War soldiers.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 College St. NE<br />Hopkinton, IA 52237<br />Delaware County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Van Buren County Courthouse",
            "lat": "40.733100",
            "lon": "-91.963527",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Van Buren County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.733100,-91.963527\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Van Buren County Courthouse was built in 1843. It is the only building the county has used as its courthouse. It is the oldest courthouse in Iowa. In 1845 the courthouse served as the location for a trial resulting in the first death penalty in Iowa history. The courthouse received a major renovation in 1997. It is still a functioning courthouse, but also features historical displays, photos of former judges, portraits, and maps. The Van Buren County Courthouse was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t406 Dodge St.<br />IA Hwy. 1<br />Keosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://vanburencoia.org/history.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Van Buren County Historical Society Museum (Twombly Building)",
            "lat": "40.730977",
            "lon": "-91.961577",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/vanburen-nhr-twomblybuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Van Buren County Historical Society Museum (Twombly Building)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.730977,-91.961577\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Van Buren County Historical Society Museum is in the Twombly Building. This store was originally owned by Voltaire Twombly, winner of the Congressional Medal of Honor for his heroic efforts as flag bearer for the 2nd Iowa Infantry at the Battle of Fort Donnelson (Tennessee) in the Civil War. The building also served as a bakery, post office, and housed the telephone company at different times. The building was constructed in 1875. It is the largest remaining example of stone construction in Keosauqua. The Voltaire Twombly Building was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t801 1st St.<br />Keosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.293.3211</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://iavanburen.org/historical_society.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Van Buren County Welcome Center and McCoy Historical Museum",
            "lat": "40.731232",
            "lon": "-91.961330",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Van Buren County Welcome Center and McCoy Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.731232,-91.961330\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Van Buren County Welcome Center was originally built as a residence in 1870. The building would be converted into multiple commercial establishments, until the 1990s when it was restored and became the Van Buren County Welcome Center. The center provides general information about the county, as well as detailed information on the Villages of Van Buren and Historic Districts.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t809 1st St.<br />Keosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.868.7822</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Ely&#039;s Stone Bridge",
            "lat": "42.261862",
            "lon": "-91.226426",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ely&#039;s Stone Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.261862,-91.226426\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1893 by Reuben Ely, Sr. of Monticello, Ely’s Stone Bridge is an example of an unusual type of construction. The vast majority of Iowa’s extant bridges are wood trestle, metal truss or concrete. There are a few single-arch stone bridges in northeast Iowa, and one double-arched keystone bridge at Elkader. Ely’s bridge, with its three elliptical arches is an unusual variant of a relatively rare form of bridge architecture in the state. Ely&#039;s Stone Bridge was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHardscrabble Rd.<br />Monticello, IA 52310<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Iowa Walk of Fame",
            "lat": "40.766016",
            "lon": "-95.373635",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-notableiowan-iowawalkoffame.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Walk of Fame</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.766016,-95.373635\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125mi.</span></div>\n\t\t</div>\n\n\t\t<p>Shenandoah&#039;s downtown revitalized streetscape includes the &quot;Iowa Walk of Fame&quot;, a 125 Iowa-shaped sidewalk plaques located along Sheridan Avenue paying tribute to famous Iowans in a multitude of professions. The Shenandoah Chamber of Commerce at 115 East Main Street offers a guide book of all 125 names. Famous Shenandoahans include the Blackwood Brothers, the Everly Brothers, Henry Field, Dr. W. Eugene Lloyd, Earl May, Jesse Field Shambaugh and Charlie Hayden.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWest Sheridan Ave.<br />Shenandoah, IA 51601<br />Page County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.246.3455</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://shenandoahiowa.net\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Legacy 3 Theatre",
            "lat": "40.765764",
            "lon": "-95.374467",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-theater-legacytheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Legacy 3 Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.765764,-95.374467\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Legacy 3 Theatre building was built in 1900. For the first decade it was open, the building housed a jeweler, post office, and cigar shop. By 1914, a theatre was occupying the building and a second floor balcony was added between 1914 and 1927. The building has been expanded to a triplex and continues to show films.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t712 W Sheridan Ave.<br />Shenandoah, IA 51601<br />Page County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.246.2344</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Women&#039;s Christian Temperance Union Public Fountain",
            "lat": "40.765833",
            "lon": "-95.372270",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-nhr-womenschristiantemperanceunionfountain.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Women&#039;s Christian Temperance Union Public Fountain</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.765833,-95.372270\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125mi.</span></div>\n\t\t</div>\n\n\t\t<p>At the 1874 organizing convention of the National Woman&#039;s Christian Temperance Union, the members were urged to erect drinking fountains in their towns so that men could get a drink of water without entering saloons and staying for stronger drinks. The fountain in Shenandoah was added to the National Register of Historic Places on Sept. 27, 1984 and is the only one remaining in the state.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tSheridan Ave<br />Shenandoah, IA 51601<br />Page County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Villages of Van Buren",
            "lat": "40.729871",
            "lon": "-91.961605",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Villages of Van Buren</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.729871,-91.961605\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125mi.</span></div>\n\t\t</div>\n\n\t\t<p>Van Buren County was one of the earliest settled areas in Iowa, due to its location near the Des Moines and Mississippi Rivers. The Villages of Van Buren have maintained a rich sense of history and worked to preserve their unique culture, remaining largely unchanged since their establishment during the 1800s. To this day, there is not a single stop light or fast food restaurant in all of Van Buren County. The area features a number of historic sites on the National Register of Historic Places, as well as scenic parks and lakes, museums and other unique places of interest.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tKeosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.868.7822</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://villagesofvanburen.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Veterans Memorial Museum (Old Armory)",
            "lat": "40.765231",
            "lon": "-95.371859",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-historymuseum-veteransmemorialmuseum-3b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Veterans Memorial Museum (Old Armory)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.765231,-95.371859\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Veterans Memorial Museum in the former armory showcases donated artifacts from veterans and their families. Foreign currency, military patches, model ships, uniforms and other military memorabilia are on display. The museum also features a colorful mural created by local students.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t423 W Thomas Ave.<br />Shenandoah, IA 51601<br />Page County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.246.3464</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hotel Manning",
            "lat": "40.729809",
            "lon": "-91.961155",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/vanburen-historichotel-hotelmanning.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Manning</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.729809,-91.961155\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125mi.</span></div>\n\t\t</div>\n\n\t\t<p>Edwin Manning first arrived in Iowa in 1837, stopping at the great bend in the Des Moines River, known as Rattlesnake or Horseshoe Bend. It was here he staked his claim and platted a new town, which was to become Keosauqua. He felt Iowa was his future so he returned East to settle his affairs and then returned to Iowa in 1839 and built a log cabin store. He later built a hotel. The Hotel Manning has withstood several disastrous floods, including floods in 1903, 1905, and two in 1947, one week apart. The Hotel Manning was added to the National Register of Historic Places in 1973.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Van Buren St.<br />Keosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Springdale Cemetery",
            "lat": "41.678465",
            "lon": "-91.258793",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cedar-cemetery-springdalecemetery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Springdale Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.678465,-91.258793\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Springdale was a Quaker hamlet established in the mid-1850s. John Brown had spent a significant amount of time in Springdale and he and his men had stayed a mile north of town at the farm of William Maxon. The farm is no longer there, but the site is marked by a plaque on a boulder near the road. This is stop #14 on the Freedom Trail tour: Although he was quite familiar with the town, John Brown’s 1859 visit to Springdale was markedly different from previous years. The group arrived in Springdale on February 25, and by this time the story of Brown’s raid in Missouri that had freed this group of people had been highly publicized and a reward was offered for Brown’s capture. Some local residents feared that a mob from Iowa City might try to intercept Brown’s party at Springdale and sentries were posted to ensure their safety. Brown and his group stayed in Springdale for two weeks while they waited for rail arrangements to be made so they could complete their journey.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1841 Fox Ave.<br />Springdale, IA 52358<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Greater Shenandoah Historical Museum",
            "lat": "40.765671",
            "lon": "-95.375512",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-historymuseum-greatershenandoahhistoricalmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Greater Shenandoah Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.765671,-95.375512\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Greater Shenandoah Historical Museum has exhibits on the area&#039;s military and railroad history, the first settlement in the area and the history of plant nurseries. Southwestern Iowa was a prime location for plant nurseries, including Earl May, which was organized in Shenandoah in 1919. The museum also tells the story of Manti, a Mormon settlement in western Page and eastern Fremont counties that disappeared by 1878. The museum is operated by the Greater Shenandoah Historical Society.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t800 W Sheridan Ave.<br />Shenandoah, IA 51601<br />Page County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.246.1669</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.greatershenandoahhs.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Everly Brothers Childhood Home",
            "lat": "40.765698",
            "lon": "-95.376007",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-historymuseum-everlybrotherschildhoodhome.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Everly Brothers Childhood Home</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.765698,-95.376007\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Shenandoah was the home of Isaac Donald &quot;Don&quot; Everly (born February 1, 1937) and Phillip &quot;Phil&quot; Everly (January 19, 1939 – January 3, 2014). The Everly Brothers were a Rock and Roll duo who performed from the late 1950s through the 1970s. The duo was one of the most popular music acts of the time, and were inducted into the Rock and Roll Hall of Fame in 1986 and the Country Music Hall of Fame in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t800 W Sheridan Ave.<br />Shenandoah, IA 51601<br />Page County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.246.3455</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://shenandoahiowa.net\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Iron Mike",
            "lat": "40.765600",
            "lon": "-95.376308",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/page-historicsite-ironmike-2.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iron Mike</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.765600,-95.376308\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Iron Mike was originally located on Maple Street (now on Railroad Street), near the fire station.  Fire horses would wander across the street for a drink from Iron Mike.  One side of Iron Mike has a large trough for horses, and the other has a fountain for humans.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Railroad St.<br />Shenandoah, IA 51601<br />Page County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Kanesville Tabernacle",
            "lat": "41.264838",
            "lon": "-95.842264",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-kanesvilletabernacle.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kanesville Tabernacle</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.264838,-95.842264\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1847 more than 200 pioneers quickly worked to construct the Kanesville Tabernacle in preparation for the conference to sustain Brigham Young as the President and Prophet of the Church of Jesus Christ of Latter-day Saints. The tabernacle was completed in just three weeks and on December 27, 1847 the conference was held with 1,000 people in attendance. Less than two years later the tabernacle was dismantled due to water damage caused by spring runoffs. An exact replica, inside and out, was built in 1996 as a visitor&#039;s center and museum where you can learn more about the history of Mormon migration west to the Salt Lake Valley.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t222 E Broadway<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.322.0500</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Modale School and Masonic Hall",
            "lat": "41.619026",
            "lon": "-96.012243",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-artperforming-modaleschoolandmasonichall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Modale School and Masonic Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.619026,-96.012243\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Modale School and Masonic Hall (also known as the Grand Lodge) was built in 1880 and played an important role in the development of Modale&#039;s public school system. In 1911, it was decided that a new school was needed, so this building was acquired by the Masons and remodeled. The second floor was used as the Masonic Lodge Hall, and the first floor included a stage for public performances. The Town and Country Arts group uses the hall for its stage productions. It was added to the National Register of Historic Places in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t107 S Main St.<br />Modale, IA 51556<br />Harrison County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Steve Brown Barn",
            "lat": "41.560839",
            "lon": "-91.292019",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Steve Brown Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.560839,-91.292019\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The exterior of the Steve Brown barn might be simple, but inside is a very interesting example of 1902 vintage state-of-the-art architecture. Inside the barn is a bucket elevator and a device to unload grain wagons into interior grain bins. The large haymow is impressive and there is a complicated framework holding up the big roof and the overhead hay track. The lower floor is made of brick, which is very unusual for a barn. Many of the basement livestock stalls are still intact. The foundation is of large limestone rocks. The barn presents a very large surface area to winds, which were taking their toll on this old barn, causing it to lean. Steve Brown installed a series of cables on it to straighten the barn, and installed a steel roof and siding to save the barn from rain. Steve says he didn&#039;t restore this barn, but he rescued it. Without his recent efforts it surely would have been gone by now.The barn was featured on the Iowa Barn Foundation&#039;s 2007 Muscatine County Barn Tour and Picnic.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1246 Eliason Ave.<br />West Liberty, IA 52776<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hughes-Irons Motor Company",
            "lat": "41.262289",
            "lon": "-95.845156",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-hughesironsmotorco.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hughes-Irons Motor Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.262289,-95.845156\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hughes-Irons Motor Company was built in 1917 and added to the National Register of Historic Places in 2011. This company played a significant role in the local development of automobile commerce and travel, housing a number of automobile sales and service businesses over the years.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t149 W Broadway<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lysander Tulleys House",
            "lat": "41.260482",
            "lon": "-95.844075",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-lysandertulleyhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lysander Tulleys House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.260482,-95.844075\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1877 by the Wickham Brothers of Council Bluffs and designed by P.E. Hale of Chicago, the Tulleys house is a locally significant example of vernacular residential architecture in the Victorian Gothic style. The house displays the verticality of the style, expressed in the steeply-pitched gables, square tower, narrow proportions, and the use of the pointed arch. The property was added to the National Register of Historic Places in 1879.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t151 Park Ave.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Ruth Anne Dodge Memorial",
            "lat": "41.267756",
            "lon": "-95.848396",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-monument-ruthanndodgememorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ruth Anne Dodge Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.267756,-95.848396\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ruth Anne Dodge Memorial is a solid bronze statue honoring the wife of Union Pacific Railroad engineer and Civil War veteran General Grenville M. Dodge. It was sculpted by Daniel Chester French, the creator of the Lincoln Memorial in Washington, D.C., and depicts a winged angel standing on the prow of a boat. It is said to be a representation of a dream Ruth Anne Dodge had for three nights before her death in 1916. The monument was completed in 1918 and added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tLafayette Ave. and N 2nd St.<br />Fairview Cemetery<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "West Broadway Commercial District",
            "lat": "41.262998",
            "lon": "-95.844962",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-westbroadwaycommercialdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Broadway Commercial District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.262998,-95.844962\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Much of historic downtown Council Bluffs was destroyed for parking garages and strip malls, but the West Broadway Commercial District remains. Most of the buildings in the historic district were built between 1870 and 1920. In the early twentieth century, West Broadway took on added importance when it became part of the first transcontinental highway. With the arrival of the Lincoln Highway and the rise in popularity of the automobile, the 100 Block of West Broadway added several new businesses including an auto tire repair business that replaced an older, outdated livery barn on the north side of the street. The 100 Block of West Broadway, made up of the north side of the block between First and Fourth Streets, was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 W Broadway<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lincoln/Fairview Historic District",
            "lat": "41.267719",
            "lon": "-95.848904",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-lincolnfairviewhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lincoln/Fairview Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.267719,-95.848904\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This district is made up of well-preserved an stylish late nineteenth- and early twentieth-century residential architecture constructed between the 1860s and 1950s. Many of the homes in this area were built by prospering merchants, contractors, politicians, and professionals in the community. The district was added to the National Register of Historic Places in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Kanesville Blvd., N 1st St., Oakland Ave.<br />Fairview Cemetery<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Park-Glen Avenues Historic District",
            "lat": "41.258207",
            "lon": "-95.843742",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-parkglenavehistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Park-Glen Avenues Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.258207,-95.843742\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Park/Glen Avenues Historic District is a residential area located just south of the original plat of the City of Council Bluffs. Architectural styles include late Victorian Italianate, Gothic, Queen Anne, and Renaissance styles; as well as late 19th and 20th Century Colonial, Classical, and Tudor Revivals. This range of styles reflects the neighborhood&#039;s main period of development from 1857-1942. The district was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tPark Ave.<br />Glen Ave.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Garfield No. 1 School",
            "lat": "42.586884",
            "lon": "-95.978312",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-historicschool-garfieldno1.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Garfield No. 1 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.586884,-95.978312\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Garfield No. 1 School was built in 1884 and used until 1961, making it the last one room school to close in Plymouth County. It has been relocated to a site near Kingsley-Pierson High School. It is maintained as a country school and students studying Iowa history visit the school.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tQuest Ave.<br />NW corner of intersection with 1st St.<br />Kingsley, IA 51028<br />Plymouth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Thomas E. Cavin House",
            "lat": "41.260214",
            "lon": "-95.844863",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-thomascalvinhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thomas E. Cavin House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.260214,-95.844863\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house, built in 1907, was the residence of Homer Howard Field. Field served as Justice of the Peace from 1893-1895 and 1905-1907. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t150 Park Ave.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Saint Peter&#039;s Church and Rectory",
            "lat": "41.260456",
            "lon": "-95.847415",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-stpeterschurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Saint Peter&#039;s Church and Rectory</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.260456,-95.847415\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Peter&#039;s Church, built in 1887, after extensive efforts by local men and women to organize a German Catholic church in the area. The Rectory was added in 1895. Both buildings were listed on the National Register of Historic Places in 1992. The church is architecturally significant as an example of the Gothic Revival style and has remained structurally unaltered.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1 Bluff St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.saintpeterscb.org/index.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Parsons Barn",
            "lat": "40.724645",
            "lon": "-91.955833",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Parsons Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.724645,-91.955833\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This is a small, but important, Pennsylvania style barn built for practical purposes on a gorgeous site above a village. The National Register barn was built in 1869.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t22055 IA Hwy. 1<br />Keosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Wickfield Round Barn",
            "lat": "40.668022",
            "lon": "-92.035251",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wickfield Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.668022,-92.035251\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wickfield Round Barn was built in 1919. Originally it was known as the Silvers Sale Pavilion, owned and operated by Frank Silvers, a progressive and successful hog breeder and businessman. The first floor, where sales were held, could comfortably seat 700 persons. Also located on this floor were Silvers’ business offices. The Wickfield Round Barn was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t260th St.<br />Cantril, IA 52542<br />Van Buren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bennett Building",
            "lat": "41.260675",
            "lon": "-95.848955",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-bennettbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bennett Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.260675,-95.848955\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bennett Building was designed by local architect J. Chris Jensen and built in 1923-1924. It was added to the National Register of Historic Places in 2001 for its significant contribution to the role of women in the medical profession. It has since been converted to apartments.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t405 W Broadway<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "State Savings Bank - Council Bluffs",
            "lat": "41.260777",
            "lon": "-95.850607",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-statesavingsbank.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">State Savings Bank - Council Bluffs</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.260777,-95.850607\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The State Savings Bank in Council Bluffs was founded in 1889, but was located elsewhere until 1947 when this property was built. It is a late example of the Art Deco architectural style and was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t509 W Broadway<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wickham-DeVol House",
            "lat": "41.258285",
            "lon": "-95.848595",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-wickhamdevolhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wickham-DeVol House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.258285,-95.848595\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wickham-DeVol House represents the historic adaptation of a substantial nineteenth-century Italianate house to the changing architectural trends of the early twentieth century and illustrates Council Bluffs&#039; participation in changing nationwide attitudes towards domestic architecture. The house was originally built for O.P. Wickham in 1878, but was purchased by Paul and Katherine DeVol in 1884. The DeVols are responsible for the renovations that added elements of the Prairie style to the Italianate home. The house was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t332 Willow Ave.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Lacey Keosauqua State Park",
            "lat": "40.709454",
            "lon": "-91.972325",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/vanburen-nhr-laceykeosauquapark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lacey Keosauqua State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.709454,-91.972325\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civilian Conservation Corps (CCC) was a public relief program to make work for unemployed, unmarried man ages 18-25 during the New Deal, from 1933-1942. Men in the CCC worked in camps set up across the nation, and many of the camps were in Iowa State Parks. Many state park facilities date to the CCC. The buildings, structures, and objects reflect the effort to blend park amenities into the natural landscape in their material, design, workmanship, and immediate setting and reflect common types developed by the National Park Service for park construction. The CCC worked at Lacey Keosauqua State Park and the Bath House, Lodge and Picnic Shelter were added to the National Register of Historic Places in 1990. \r\n\r\nVisual Artist Nancy Thompson will be working at Lacey-Keosauqua State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t22895 Lacey Trail<br />Keosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.293.3502</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/parkdetails/parkid/610103\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Willow/Bluff/3rd Street Historic District",
            "lat": "41.256642",
            "lon": "-95.847765",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-willowbluff3rdsthistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Willow/Bluff/3rd Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.256642,-95.847765\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This district features well-preserved and stylish late nineteenth- and early twentieth-century residential architecture constructed between 1855 and 1930. It includes homes designed by several notable architects including William W. Boyington, Edward P. Schoentgen, Bell and Berlinghoff, Bell and Kent, and Anderson and Spooner. This area is an example of a residential neighborhood built by prosperous, second generation merchants, railroad and real estate financiers, and professionals, including some notable female professionals. Many prominent Council Bluffs citizens lived in this neighborhood, the most famous being General Grennville M. Dodge. The district was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWorth St., High School Ave., Clark Ave., E. Side Bluff St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chevra B&#039;nai Yesroel Synagogue",
            "lat": "41.262840",
            "lon": "-95.852415",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-chevrabnaiyesrodsynagogue.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chevra B&#039;nai Yesroel Synagogue</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.262840,-95.852415\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This synagogue one of a diminishing number of historic buildings associated with the Jewish religious experience in the state of Iowa and the Council Bluffs-Omaha region. The current building was designed by Council Bluffs architect J. Chris Jensen and completed in 1931, after a fire had destroyed the original synagogue the previous year. The building&#039;s design incorporates interesting architectural elements, such as classical entablature and galvanized iron cornice at the top of the building, and inset panels of the Star of David and the Ten Commandments inscribed in Hebrew above the doors. It was added to the National Register of Historic Places in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t618 Mynster St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Historic General Dodge House",
            "lat": "41.254762",
            "lon": "-95.848036",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-historicgeneraldodgehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Historic General Dodge House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.254762,-95.848036\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Grenville M. Dodge was the chief engineer of the Union Pacific Railroad from 1866-1869. He is best known for is role in the completion of the first transcontinental railroad in 1869. He moved into this Council Bluffs home that very year and lived there until his death in 1916. The house became a National Historic Landmark in 1961 and was added to the National Register of Historic Places in 1999. The Dodge House is now open for public tours as a historic house museum, along with the August Beresheim House next door.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t605 S 3rd St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.322.2406</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.dodgehouse.org/home.asp\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "August Beresheim House",
            "lat": "41.254668",
            "lon": "-95.847933",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-historymuseum-nhr-augustberesheimhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">August Beresheim House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.254668,-95.847933\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The August Beresheim House was built in 1899 as a spacious home for a prominent Council Bluffs family. Beresheim was a banker and state legislator, as well as a close associate of General Dodge, who lived next door. The house was added to the National Register of Historic Places in 1976 and is now included on tours of the Dodge House.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t621 S 3rd St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Bayliss Park and Veterans Plaza",
            "lat": "41.259201",
            "lon": "-95.851690",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-monument-baylissparkandveteransplaza.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bayliss Park and Veterans Plaza</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.259201,-95.851690\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Bayliss Park and Veterans Plaza is a central park area that is used for multiple purposes. The plaza features a large, unique fountain area, a permanent raised stage with a canopy that is used as a performance area, and the newly renovated Veterans Plaza, which honors veterans from the Civil War to today.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st Ave. and Pearl St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.328.4650</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Swedish Evangelical Lutheran Church &amp; Cemetery",
            "lat": "41.105431",
            "lon": "-91.545336",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-swedishevangelicallutheranchurch.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Swedish Evangelical Lutheran Church &amp; Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.105431,-91.545336\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1928, the Swedish Evangelical Lutheran Church is the cultural center of Swedish heritage in Swedesburg and Wayne Township. It is also a good example of the popular Gothic Revival style as executed by Burlington architect W.F. Weibley. It was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1897 140th St.<br />Swedesburg, IA 52652<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jean and Inez (Lewis) Bregant Residence",
            "lat": "41.256234",
            "lon": "-95.849579",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-jeanainezbregentresidence.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jean and Inez (Lewis) Bregant Residence</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.256234,-95.849579\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Jean and Inez Bregant were little people who gained national fame performing in travelling vaudeville shows. They met in 1904 when they both happened to be performing on the same program at Coney Island. When they retired from the stage in 1912, the couple returned to Council Bluffs where they lived next door to Inez&#039;s parents and worked as salespeople for a local candle company. The Bregants&#039; home in Council Bluffs was built in 1912 and added to the National Register of Historic Places in 2013. This unique house was built and furnished to accommodate the couple&#039;s needs. Doorways and ceilings were a standard height, but the countertops, kitchen appliances, and bathroom fixtures were all scaled down.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t517 S 4th St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Monona County Courthouse",
            "lat": "42.027030",
            "lon": "-96.092401",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monona-nhr-mononacountycourthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Monona County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.027030,-96.092401\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The courthouse is locally significant as the historical focus of county government, and of the political power and prestige derived from the community’s status as the county seat. As center of county government, an Iowa town was reasonably assured of economic and population growth, and a prominent role in local social and political life. The county courthouse represents a significant public investment in a structure built not simply for utilitarian purposes, but also as a monument associated with the historical importance of county organization and development. It was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t610 Iowa Ave.<br />Onawa, IA 51040<br />Monona County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Frontier Heritage Library",
            "lat": "41.254772",
            "lon": "-95.850454",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Frontier Heritage Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.254772,-95.850454\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pottawattamie County Genealogical Society was organized in 1992 to assist family historians and genealogists in their research and to preserve the history and heritage of Pottawattamie County. The society owns and operates the Frontier Heritage Library, which has extensive resources including: Pottawattamie County marriage records from 1848 through 1940, nearly complete death records from 1880 though 1919, an index to obituaries published in the Council Bluffs Nonpareil from 1857 to the present, thousands of wills of early residents of Pottawattamie County and many original probate records.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t622 Fourth St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.325.9368</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.rootsweb.ancestry.com/~iapcgs/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Onawa Public Library",
            "lat": "42.026379",
            "lon": "-96.093493",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monona-nhr-onawapubliclibrary.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Onawa Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.026379,-96.093493\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Supported in 1907 by a $10,000 grant from philanthropist Andrew Carnegie and an additional $20,000 from Judge Addison Oliver, the Onawa Public Library is considered one of the best examples of Prairie School Architecture. The building retains its original architectural features that were influenced by legendary Chicago architect Louis Sullivan. The two-story brick structure built on Sioux Falls granite was dedicated on Oct. 22, 1909 and listed on the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t707 Iowa Ave.<br />Onawa, IA 51040<br />Monona County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Martin Hughes House",
            "lat": "41.253143",
            "lon": "-95.848198",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-martinhugheshouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Martin Hughes House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.253143,-95.848198\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Martin Hughes House was built in 1887-88 and designed by S.E. Maxon. It represents an eclectic combination of the Queen Anne and Gothic architectural models along with some Stick and Neo-Classical influences. It has undergone minimal alteration and features a rich array of decorative art glass and terra cotta. The house&#039;s highly decorative interior remains well-preserved. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t903 S 3rd St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "YMCA Building",
            "lat": "41.260359",
            "lon": "-95.853692",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-ymcabuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">YMCA Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.260359,-95.853692\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Council Bluffs YMCA building was built by Frederic E. Cox in 1908-9. An addition for a pool and gymnasium was built on in 1931 by Jocheis Jensen. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t628 1st Ave.<br />Council Bluffs, IA 51501<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Mini-Wakan State Park",
            "lat": "43.497864",
            "lon": "-95.103304",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-nhr-miniwakanstatepark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mini-Wakan State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.497864,-95.103304\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civilian Conservation Corps (CCC) was a public relief program to make work for unemployed, unmarried man ages 18-25 during the New Deal, from 1933-1942. Men in the CCC worked in camps set up across the nation, and many of the camps were in Iowa State Parks. Many state park facilities date to the CCC. The buildings, structures, and objects reflect the effort to blend park amenities into the natural landscape in their material, design, workmanship, and immediate setting and reflect common types developed by the National Park Service for park construction. The facilities at Mini-Wakan State Park were built using local and regional stone. The park is best noted for its rustic shelter with a unique fireplace arrangement. This site was added to the national Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t24490 100th St.<br />Spirit Lake, IA 51360<br />Dickinson County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://miniwakan.theslpa.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles E. Hult Residence, Summer Kitchen and Wood Shed",
            "lat": "41.104940",
            "lon": "-91.544284",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-charleshultresidence.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles E. Hult Residence, Summer Kitchen and Wood Shed</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.104940,-91.544284\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Charles E. Hult residence, summer kitchen, and woodshed, built in 1867, are the earliest structures in Swedesburg directly related to its Swedish Heritage. It is also representative of a common residential type of architecture from the late 19th century often called &quot;Folk Victorian.&quot; It was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1904 140th St.<br />Swedesburg, IA 52652<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John Hultquist House",
            "lat": "41.104485",
            "lon": "-91.545659",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-johnhultquisthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Hultquist House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.104485,-91.545659\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hultquist residence and barn, built in 1918, are directly related to the Swedish Heritage of Wayne township. John Hultquist was born in Sweden in 1858 and his was the first Swedish family to emigrate to the U.S., arriving in 1880. The house was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t105 Park St.<br />Swedesburg, IA 52652<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Red Ball Garage",
            "lat": "41.105345",
            "lon": "-91.544483",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-redballgarage.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Red Ball Garage</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.105345,-91.544483\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Red Ball Garage was built in 1929 to meet the growing needs of the public in light of the rise of automotive transportation. It also illustrates the role transportation played in the development of the community, making new types of commercial buildings like auto garages necessary additions to the town. It was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1901 140th St.<br />Swedesburg, IA 52652<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Swedish American Museum and Historical Society",
            "lat": "41.104530",
            "lon": "-91.544948",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-historymuseum-swedishamericanmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Swedish American Museum and Historical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.104530,-91.544948\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Swedish-American Museum and Historical Society is dedicated to the Swedish settlers that founded the Swedesburg area. The museum is housed in the former Farmers Union Exchange (FUE) building, built in 1928 by second generation Swedish farmers. The FUE served Swedesburg and the surrounding area as a general store and gathering place for the settlers in the area. The building is typical of stores, which once dotted the Iowa countryside. Other buildings on the museum ground include the Bergh Tinsmith Shop and home, the Brown Shoe Company and the S.L. White Grocery Store.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t107 James Ave.<br />Swedesburg, IA 52652<br />Henry County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.254.2317</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Swedesburg Historic Commercial District",
            "lat": "41.104450",
            "lon": "-91.545195",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-swedesburgcommercialhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Swedesburg Historic Commercial District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.104450,-91.545195\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Swedesburg Historic Commercial District illustrates the commercial development of the Swedish Settlement. It represents typical small town commercial design, with a fine collection of vernacular commercial buildings that retain a high degree of historical integrity. It was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t107 Hwy. 218<br />Swedesburg, IA 52652<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Haymarket Commercial Historic District",
            "lat": "41.256378",
            "lon": "-95.850785",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-haymarketcommercialhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Haymarket Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.256378,-95.850785\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Haymarket Commercial Historic District was added to the National Register of Historic Places on April 11, 1985. Located in Council Bluffs between Main and Pearl Streets, this district encompasses the area’s largest collection of commercial retail buildings from the 1870s-‘90s and represents a significant aspect of the city’s architectural heritage.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Main St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Historic Pottawattamie County Squirrel Cage Jail",
            "lat": "41.257799",
            "lon": "-95.851958",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-historymuseum-historicsquirrelcagejail.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Historic Pottawattamie County Squirrel Cage Jail</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.257799,-95.851958\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Squirrel Cage Jail, built in 1885 was one of 18 revolving (&quot;squirrel cage&quot;) jails constructed in the nation. It has three floors of revolving pie-shaped cells, and is the only three-story squirrel cage jail ever built. The design was patented in 1881, as a jail where prisoners could be controlled with maximum security and minimum jailer attention. The jail was in continuous use until 1969, was added to the National Register of Historic Places in 1972, and is now a museum open to the public.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t226 Pearl St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.323.2509</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thehistoricalsociety.org/jail.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Union Pacific Railroad Museum",
            "lat": "41.258161",
            "lon": "-95.851429",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-historymuseum-unionpacificrailroadmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Union Pacific Railroad Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.258161,-95.851429\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Union Pacific Railroad Museum houses one of the oldest corporate collections in the nation. It includes artifacts, photographs, and documents that trace the development of the transcontinental railroad and the American West. They have exhibits on the Transcontinental Railroad, the rise of railroad travel in the US, and the life of President Lincoln, and his role in the development of railroads. The museum is located in the former Council Bluffs Carnegie Library, which was built in 1905 and added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 Pearl St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.uprrmuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Reverend Little&#039;s Young Ladies Seminary",
            "lat": "41.255885",
            "lon": "-95.852678",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-reverendlittleladiesseminary.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Reverend Little&#039;s Young Ladies Seminary</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.255885,-95.852678\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>From 1867 to 1870, Reverend George Little operated this private school for young women, but was forced to close it when financial support fell through. After the school closed, the building housed James F. Evans, one of the city&#039;s leading bankers and financiers in the late 19th century. In the early 1900s, it was converted to apartments. The building was designed by A.G. Bassett in the Italianate style and was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t541 6th Ave.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Thomas Jefferis House",
            "lat": "41.255886",
            "lon": "-95.852031",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-thomasjeffrieshouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thomas Jefferis House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.255886,-95.852031\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Thomas Jefferis House was built in 1869 and added to the National Register of Historic Places in 1979. It is a fine and highly characteristic example of the bracketed Italianate style of residential architecture. Thomas Jefferis was an early settler of Council Bluffs and worked as a homeopathic physician.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t523 6th Ave.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Onawa I.O.O.F. Opera House",
            "lat": "42.025835",
            "lon": "-96.096957",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monona-nhr-onawaioofoperahouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Onawa I.O.O.F. Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.025835,-96.096957\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Onawa I.O.O.F. Opera House is locally significant as the building most closely associated with live-stage theater in Onawa. Between the late 1880s and the mid-1920s Onawa boasted a strong tradition of live-stage entertainment, an important facet of the town&#039;s social life. The Opera House&#039;s period of significance begins with its construction in 1900 and ends with the devastation of the auditorium by fire in 1926. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1023 10th Ave.<br />Onawa, IA 51040<br />Monona County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "South 8th Street Historic District",
            "lat": "41.259142",
            "lon": "-95.856086",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">South 8th Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.259142,-95.856086\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The South 8th Street Historic District began in the late 19th century as a neighborhood popular with Council Bluffs’ emergent upper-class business figures. The area was most intensely developed from 1875-1890, when most of the district’s homes were built. The city’s population was exploding -- from 2,000 in 1860 to more than 18,000 by 1880 -- as a result of the city’s expected status as the eastern terminus of the Transcontinental Railroad. Unfortunately for the locals, the Union Pacific Railroad set its sights across the river in Omaha. \r\n\r\nBy the 20th century, many middle-class professionals moved into the neighborhood, and several multi-family apartment buildings had popped up by the 1920s. \r\n\r\nThe neighborhood features many Queen Anne homes, as well as examples of houses built in the Italianate, Victorian Gothic and Second Empires styles.\r\n\r\nThe historic district is bounded by Seventh Avenue on the south, South Seventh Street on the east, First Avenue on the north and South 10th Street on the west. It is primarily centered on South Eighth Street. It was added to the National Register of Historic Places on June 25, 2020.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS 8th St.<br />Council Bluffs, IA 51501<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Newell A. Whiting House",
            "lat": "42.027066",
            "lon": "-96.099070",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mononanhr-newellwhitinghouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Newell A. Whiting House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.027066,-96.099070\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Newell A. Whiting house, constructed between 1880 and 1882, is the best preserved example of the Italianate style in Onawa and one of the best in Monona County. The property is significant for, in this case, being virtually a textbook example of the Late Victorian/Italianate style. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1106 Iowa Ave<br />Onawa, IA 51040<br />Monona County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John J. and Agnes Shea House",
            "lat": "41.258192",
            "lon": "-95.855710",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-johnagnessheahouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John J. and Agnes Shea House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.258192,-95.855710\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Shea House is an example of the Queen Anne style of architecture built in 1887. It displays the large scale, exuberant form, and elaborate detail characteristic of the style. This house is the only brick residence in the Queen Anne style in Council Bluffs, and features a three-story round turret with a witch&#039;s cap, a one-story round extension to complement the turret, and several other unique architectural details. It was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t309 S 8th St.<br />Council Bluffs, IA 51501<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "McCormick Harvesting Machine Company",
            "lat": "41.252200",
            "lon": "-95.852740",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-mccormickharvestingco.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McCormick Harvesting Machine Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.252200,-95.852740\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126mi.</span></div>\n\t\t</div>\n\n\t\t<p>The McCormick Harvesting Machine Company Building served first as a branch house and later as a transfer house for the sale and distribution of agricultural implements. It was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1001 S 6th St.<br />Council Bluffs, IA 51501<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "O. P. Wickham House",
            "lat": "41.255444",
            "lon": "-95.855053",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-opwickhamhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">O. P. Wickham House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.255444,-95.855053\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126mi.</span></div>\n\t\t</div>\n\n\t\t<p>The O.P. Wickham House was built in 1888 by the Wickham Brothers, Owen P. (1845-1927) and James (1837-1919). Both were brick and stone masons and natives of Ireland, having come to the United States with their parents and siblings in the 1850s. By the 1860s, they had established themselves as contractors in Council Bluffs. They built homes, banks, commercial blocks and the now demolished county courthouse. Owen’s home, the O.P. Wickham House, is a nicely kept and well-preserved example of a large suburban residence in the Queen Anne style. Like many Queen Anne houses constructed of masonry, it presents an overall restrained and dignified appearance with surprising touches of flashy detail. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t616 S 7th St.<br />Council Bluffs, IA 51501<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Pioneer Implement Company",
            "lat": "41.252235",
            "lon": "-95.852028",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-nhr-pioneerimplement.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pioneer Implement Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.252235,-95.852028\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pioneer Implement Company was built in the 1890s and became one of the leading distributors agricultural implements in Council Bluffs and the surrounding areas. The company was led by Eli L. Shugart, one of the most successful pioneers in the business. It was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 S Main St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Kiwanis Museum Complex",
            "lat": "42.037678",
            "lon": "-96.098861",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monona-historymuseum-kiwanismuseumcomplex.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kiwanis Museum Complex</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.037678,-96.098861\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kiwanis Museum Complex features three distinct museums: the Monona County Veterans Museum, the Monona County Historical Museum and the Kiwanis Complex of Historic Buildings. The veterans museum honors more than 6,000 county veterans from the Mexican War through the present. On a lighter note, the historical museum boasts &quot;The World&#039;s Largest Known Display of Hand-Carved Chains,&quot; plus materials from Onawa native Christian Nelson, who invented the Eskimo Pie. The Kiwanis Complex of Historic Buildings includes a restored 19th century railroad depot, the Franklin No. 7 (Beedle) School, a country church, a log cabin, a firehouse, a jail and a blacksmith shop.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t203 N 12th St.<br />Onawa, IA 51040<br />Monona County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.433.1259</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Iowa Theater, Onawa",
            "lat": "42.027446",
            "lon": "-96.097602",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monona-historictheater-iowatheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Theater, Onawa</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.027446,-96.097602\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126mi.</span></div>\n\t\t</div>\n\n\t\t<p>Onawa’s historic theater, the Iowa Theater, was built in 1938. It is an art deco theater, built as part of the Modern Movement. As of 2016, the Iowa Theater has been upgraded to digital projection and was in operation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t920 10th St.<br />Onawa, IA 51040<br />Monona County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "RailsWest Railroad Museum",
            "lat": "41.247240",
            "lon": "-95.852058",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-historymuseum-nhr-railswestmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">RailsWest Railroad Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.247240,-95.852058\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The museum is housed inside a Chicago, Rock Island, and Pacific Railroad Passenger Depot that was once a daily stop for a number of railway services. The railroad industry played a key role in the history of Council Bluffs, but this depot, built in 1899, is the last extant passenger depot in the city. The museum features exhibits on the eight different railroads that served Council Bluffs, and on the Railway Mail Service. Outside the depot, visitors can also see historic train cars, including locomotive engines, cabooses, a lounge car, a boxcar, and a railway post office car. The depot was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1512 S Main St.<br />Council Bluffs, IA 51503<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.323.5182</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thehistoricalsociety.org/depot.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "underground-railroad.png",
            "title": "West Liberty Depot Grounds",
            "lat": "41.571266",
            "lon": "-91.267534",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/underground-railroad.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Liberty Depot Grounds</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.571266,-91.267534\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>West Liberty was located on the Chicago &amp; Rock Island Railroad, which had only recently been extended across the Mississippi River into Iowa. In the late 1850s, the railroad became an important form of transportation for freedom seekers travelling to Canada or the eastern states after making the long journey across Iowa. The West Liberty Depot and Grounds have been restored and now display artifacts and memorabilia from the town’s railroad history. A sign commemorating West Liberty’s role in the antislavery movement is located here as well. This is stop #15 on the Freedom Trail tour: On the evening of March 9, 1859, John Brown and his group arrived in West Liberty. They rested overnight at nearby Keith’s Mill. Iowa abolitionists William Penn Clarke and Josiah B. Grinnell had made arrangements for Brown’s party to depart by train the following morning. An engineer operating the first morning’s eastbound train from Iowa City dropped off an empty boxcar near the mill. With Brown, his men, and the escaped men, women, and children onboard, the boxcar was attached between the engine and express car of the next Chicago-bound train and departed West Liberty.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t405 Elm St. N<br />West Liberty, IA 52776<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Halverson-Huinker Barn",
            "lat": "43.239923",
            "lon": "-91.785354",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Halverson-Huinker Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.239923,-91.785354\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Halverson-Huinker Barn was built about 1875. The barn was built out of stone with walls that are three feet thick.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2091 Middle Ossian Rd.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "S. S. Farwell House",
            "lat": "42.239687",
            "lon": "-91.192953",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">S. S. Farwell House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.239687,-91.192953\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Farwell House represents exemplifies the compatibility of 19th and early 20th century architecture. The character of this house was created in two parts - the original construction (1867-1868), and the renovation about 1909. Farwell was elected captain in the 31st Iowa Infantry and served at Chickasaw Bayor, Vicksburg and Mission Ridge. He was promoted to major in May 1865. He served two terms in the State Senate, appointed Internal Revenue as Assessor (1869-1873) and Collector (1875) second district; president of county agriculture and mechanic association and founder of the Monticello State Bank. The S.S. Farwell House was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 N Chestnut St.<br />Monticello, IA 52310<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Odd Fellows Hall",
            "lat": "42.237889",
            "lon": "-91.191087",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Odd Fellows Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.237889,-91.191087\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Odd Fellows Hall, built in 1871, is a well preserved example of a late 19th century commercial Italianate building. Monticello Lodge No. 117 IOOF organized on March 16, 1858. After suffering a $200 loss at their rented quarters on First Street, the Odd Fellows sought to build their own structure. The lot was platted in 1864 and sold for $500. At its high point the IOOF numbered 121 members. The Odd Fellows Hall was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t203 W 1st St.<br />Monticello, IA 52310<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Dry Run Bridge",
            "lat": "42.755957",
            "lon": "-91.370831",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dry Run Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.755957,-91.370831\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dry Run Bridge was built in 1898 by A.C. Boyle and A.J. Nading. Dry Run Bridge is the earliest documented steel stringer bridge still functioning. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tJay Dr.<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George H. and Loretta Ward House",
            "lat": "41.575293",
            "lon": "-91.263694",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George H. and Loretta Ward House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.575293,-91.263694\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ward house is one of the best preserved examples of Queen Anne influenced residential design in West Liberty and demonstrates the design and construction skills of Will A. Warren, the town&#039;s leading contractor in the late 19th and early 20th centuries. Completed in 1896, the house bears a striking resemblance to the mail order designs produced by George F. Barber and Company of Knoxville, TN. It was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t719 N Calhoun St.<br />West Liberty, IA 52776<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chicago, Milwaukee, St. Paul and Pacific Railroad: Hornick Depot",
            "lat": "42.228555",
            "lon": "-96.097562",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-chicagomilwaukeestpaulhornickdepot.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago, Milwaukee, St. Paul and Pacific Railroad: Hornick Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.228555,-96.097562\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The combination depot in Hornick is significant on the statewide level as an excellent example of a wooden two-story depot built by the Chicago, Milwaukee, St. Paul and Pacific Rail Company during the most expansive years of railroading in Iowa. It is one of few remaining two-story stations designed by the Milwaukee in the state, and is the best-preserved depot of that type located on what was once the railroad&#039;s central Iowa main line. Hornick was platted by the Milwaukee Railroad&#039;s land company and the depot is a manifestation of the railroad&#039;s pivotal role in the development of the town. The Chicago, Milwaukee, St. Paul, and Pacific Combination Depot - Hornick was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Hornick, IA 51026<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Boeding Stone Milk House",
            "lat": "43.313866",
            "lon": "-91.870239",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Boeding Stone Milk House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.313866,-91.870239\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Boeding Stone Milk House has received the Award of Distinction among barns featured on the annual Iowa Barn Foundation Tour. A milk house is a small structure in the range of 10 by 13 feet that was used to store and cool milk before it was transported to market. The structure also isolated the milk from the smells and dust of the barn. Milk houses such as this one typically abutted, adjoined or were placed near the barn and made of stone and concrete.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2390 Madison Rd.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Monticello Heritage and Cultural Center (St. Luke&#039;s Methodist Church)",
            "lat": "42.239564",
            "lon": "-91.188757",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jones-nhr-stlukesmethodist-monticelloheritage-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Monticello Heritage and Cultural Center (St. Luke&#039;s Methodist Church)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.239564,-91.188757\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Monticello Heritage and Cultural Center is in the former St. Luke&#039;s Methodist Church. The church was designed by Cram and Ferguson, Architects, of Boston, Massachusetts, one of the nation&#039;s leading firms for ecclesiastical design during the late 19th and 20th Centuries. The building calls attention to late Gothic Revival architecture and was added to the National Register of Historic Places in 2002. The church turned museum invites you to discover the history of Monticello through photographs, artifacts and rotating displays, all while enjoying the historic venue.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t211 N Sycamore St.<br />Monticello, IA 52310<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Strand Theatre",
            "lat": "41.570124",
            "lon": "-91.262735",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/muscatine-theater-strandtheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Strand Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.570124,-91.262735\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1910 and called the West Liberty Opera House, the first floor of the building was used for theatrical and vaudeville performances and the second floor was used as a meeting place for the Knights of Pythias and the Pythian Sisters. The first performance held at the opera house was a show called &quot;Nancy,&quot; and tickets were sold for $1.50. In 1921, ownership changed hands and the theater came to be known as the New Strand. In 2008, the theater was fully restored by interest from the community.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t111 3rd St. E<br />West Liberty, IA 52776<br />Muscatine County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.627.2014</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.newstrand.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "West Liberty Commercial Historic District",
            "lat": "41.570055",
            "lon": "-91.263541",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Liberty Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.570055,-91.263541\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Listed on the National Historic Register in 2002, the West Liberty Commercial Historic District, bounded by Fourth Street, Clay Street, Spencer Street and the railroad tracks, features an assortment of historic sites located in Muscatine County, including the Pine Creek Grist Mill and the Chicago, Rock Island and Pacific Railroad Depot. The buildings that make up the district were constructed between 1867 and 1948 and reflect the community&#039;s commercial development through this period.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCalhoun St.<br />West Liberty, IA 52776<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "War Memorial",
            "lat": "42.237737",
            "lon": "-91.187595",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">War Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.237737,-91.187595\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The War Memorial at Monticello is near the public library. It is made up of plaques with battle scenes from World War I, World War II, the Korean War and the Vietnam War. It was dedicated November 11, 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Grand St.<br />Monticello, IA 52310<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "George and Ocie Cooper House",
            "lat": "41.254214",
            "lon": "-95.871694",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064aa090af4185a125bb.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George and Ocie Cooper House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.254214,-95.871694\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Civic leaders George and Ocie Cooper lived in this home from 1921 through the mid-1960s. Between the 1940s and 1960s, the Coopers were heavily involved with the National Association for the Advancement of Colored People (NAACP) both at the local and state levels.\r\n\r\nIn the 1930s, the local NAACP chapter addressed issues related to segregation at the city-owned bathing beach and racial coding of voter registrations. By the mid-1930s, the chapter had become inactive. In 1942, George Cooper helped to reestablish a local NAACP chapter, becoming its first president. In 1944, the chapter received its official charter from the National NAACP office and had thirty-seven members. By the next year, seventy-eight individuals paid dues. Cooper served as chapter president until 1949 when he was appointed head of the local chapter’s legal redress committee. George was reelected as president in 1951, 1952, and again in 1963. In 1961 he was elected president of the Iowa NAACP, and in 1962, Ocie Cooper was installed as the state’s second vice president. As an indication of George Cooper’s statewide reputation, Governor Norman Erbe appointed him to the Governor’s Civil Rights Commission in 1961.\r\n\r\nThe Coopers civic activity extended beyond the NAACP. George participated in an advisory committee to establish a Junior Sheriff Association in Pottawattamie County and advocated for street paving in Council Bluffs. Ocie was involved in the Twentieth Century Art and Culture Club. Together, they were active members of the Bethel AME Church.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1813 8th Ave.<br />Council Bluffs, IA 51501<br />Pottawattamie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Garretson Outlet Bridge",
            "lat": "42.213027",
            "lon": "-96.111674",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monona-nhr-garretsonoutletbridge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Garretson Outlet Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.213027,-96.111674\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bridge is a polygonal Warren pony truss. One of only a handful of such structures, it represents riveted truss construction. It was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. K64<br />Whiting, IA 51063<br />Monona County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "DeSoto National Wildlife Refuge and Steamboat Bertrand",
            "lat": "41.548426",
            "lon": "-96.028087",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-historymuseum-desotonationalwildliferefugesteamboatbertrand.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">DeSoto National Wildlife Refuge and Steamboat Bertrand</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.548426,-96.028087\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>DeSoto National Wildlife Refuge, located near Missouri Valley, Iowa, is home to a premier archeological collection of over 250,000 artifacts excavated from the buried wreck of the Steamboat Bertrand. On April 1, 1865, the sternwheeler hit a submerged log, thirty miles north of Omaha, Nebraska. Bound for the newly discovered goldfields of Montana from St. Louis, Missouri, the Bertrand sank into the depths of the Missouri River; and after initial salvage efforts, her cargo was written off as complete loss. The cargo was finally recovered in 1968 by treasure hunters of the time. The Bertrand&#039;s cargo was remarkably well preserved and the refuge&#039;s collection is a unique time capsule for researchers and visitors interested in America&#039;s 19th century material culture.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1434 316th Ln.<br />Missouri Valley, IA 51555<br />Harrison County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.388.4808</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://fws.gov/midwest/desoto\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Samuel Nichols House",
            "lat": "41.478680",
            "lon": "-91.283044",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Samuel Nichols House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.478680,-91.283044\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built between 1869-1870, the Nichols House is a representation of early Iowa farmhouses, the next step beyond the log dwellings built when the settlers initially arrived. It is perhaps not stylistically impressive, but its vernacular character is typical of its time and place. It is made of brick and is still owned by the descendants of Samuel Nichols. It was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1812 Elder Ave.<br />Nichols, IA 52766<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Davis Oriole Earthlodge Site",
            "lat": "41.048389",
            "lon": "-95.734268",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mills-nhl-davisorioleearthlodgesite.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Davis Oriole Earthlodge Site</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.048389,-95.734268\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This reconstructed earth lodge is typical of the semi-subterranean lodges inhabited by Native Americans living on the east and west sides of the Missouri River basin between 1050-1300 A.D. Over the years, more than 130 lodges have been partially or completely excavated in the Glenwood region. An earth lodge is characterized by its square shape with rounded corners, central posts down the center, wall posts along the interior edge and a covering of earth.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 E Sharp St.<br />Glenwood, IA 51534<br />Mills County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "J. C. Stemmer House",
            "lat": "42.853701",
            "lon": "-91.407927",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-jcstemmerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J. C. Stemmer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.853701,-91.407927\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built in 1889 by J.C. Stemmer, who lived with his family in a house adjacent to the property. The brick came from Lee&#039;s Brick Yard located on the Schulte farm a few miles from Elkader. The carpenter who built the house was Henry Benke, a man born in Hamburg, Germany, and an uncle of Mrs. Stemmer. A daughter, Lina, and her husband William Reimer bought the house in 1915. It was sold to George Take in 1923, and his daughter and her husband inherited the house in 1961. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t113 Oak Ave. NW<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Schmidt House",
            "lat": "42.852990",
            "lon": "-91.407358",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-schmidthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Schmidt House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.852990,-91.407358\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Schmidt House was built for the Schmidt family when they immigrated to America with their parents in 1865. They came from Germany. A brewery was built in 1866, and Wolfgang and John were successful local brewers until state prohibition took effect in 1886. The brewery was eventually torn down, but the house remains. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 Oak Ave. NW<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Mills County Historical Society and Museum",
            "lat": "41.046585",
            "lon": "-95.732889",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mills-historymuseum-millscountyhistoricalsocietymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mills County Historical Society and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.046585,-95.732889\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mills County Historical Museum is located at Glenwood Lake Park and has several collections and artifacts of interest to visitors of all ages. The main museum is housed in the former Armory Building and includes exhibits about Mills County history and southwestern Iowa culture. The complex includes a Burlington Northern rail car, the West Liberty No. 2 School, Henderson City Jail, Gipe and Bass Barn a recreation of an early general store.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tGlenwood Lake Park<br />Glenwood, IA 51534<br />Mills County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.527.9221</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rialto Price House",
            "lat": "42.854489",
            "lon": "-91.407158",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-rialtopricehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rialto Price House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.854489,-91.407158\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rialto Price House was built in 1876 with buff brick decoration, which was popular in northeast Iowa. Price was a prominent attorney in Elkader. The house still stands and remains a private residence. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 NW Cedar St.<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Timothy Davis House",
            "lat": "42.856501",
            "lon": "-91.408528",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-timothydavishouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Timothy Davis House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.856501,-91.408528\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>It was built between 1845 and 1850. Davis built the house in his last years and left it to his son, L.V. Davis, after his death. In 1960, William Witt bought the home and remodeled it for funeral home uses. It was known as the Witt Funeral Home and was later the Leonard Funeral Home. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t405 1st St. NW<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Ferrel House Museum",
            "lat": "40.872919",
            "lon": "-95.568926",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont-historymuseum-ferrelhousemuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ferrel House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.872919,-95.568926\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ferrel House Museum was the home of Anson Rood, one of the town&#039;s founders. Built in 1871, the Rood family occupied the home until 1907. The home was later purchased by the Travelute family and then the Thelma Ferrel, who in 1994, willed the home, heirlooms, wash house and carriage house to the Fremont County Historical Society. Tours are available during open house events or by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t302 Randolph St.<br />Randolph, IA 51649<br />Fremont County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.625.4411</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Elkader Cinema",
            "lat": "42.854830",
            "lon": "-91.404536",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-theater-elkadertheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Elkader Cinema</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.854830,-91.404536\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Elkader Theater is in a building dating to 1901. The building was opened as a theatre on September 25, 1941. The Elkader Theater could seat 400 people and Western Electric&#039;s Microphone sound equipment. The theater remained in operation until 1996. The building was remodeled to its current appearance in 2002-2003 and operates as a single screen theatre.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t108 N Main St.<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Elkader Downtown Historic District",
            "lat": "42.854912",
            "lon": "-91.404828",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-elkaderdowntownhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Elkader Downtown Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.854912,-91.404828\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction on the Elkader Downtown Historic District began in 1846. Several generations of buildings were constructed along Main Street, First Street NW, and intersecting streets between Spruce Street and Mulberry Street forming the downtown district. These blocks highlight the community planning and building efforts of several generations of property owners, builders, architects and civic leaders. The historic nature of the buildings and the unique shopping and dining experiences make downtown Elkader a destination. The Elkader Downtown Historic District was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St.<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.elkader-iowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Washington Prairie Methodist Church and Cemetery",
            "lat": "43.235810",
            "lon": "-91.743515",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-nhr-washingtonprairiemethodistchurchcemetery-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Washington Prairie Methodist Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.235810,-91.743515\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Washington Prairie Methodist Church was built of limestone in about 1865. Ole Peter Petersen first established the congregation and later returned to his native Norway, and he established a Methodist congregation in that country. It was added to the National Register of Historic Places on Jan. 29, 1980.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2059 CO Rd W42<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Joseph Church and Parish Hall",
            "lat": "42.851680",
            "lon": "-91.403781",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-stjosephhallandparish.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Joseph Church and Parish Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.851680,-91.403781\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The combination of these two church buildings illustrates the changing fortunes of a small town parish. The first church is simple and basic because the pioneers did not have the means or the disposition for elaborate grandeur in their religious structures. In contrast, the congregation of the later 1800s had the wealth to commission a Victorian Gothic church similar to the construction style of northern European cathedrals, and their choice of design reflected the changing architectural enthusiasms of the age. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t330 1st St. SW<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Elkader Opera House",
            "lat": "42.855475",
            "lon": "-91.405667",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-elkaderoperahouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Elkader Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.855475,-91.405667\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Elkader Opera House was completed in November 1903, replacing the old Turner Opera House which was destroyed by fire. Four days after the Turner House fire, the community raised $10,000 for the construction of the Elkader Opera House. On November 27, 1903 the new building opened with a performance of &quot;The Governor&#039;s Son.&quot; Special trains ran from McGregor and other towns along the Milwaukee rail line to bring the audience to the show. Memorabilia from that celebrated event decorate the walls of the opera house. Productions on the Chicago-Minneapolis circuit were a regular part of its early offerings. Over the years the Opera House has served as a club and community room, dance hall, roller rink, library, fire station, economic development office Main Street Elkader office, city hall and as the Abdel-Kader Sister City Museum. The Elkader Opera House has maintained a central role in the social and civic life of Elkader. It was added to the National Register of Historic Places in 1976. In late 2004 the Opera House underwent an intensive restoration process restoring the historic building to it’s original grandeur.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t207 N Main St.<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.elkaderoperahouse.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Elkader Keystone Bridge",
            "lat": "42.854921",
            "lon": "-91.403722",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-bridge-elkaderkeystonebridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Elkader Keystone Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.854921,-91.403722\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Elkader Keystone Bridge was built in 1889, and is a twin arch keystone bridge constructed of limestone. It was designed by architect, M. Tschirgi, who also designed the truss bridge in Dubuque. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBridge St.<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Carter House Museum",
            "lat": "42.855387",
            "lon": "-91.402445",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-historymuseum-carterhousemuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carter House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.855387,-91.402445\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Carter House is a double house that was built in 1855. Pioneer brothers Henry and Ernest Victor Carter built the home for their families - one family on each side of the house. The home has two front doors, and nine rooms on each side of the thick middle wall. For 30 years the Carter Families lived in the home. During that time, Ernest served as a major in the Union Army and Henry and his sons were bankers. The Carter House is a Neoclassic Greek revival mansion with 18 rooms. The home has many exhibits that show what life was like in Iowa in the 19th and 20th centuries. There is furniture and clothing on exhibit. An annex was added for additional exhibits, including military uniforms, primitive farm tools, early fire-fighting equipment, and a display of 19th century drug store supplies. The Carter House was added to the National Register of Historic Places in 1976.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 High St. SE<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://carterhousemuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Clayton County Courthouse",
            "lat": "42.855583",
            "lon": "-91.403423",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-claytoncocourthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clayton County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.855583,-91.403423\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clayton County Courthouse located on the banks of the Turkey River overlooking the town of Elkader and the Keystone Bridge. It is a two-story building and constructed in 1867-68. This courthouse is significant for its style and workmanship and because it has been in use 100 years. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t111 High St. NE<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Rex Theatre",
            "lat": "41.047570",
            "lon": "-95.742497",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mills-theater-rextheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rex Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.047570,-95.742497\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rex Theatre was originally built as an opera house in 1893 at a cost of $12,000. The theater opened to the public on December 28, 1893 with a production by the Chicago-based Carleton Opera Company, consisting of 40 persons and an orchestra. In 1896, D.L. Heinaheimer sold the property to the Trustees of the I.O.O.F. Between 1909 and 1910, the theater started hosting movies and the building name changed from the Opera House to the Rex Theatre. The theater has been in continuous operation since the early 1900s.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t414 1St St.<br />Glenwood, IA 51534<br />Mills County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "George Maier Rural Heritage Center of Clayton County",
            "lat": "42.849254",
            "lon": "-91.397143",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-historymuseum-georgemaierruralheritagecenterofclaytoncounty.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Maier Rural Heritage Center of Clayton County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.849254,-91.397143\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">127.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The George Maier Rural Heritage Center&#039;s vast collection of artifacts takes you on a journey showing how rural life evolved in the Midwest since the mid-1800s. The artifacts are all exhibited in a restored sale barn, built in 1919.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS High St.<br />Elkader City Park<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.245.2377</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.elkader-iowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Washington Prairie Lutheran Church and Cemetery",
            "lat": "43.238005",
            "lon": "-91.738113",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-historicsite-washingtonprairielutheranchurchcemetery-7b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Washington Prairie Lutheran Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.238005,-91.738113\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Washington Prairie Lutheran Church began as part of the &quot;Little Iowa Congregation&quot; in 1854 formed by Pastor Nils Brandt. Ulrik Vilhelm Koren was called to the United States to serve the congregation in Winneshiek County. Koren and his wife, Elisabeth, spent their first winter in America living with the Egge family near Decorah in their 14-by-16-foot log house (now on exhibit at the Vesterheim Norwegian-American Museum). U. V. Koren played a significant role in the spiritual development of Norwegians in America and has been called the &quot;patriarch of Norwegian-American Lutherans.&quot; Koren served the Synod of the Norwegian Evangelical Lutheran Church in America until his death on December 19, 1910. He is buried in the cemetery adjacent to the Washington Prairie Lutheran Church that was instrumental in forming.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1725 Washington Prairie Rd.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.3247</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.washingtonprairielutheran.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Steyer Bridge",
            "lat": "43.297247",
            "lon": "-91.808482",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Steyer Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.297247,-91.808482\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Steyer Bridge is a rare short-span stone arch bridge and was constructed in 1875 by local stonemason, Michael Steyer. The bridge consists of limestone voussoirs, stone and concrete. The bridge spans an unnamed stream in Twin Springs State Park. It was added to the National Register of Historic Places on Jan. 4, 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1498 Oneota Rd.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Jacobson Barn and Farmstead",
            "lat": "43.248769",
            "lon": "-91.745232",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jacobson Barn and Farmstead</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.248769,-91.745232\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Before donation to the Norwegian-American Museum in 1977, the farm was owned and operated by the same family for 127 years. Generations overlapped extensively, leading to gradual evolution rather than sudden change in the social, technological, and economic history of the site. The new did not replace the old but was rather incorporated into it as had been typical of development in Norwegian rural areas since the Renaissance. This process of accumulative development is exemplified by the house and barn, both of which contain a core unit from the period shortly after settlement but both of which have been enlarged and altered to accommodate changing needs. It was added to the National Register of Historic Places on June 14, 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1755 Valdres Rd.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Keith and Lois Whitlatch Barn",
            "lat": "41.843522",
            "lon": "-91.157400",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cedar-barn-keithloiswhitlachbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Keith and Lois Whitlatch Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.843522,-91.157400\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn has been used for raising Belgian horses.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t707 King Ave.<br />Stanwood, IA 52337<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Palmer Barn",
            "lat": "43.152884",
            "lon": "-91.636696",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Palmer Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.152884,-91.636696\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Linderbaum-Palmer Barn is a German-style barn that was built on the Charles Linderbaum, Sr. farmstead in one day by 200-300 men who took part in the construction. The framing of the barn is of oak harvested from the woodlands on the property and a portable sawmill was brought in to saw the logs. The rock is from a nearby quarry and was brought in using horses and wagons.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1206 150th St.<br />Castalia, IA 52133<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Red Oak Grove Presbyterian Church and Cemetery",
            "lat": "41.837317",
            "lon": "-91.157649",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cedar-nhr-redoakgrovepresbyterianchurchcemetery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Red Oak Grove Presbyterian Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.837317,-91.157649\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Red Oak Grove Presbyterian Church was organized on March 1, 1841—more than five years before Iowa’s statehood. It was the first Presbyterian Church in Cedar County, and twelfth in Iowa Territory. The present Red Oak Grove Church was built in 1920-1921. It was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t751 King Ave.<br />Tipton, IA 52772<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Olin Heritage Center",
            "lat": "41.997392",
            "lon": "-91.142177",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Olin Heritage Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.997392,-91.142177\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This local history museum maintains collection relating to the history of Olin.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t309 Jackson St.<br />Olin, IA 52320<br />Jones County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.484.4444</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Lorch Mennonite Barn",
            "lat": "43.328223",
            "lon": "-95.445870",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/osceola-barn-mennonitebarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lorch Mennonite Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.328223,-95.445870\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>About 50 Mennonites came to rural Osceola County from Ontario, Canada, in March of 1888.  They purchased land for $8-$16 acre and settled as far away from a town as possible, according to the 1972 Osceola County Centennial Edition of the Sibley Gazette. This magnificent Mennonite barn, located on the northeast corner of the intersection of County Road A34 and County Road M18, was built in 1889. It has a distinctive overhanging side. It is one of the few structures remaining from the Mennonite settlement of the area. Disagreements developed among the group about standards of simplicity and by 1915 nearly all the Mennonite families had left the May City area.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6810 220th St.<br />Co. Rd. A34<br />Harris, IA 51345<br />Osceola County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Fremont Mill Bridge",
            "lat": "42.110526",
            "lon": "-91.140516",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fremont Mill Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.110526,-91.140516\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fremont Mill Bridge now carries a pedestrian path in Central Park in Jackson Township, seven miles east of Anamosa. This wrought iron bowstring through arch-truss originally crossed the Maquoketa River in Monticello. The previous structure at that site was destroyed by a perilous ice flow in the winter of 1873, necessitating the erection of the bowstring. Five companies presented sealed competitive bids to the Jones County Board of Supervisors in the Spring of 1873. County officials followed the customary method of letting out two construction contracts, one for the truss itself and one for the foundations. The contract for the superstructure was awarded to the Massillon Iron Bridge Company of Massillon, Ohio, which bid $23 per lineal foot. The second contract for the substructure was let to James Milne of Scotch Grove, Iowa. The overall contractual deadline for the bridge&#039;s completion was initially June 20, 1873, but it was not until October of that year that board minutes reported that the structure was finished. In 1930, the truss was moved to a site spanning Buffalo Creek, and then again to its present location in Jones County&#039;s Central Park in July 1936. The well-traveled Fremont Mill Bridge, with few alterations of note, now only carries pedestrians visiting the park. The Fremont Mill Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCentral Park<br />Anamosa, IA 52205<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Swinging Pedestrian Bridge",
            "lat": "41.277807",
            "lon": "-91.362981",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/louisa-bridge-swingingpedestrianbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Swinging Pedestrian Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.277807,-91.362981\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Swinging Pedestrian Bridge, also known as Lover&#039;s Leap Bridge, was originally constructed in 1886 but was condemned in 1902 for safety reasons. The bridge was rebuilt in 1904 with a span of 160 feet. The bridge collapsed in 1920 and dropped two people into the valley (they survived). The bridge was rebuilt again in 1922, with an even longer span of 262 feet, and then refurbished with new safety equipment in 1954. The bridge is still open today.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 Elm St.<br />Columbus Junction, IA 52738<br />Louisa County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://columbusjunctioniowa.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Gipple&#039;s Quarry Bridge",
            "lat": "41.204525",
            "lon": "-91.408921",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gipple&#039;s Quarry Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.204525,-91.408921\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Gipple&#039;s Quarry Bridge spans Buffington Creek. It is a pony truss bridge, typical of iron bridge construction in Iowa from the early 1890s. The bridge is closed to traffic. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tV Ave.<br />Columbus Junction, IA 52738<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Colton&#039;s Opera House",
            "lat": "41.279151",
            "lon": "-91.360806",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Colton&#039;s Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.279151,-91.360806\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Colton&#039;s Opera House opened in 1876 as an opera house and gymnasium. The building was converted to a movie theater about 1920 and continued to operate under different owners until it closed in 1963.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t232 Main St.<br />Columbus Junction, IA 52738<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Turner Hall",
            "lat": "43.086857",
            "lon": "-91.567367",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Turner Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.086857,-91.567367\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Turner Hall is significant both for its recognized importance as a social center for Postville and as a German-American social club illustrating the presence of German-American settlement as the largest single immigrant element within the town and surrounding county. It was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t119 E Greene St.<br />Postville, IA 52162<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Battaglioli Barn",
            "lat": "42.952137",
            "lon": "-95.835284",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/obrien-barn-battagliolibarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Battaglioli Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.952137,-95.835284\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Battaglioli Barn, near Granville, was built in 1933. When Pam and Dave Battaglioli moved to Iowa from California in 1996, they purchased an acreage with this barn. According to the Sioux City Journal, the barn had holes in the roof, boarded up windows. The Battagliolis restored the barn in 2002. It has been featured on several Iowa Barn Foundation tours.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4819 480th St.<br />Granville, IA 51022<br />O&#039;Brien County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cooley-Whitney House",
            "lat": "43.301919",
            "lon": "-91.793808",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-nhr-cooleywhitneyhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cooley-Whitney House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.301919,-91.793808\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cooley-Whitney House was built in 1867 and was one of the first homes built in Decorah. It was added to the National Register of Historic Places on Jan. 24, 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t305 Grove St.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.380.8080</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cooley-whitneybandbinndecorah.com/home.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Columbus Community Heritage Museum (Columbus Junction School)",
            "lat": "41.276384",
            "lon": "-91.360095",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/louisa-historymuseum-nhr-columbusjunctionschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Columbus Community Heritage Museum (Columbus Junction School)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.276384,-91.360095\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Columbus Junction School was built in 1882 and was in operation until about 1920. The building had two halls and accommodations for about 400 pupils. The building is now the home of the Columbus Junction Heritage Museum where visitors can find  archives, artifacts and stories. The Columbus Junction School was added to the National Register of Historic Places in 1973.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t122 E Maple St.<br />Columbus Junction, IA 52738<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Motor Mill Historic Site",
            "lat": "42.807057",
            "lon": "-91.351389",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-motormillhistoricsite.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Motor Mill Historic Site</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.807057,-91.351389\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Motor Mill is 90 feet tall and it was constructed in 1869. It is at the town site of Motor, which was listed on the National Register of Historic Places in 1977. Three men chose the site in 1867 as the ideal location along the Turkey River for a settlement. They partnered to build a grist mill &quot;finer and bigger than any that had yet been conceived by pioneers.&quot; The result, Motor Mill, was indeed an architectural feat and required an equally impressive dam to provide power. Even at low water, the associated 200-foot long dam could turn out 250 horsepower. Following the construction of the mill, an inn, livery, ice house and a cooperage were built on site. The mill was built with locally quarried stone and the foundation walls are five feet thick. At one time, the Motor Mill produced 1500 bushels of wheat per week! It is now open several summer weekends for free tours of the mill, related buildings and town site. The Motor Mill Historic District was added to the National Register of Historic Places in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t20000 Grain Rd.<br />Galaxy Rd., south of Co. Rd. C1X (Grape Rd.)<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://motormill.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Chautauqua Park",
            "lat": "41.273333",
            "lon": "-91.358159",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/louisa-botany-chautauquapark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chautauqua Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.273333,-91.358159\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Chautauqua Park, located on the edge of Columbus Junction, was once a site of Chautauqua speeches given by famed Americans such as William Jennings Bryan, Carrie Nation and &quot;Fighting Bob&quot; LaFollette. The Chautauqua movement was established in New York in 1874 and quickly became a major cultural influence in the Midwest. A Chautauqua Assembly brought in entertainment and culture for the whole community, with speakers, teachers, musicians, entertainers, preachers and specialists of the day. During the depression the WPA (Works Progress Administration) built the log cabin and fireplaces. Sports fields, playground equipment and trails have been added over the years.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t130 Hickory St.<br />Columbus Junction, IA 52738<br />Louisa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.728.7971</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://columbusjunctioniowa.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Koren Hall",
            "lat": "43.310695",
            "lon": "-91.804019",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-nhr-korenhall.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Koren Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.310695,-91.804019\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Koren Hall (formerly Koren Library), on the Luther College campus, was dedicated on October 14, 1921 and was named in honor of Ulrik Vilhelm Koren, one of the founders and long-time supporters of Luther College. The intended purpose for this building was to provide space for the college library and museum, augmented by an extensive collection of Norwegian history and literature, an important collection for a college established by the Norwegian Evangelical Lutheran Church in America. Today Koren Hall is the home of faculty offices and classrooms. It was added to the National Register of Historic Places on July 17, 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t700 College Dr.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Camp Harlan / Camp McKean Historic District",
            "lat": "40.976343",
            "lon": "-91.582543",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-campharlancampmckeanhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Camp Harlan / Camp McKean Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.976343,-91.582543\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Camp Harlan/Camp McKean Historic District was a Civil War rendezvous comp in Henry County. It was first known as Camp Harlan from September 1861 to February 1862 for the Fourth Iowa Cavalry, and later as Camp McKean for the 25th Iowa Infantry from August to November 1862. It was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2260 Hickory Ave<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bentonsport National Historic District",
            "lat": "40.727274",
            "lon": "-91.855060",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bentonsport National Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.727274,-91.855060\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Village of Bentonsport was platted in 1839 and was once an important port city for steamers on the Des Moines River. The transportation and shipping business from the river and the numerous mills along its banks contributed to the village’s success into the 1900s. Bentonsport was home to Iowa’s first paper mill and was the end of the line for the Des Moines Valley Railroad for several years. As one of the 12 Villages of Van Buren, Bentonsport has remained largely unchanged over time and this unique historic atmosphere has made the village a thriving tourist destination. Visitors can explore old mills along the river, go hiking and canoeing, visit specialty shops and watch the shopkeepers make their crafts, and spend the night in an 1846 Bed and Breakfast. The Bentonsport Historic District was added to the National Register of Historic Places in 1972.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. J40<br />Bentonsport<br />Keosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.868.7822</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.bentonsport.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Edinburgh Historical Village and Museum",
            "lat": "42.132967",
            "lon": "-91.132868",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Edinburgh Historical Village and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.132967,-91.132868\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Edinburgh Historical Village and Museum is at the site of the first county seat of Jones County. The ghost town of Edinburgh was the county seat from 1840-1847. The museum has an original log cabin, the Old Sutton school house, church, depot, and blacksmith shop; as well as new buildings housing authentic documents, pictures, furniture, equipment, and artifacts of the past. The museum and village is home to the Jones County Historical Society which houses a collection of research materials including books, maps, photographs, newspapers, tax books and more.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t13838 Edinburgh Rd.<br />Scotch Grove, IA 52310<br />Jones County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.826.2269</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://rootsweb.com/~iajchs/jchs.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Vesterheim Norwegian-American Museum",
            "lat": "43.304289",
            "lon": "-91.791961",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-historymuseum-vesterheim.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vesterheim Norwegian-American Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.304289,-91.791961\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Vesterheim Norwegian-American Museum has one of the most comprehensive collections, with over 24,000 artifacts, dedicated to telling the story of Norwegian immigrants in America. The outdoor division of the museum contains 12 historical buildings: Haugan House, Egge-Koren House, Valdres House, Wickney House, Erikson-Hansen Stabbur, Norwegian Lutheran Parochial School, Norris Miller Stovewood House, Mikkelson-Skree Blacksmith Shop, Bethania Lutheran Church, Tasa Drying Shed, Norsvin Mill and the Painter-Bernatz Mill. Two of the buildings, the Norris Miller Stovewood House and the Painter-Bernatz Mill are listed on the National Register of Historic Places. The museum also has two library collections, the Fladager Reference Library and the Preus Special Collections Room.\r\n\r\nIn November 2013, the &quot;Norsk Kultur&quot; gallery opened in the Norway pavilion at Epcot at the Walt Disney World Resort. Many of the artifacts and objects displayed inspired the movie &quot;Frozen&quot; and were loaned to Disney from the Vesterheim Norwegian-American Museum.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t502 W Water St.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.9681</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://vesterheim.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Pony Creek Park",
            "lat": "41.071459",
            "lon": "-95.786328",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mills-nhr-ponycreekpark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pony Creek Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.071459,-95.786328\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129mi.</span></div>\n\t\t</div>\n\n\t\t<p>Pony Creek Park is one of the locations in the Glenwood region where the existence of two, and possibly more, prehistoric earth lodge sites have been discovered. These house sites, identified as components of a Central Plains Tradition community, are the only examples of such houses presently located on public property where they might be preserved and protected. The earth lodge sites within the park are not viewable, however, the park marks the pre-historic community that once existed here. A reconstruction of a typical earth lodge is viewable at Glenwood Lake Park. Pony Creek Park was added to the National Register of Historic Places in 1971.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t56235 Deacon Rd.<br />Pacific Junction, IA 51561<br />Mills County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.527.9685</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.millscoia.us/index.php/depts/conservation\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Porter House Museum",
            "lat": "43.302153",
            "lon": "-91.789972",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-historymuseum-nhr-porterhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Porter House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.302153,-91.789972\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in the former Decorah home of Adelbert Field Porter (1879 – 1968) and Grace Young Porter (1880 – 1964), the Porter House Museum houses and displays the Porters&#039; nature collection from their travels around the world. The Porter House is surrounded by a wall, built by Mr. Porter in the 1940s, of rough rocks, polished gemstones and ancient fossils. This Victorian home, built in 1867 by Dighton B. Ellsworth, was added to the National Register of Historic Places on Aug. 6, 1975 as the &quot;Ellsworth-Porter House&quot;.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 W Broadway St.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.8465</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://porterhousemuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "featured.png",
            "title": "Western Historic Trails Center",
            "lat": "41.228554",
            "lon": "-95.900789",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-statehistoricsite-westerntrailscenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/featured.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Western Historic Trails Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.228554,-95.900789\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Western Historic Trails Center showcases the people and places of the various Western Trails. Follow in the footsteps of early pioneers in Iowa to see what they saw on their adventures. Receive an orientation for trips north following the Lewis and Clark Trail or for trips west following the routes of early travelers on the Oregon, Mormon, and California Trails.</p>\t\t<p><em>A location in the collection, State Historic Sites</em></p><p><em>Iowa&#039;s State Historic Sites are located across the state and present authentic stories of Iowa&#039;s history. These sites are overseen by the Iowa Department of Cultural Affairs and are operated in partnership with local historical societies and county conservation boards.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3434 Richard Downing Ave.<br />Council Bluffs, IA 51501<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.366.4900</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowahistory.org/historic-sites\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Winneshiek County Convention &amp; Visitor&#039;s Bureau",
            "lat": "43.304085",
            "lon": "-91.791352",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Winneshiek County Convention &amp; Visitor&#039;s Bureau</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.304085,-91.791352\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129mi.</span></div>\n\t\t</div>\n\n\t\t<p>The bluff country of Northeast Iowa is remarkable in so many different ways. Heralded for undeniable scenic beauty, Winneshiek County and Decorah also offer a plethora of things to do, see and experience. Stop by the Winneshiek County Convention and Visitor&#039;s Bureau for information on what to see and experience while you&#039;re in the county.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t507 W Water St.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.visitdecorah.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Viking 3",
            "lat": "43.305495",
            "lon": "-91.791594",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Viking 3</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.305495,-91.791594\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Viking 3 opened in 1965 and has undergone several additions and renovations. Today the building still operates as a theater.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t111 N Mechanic St.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Broadway - Phelps Park Historic District",
            "lat": "43.302351",
            "lon": "-91.787830",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-nhr-broadwayphelpshistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Broadway - Phelps Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.302351,-91.787830\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This historic district along Broadway Street in Decorah offers numerous historical buildings that show the growth and development of the town including churches, distinguished homes, a public school, Winneshiek County Courthouse and historic jail. Located within the district is Phelps Park where you will find an original kiln that was used to provide bricks for many of the early homes and commercial properties. The district was added to the National Register of Historic Places on Nov. 13, 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW Broadway St.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.463.4692</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Decorah Municipal Swimming Pool",
            "lat": "43.313483",
            "lon": "-91.801353",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-nhr-decorahmunicipalpool.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Decorah Municipal Swimming Pool</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.313483,-91.801353\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Decorah Municipal Bathhouse and Swimming Pool was built in 1937 and was a joint partnership between the City of Decorah and the Works Progress Administration (WPA). The building was designed by Edward Novak in the Art Moderne and International styles of architecture. The building is only one of two surviving WPA projects, built in this style, surviving today. It is also unique in that it has been in continuous operation since it opened in 1937. It was added to the National Register of Historic Places on Nov. 17, 2011.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t701 College Dr.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.2055</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Decorah Woolen Mill",
            "lat": "43.304634",
            "lon": "-91.788575",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-nhr-woolenmill.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Decorah Woolen Mill</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.304634,-91.788575\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Decorah Woolen Mill, one of Decorah&#039;s oldest buildings, was constructed in 1867 and was a water-powered manufacturing plant that processed wool and produced flannel shirts. Later, the building also served as a patent medicine manufacturing business and a retail tire business. The building was renovated in 2002 and is now a residential property. It was added to the National Register of Historic Places on Jan. 26, 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t107 Court St.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Oakland Mills Bridge",
            "lat": "40.935448",
            "lon": "-91.616993",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-bridge-nhr-oaklandmillsbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oakland Mills Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.935448,-91.616993\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Oakland Mills Bridge spans the Skunk River as part of a pedestrian trail in Oakland Mills Park. The bridge is 358 feet long and features a combination through and pony truss design. It was built in 1876 by the Missouri Valley Bridge and Iron Company of Leavenworth, Kansas, and was converted to a pedestrian bridge in 1970. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tNature Center Dr.<br />Oakland Mills County Park<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Lewis and Clark Keelboat",
            "lat": "42.042905",
            "lon": "-96.161744",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monona-statepark-lewisandclarkstatepark-keelboat-2a-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lewis and Clark Keelboat</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.042905,-96.161744\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>As part of the Lewis and Clark Trail, the Lewis and Clark Keelboat allows visitors to explore the transportation that would have been used by the explorers.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t21914 Park Loop<br />Lewis and Clark State Park<br />Onawa, IA 51040<br />Monona County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.423.2829</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.exploreiowaparks.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Indian Artifact Museum",
            "lat": "40.726015",
            "lon": "-91.853539",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Indian Artifact Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.726015,-91.853539\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Tony Sanders&#039; Indian Artifacts Museum features over 4,000 arrowheads and other tools Sanders has picked up out of creed beds and woodland paths in Van Buren and surrounding counties. Some are more than 10,000 years old. Visitors will also enjoy the stunning manner in which they are displayed as fourteen different types of wood have been used to construct beautiful inlaid wood display cases.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t21929 Des Moines St.<br />Bentonsport<br />Keosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.592.3579</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://greefstore.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-hotels.png",
            "title": "Mason House",
            "lat": "40.725661",
            "lon": "-91.853260",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/vanburen-historichotel-masonhouseinn-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-hotels.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mason House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.725661,-91.853260\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mason House is the oldest steamboat hotel on the Des Moines River. The two and one half story brick hotel was built in 1846 by Mormon craftsmen coming from Nauvoo, Illinois. It served the steamboat travelers going from St. Louis to Fort Des Moines to Fort Dodge. The house was purchased by Lewis and Nancy Mason in 1857. During the Mason&#039;s residency the home was a stop on the Underground Railroad, often the first stop in Iowa for those coming up from Missouri. The freedom seekers would then travel to a Quaker settlement in Salem, Henry County, Iowa. In his autobiography, Lewis and Nancy&#039;s son, Senator William Ernest Mason, wrote about his memories of his parents abolitionist activities. The Mason House was added to the National Register of Historic Places, as part of the Bentonsport Historic District, in 1972.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t21982 Hawk Dr.<br />Keosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Steyer Opera House",
            "lat": "43.304379",
            "lon": "-91.786651",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-nhr-steyeroperahouse-hotelwinneshiek.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Steyer Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.304379,-91.786651\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Steyer Opera House was opened by Joseph B. Steyer in December 1870. In addition to the opera house, the building was originally constructed to house commercial businesses, offices and apartments. The building was extensively remodeled in 1875. It features an auditorium and stage that retain distinctive elements of late 19th-century opera house design. Most note-worthy is the lavish use of pressed tin on walls and ceilings, in a variety of colors and patterns, and the existence of several flats dating from 1875. The building was restored in 1997 and now operates in conjunction with the adjacent conference center and Hotel Winneshiek. It was added to the National Register of Historic Places on Jan. 24, 1980.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t104 E Water St.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.998.4164</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.hotelwinn.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Vernon School",
            "lat": "40.721234",
            "lon": "-91.856407",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/vanburen-nhr-vernonschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vernon School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.721234,-91.856407\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Vernon School is significant as an outstanding example of a 19th-century public school building and of the Italianate style in public architecture. It was built in 1868, and was used as a school until 1960 and for many years operated as an art gallery and studio. The Vernon School was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t26849 South St.<br />Vernon<br />Keosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Paton and Hannah Wilson House",
            "lat": "40.897951",
            "lon": "-91.650527",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-patonhannahwilsonhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Paton and Hannah Wilson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.897951,-91.650527\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Paton and Hannah Wilson House is a significant remnant of the early history and architecture of Salem Township, built around 1839. It was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1360 285th St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Luther College Farm",
            "lat": "43.317948",
            "lon": "-91.802726",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-barn-nhr-luthercollegefarm.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Luther College Farm</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.317948,-91.802726\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Luther College farm complex, with buildings and structures dating from the late 1860s to about the turn of the century, is situated on rising ground overlooking the college campus. The farm was established by Captain A.J. Ashmore, a member of a group of about 30 English immigrant families of Winneshiek County known as the English Colony, who had settled in the area between 1867 and 1885. Ashmore built the farmhouse and other buildings, including the Ashmore-Jewell Barn, before selling the farm in 1874 to move to West Decorah. The farmhouse is one of the few surviving structures associated with the English Colony. The farm was purchased by Jacob Jewell, a farmer of Norwegian descent, who worked the farm with his son Frank, selling much of the farm&#039;s produce to Luther College. The college bought the farm in 1929. It was added to the National Register of Historic Places on July 17, 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t700 College Dr.<br />Luther College<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Lea-Oakley Barn",
            "lat": "43.266484",
            "lon": "-91.735372",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-barn-leaoakleybarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lea-Oakley Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.266484,-91.735372\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lea-Oakley Barn is built of native limestone. It is a Norwegian barn, built by John Johnson in 1862. Much of the original barn is intact. The roof was modified, as the barn currently has a gambrel roof with wooden shingles. Originally, it would have had a gable roof. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2279 Co. Rd. W42<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Saints Peter and Paul Church",
            "lat": "42.555103",
            "lon": "-91.214108",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Saints Peter and Paul Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.555103,-91.214108\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Saints Peter and Paul Church was completed in 1905 and is an excellent example of Late Gothic Revival Architecture. It was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tC64 and X47<br />Petersburg, IA 52040<br />Delaware County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Freeport Bridge",
            "lat": "43.290458",
            "lon": "-91.759932",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-nhr-freeportbridge-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freeport Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.290458,-91.759932\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Freeport Bridge was built in 1878 by Wrought Iron Bridge Company of Canton, Ohio. At 160 feet long, the bridge is one of the longest bowstring truss spans in the United States and retains a high level of historic integrity. The bridge has been relocated from its original location and is now located along the Trout Run Trail. It was added to the National Register of Historic Places on April 19, 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1826 Iowa 9<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Floral Hall",
            "lat": "41.773026",
            "lon": "-91.143911",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Floral Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.773026,-91.143911\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Floral Hall is unique in its octagonal architectural style. It has remained the property of the Cedar County Fair Association and has always been used as a floral hall. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t108 W 5th St.<br />Cedar County Fairgrounds<br />Tipton, IA 52772<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Ice Cave State Preserve",
            "lat": "43.311213",
            "lon": "-91.780589",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ice Cave State Preserve</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.311213,-91.780589\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ice Cave State Preserve at Decorah contains one of the largest caverns containing ice in the Midwest. The cave was carved out of 450-million-year-old limestone and dolomite. Ice is formed in the cave when the cool winter air enters the cave causing the rock wall temperature to decrease. During spring, surface water from above seeps into the cave and freezes upon contact with the cold cave walls. It was added to the National Register of Historic Places on Dec. 20, 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIce Cave Rd.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Winfield Historical Society and Museum",
            "lat": "41.128181",
            "lon": "-91.438085",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Winfield Historical Society and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.128181,-91.438085\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Winfield Historical Museum is a place dedicated to preserving the history of the Winfield area. The museum is managed by the Winfield Historical Society, and it has exhibits of a newspaper press, 1950s-1960s schoolroom, and 1920s items from Senator William Carden.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 S Locust St.<br />Winfield, IA 52659<br />Henry County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.257.6974</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://winfieldhistoricalsociety.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Cutkomp Barn",
            "lat": "41.234201",
            "lon": "-91.364000",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cutkomp Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.234201,-91.364000\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn was built by Lewis Cutkomp in 1911. Native lumber was harvested on the place for the barn and was then put together with wooden pegs.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t22682 120th St.<br />Columbus Juction, IA 52738<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William Green House",
            "lat": "41.673904",
            "lon": "-91.161219",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cedar-historicsite-williamgreenhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William Green House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.673904,-91.161219\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130mi.</span></div>\n\t\t</div>\n\n\t\t<p>The William Green House was built around 1853, by William Green. Green was one of the leading entrepreneurs in Rochester, as he owned a sawmill and a brickyard. The home is one of the only surviving buildings associated with the time that Rochester was a thriving river village. The home was well-kept with few major changes - but it may have been torn down following a major flood in 2008. It was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1709 Madison St.<br />Rochester, IA 52772<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Dickinson County",
            "lat": "43.446758",
            "lon": "-95.322586",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Dickinson County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.446758,-95.322586\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dickinson County Freedom Rock® in Lake Park is unique among the county Freedom Rocks. The Freedom Rock sits in the center of five smaller rocks that represent each military branch. Each military branch rock is set in the middle of a circle signifying that branch&#039;s activity and retired service members. All the rings intersect with the center ring around the Freedom Rock showing the unity of all those who served or are serving. The top circle, as you enter the memorial from the south, is in honor of the families who have also sacrificed in their support of their service member. The five veterans featured on the Dickinson County Freedom Rock are Rachel Wunder, a surgical nurse from Lake Park who served in World War II; Milton Simpson of Terril, who was killed in action in Germany in 1944; Ed Gath, a soldier from tiny Montgomery, Iowa, who was killed in action in North Korea in 1951; Wilber “Bill” Ahart, a Spirit Lake, Iowa, resident who survived the Bataan Death March in World War II; and Spirit Laker Lawrence Lambert, who survived for 27 months as a prisoner of war in Germany during World War II. The Dickinson County (Lake Park) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t309 S Market St.<br />Veterans Park<br />Lake Park, IA 51347<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Harlan-Lincoln House and Museum",
            "lat": "40.974950",
            "lon": "-91.551778",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-harlanlincolnhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Harlan-Lincoln House and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.974950,-91.551778\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>James Harlan was the first Iowan to hold Cabinet rank in the U.S. government. A leading Whig in Iowa after his arrival in the state in the 1840s, Harlan settled in this home in Mt. Pleasant as president of Iowa Wesleyan College in 1853. He later became a Republican senator and was frequently consulted by President Lincoln who made Harlan Secretary of the Interior shortly before his assassination. In 1868, Harlan&#039;s daughter, Mary Eunice Harlan, married Robert Todd Lincoln in this house. The house was added to the National Register of Historic Places in 1973, and now serves as a museum displaying memorabilia from both the Harlan and Lincoln families.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 W Broad St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.385.6320</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.abrahamlincolnonline.org/lincoln/sites/harlan.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Justin and Catherine Ball House",
            "lat": "40.966903",
            "lon": "-91.559066",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-justinballhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Justin and Catherine Ball House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.966903,-91.559066\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>In a fine old residential district three blocks west of the city square in Mount Pleasant, the Justin Ball House is an elaborate example of the Queen Anne style of domestic architecture. The house, constructed in 1892, is an expanded version of George F. Barber&#039;s Design No. 33, which appeared in his mail order catalog, The Cottage Souvenir No. 2. It was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t500 W Monroe St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Old Main",
            "lat": "40.974047",
            "lon": "-91.553237",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-oldmain-iowawesleyancollege.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Main</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.974047,-91.553237\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Old Main was planned and built under the leadership of Iowa Wesleyan College president James Harlan, who later became a U.S. Senator and Secretary of the Interior. The building was first used for classes in the fall of 1855 and has been used by the college continuously since. It has housed a natural history museum, the college chapel, the library, and the social halls of the Literary Societies. Old Main was added to the National Register of Historic Places in 1973.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBroad St.<br />Iowa Wesleyan College<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George and Margaret Cooper House",
            "lat": "40.966808",
            "lon": "-91.557549",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-georgemargaretcooperhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George and Margaret Cooper House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.966808,-91.557549\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cooper House, built in 1856, is located in a residential neighborhood two blocks west of the town square in Mount Pleasant. This brick home was designed in the Italianate style that was popular in Mount Pleasant from the early 1850s through the mid-1880s. It is a particularly well-preserved example of this style and was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 W Monroe St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry Ambler House",
            "lat": "40.970341",
            "lon": "-91.554670",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-henryamblerhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry Ambler House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.970341,-91.554670\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ambler house is a fine example of the Italian Villa architectural style, built in 1868. This Italianate style was popular during the building boom brought about by the arrival of the railroad. It was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t405 N Broadway St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "P.E.O. Memorial Building",
            "lat": "40.972827",
            "lon": "-91.552563",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">P.E.O. Memorial Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.972827,-91.552563\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The P.E.O. International Sisterhood was founded as a sorority at Iowa Wesleyan College in Mount Pleasant in 1869. From 1869 through 1902, P.E.O. some alumnae remained active in the college chapter, while others established chapters in their communities. In 1902. P.E.O officially became a community-based organization and active collegiate members of P.E.O. at Iowa Wesleyan College were initiated in to Alpha Xi Delta. Ground was broken for the P.E.O. Memorial Building in January 1927 and the building was dedicated the following September. The meaning of P.E.O. is secret, but the organization&#039;s mission is philanthropic and educational. There are over 300,000 members in almost 6,000 local chapters in the United States and Canada.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Main St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Scotch Grove Historic District",
            "lat": "42.172693",
            "lon": "-91.106891",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Scotch Grove Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.172693,-91.106891\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Scotch Grove Historic District is an agriculture-related business center and rural crossroads community. Platted in 1872 by the Applegate brothers on whose land the new Davenport and St. Paul Railroad depot was built, Scotch Grove developed its specialized agriculture-related niche market during Iowa&#039;s golden age of agriculture (1890s to the early 1920s), an era of marked advances in farm mechanization, increased land and crop prices, and general rural prosperity. Scotch Grove supported not only a steady local trade in goods and services but also several dominant family-owned businesses specializing in agricultural-related products and services. These companies included: the Hoyt Bros. Nursery (later Scotch Grove Nursery, 1890s-present); Arend Balster Stores and Balster&#039;s Implement and Parts Company (1914-2009); and Farmers&#039; Grain Company (later Farmer&#039;s Seed and Grain Co. and Naylor Seed Company, 1920-present). With the community&#039;s convenient railroad facilities, each of these three dominant companies found success catering to farmers near and far, each finding a ready supply of labor among their own families and the families of Scotch Grove and its surrounding farms. Each company survived the Great Depression, World War II, and the loss of Scotch Grove&#039;s railroad line and continued to thrive into the twenty-first century. Supporting this niche market in agriculture-related products was a small but steady local trade, which provided the goods and services that supported community cohesiveness and conveniently filled the everyday needs of the families who lived and worked there. The Scotch Grove Historic District reflects this unique commercial history from the late nineteenth century through 1963. The Scotch Grove Historic District was added to the National Register of Historic Places in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. E17<br />Scotch Grove, IA 52331<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Ascherl Barn",
            "lat": "42.971245",
            "lon": "-95.858483",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/obrien-barn-ascherlbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ascherl Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.971245,-95.858483\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This landmark barn was built in 1914 by Mr. Diers from Germantown. Diers built the barn for property owner Bernard Hoefler. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4680 McKinley Ave.<br />Granville, IA 51022<br />Sioux County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Brazelton House",
            "lat": "40.969864",
            "lon": "-91.552883",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-brazeltonhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brazelton House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.969864,-91.552883\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Brazelton House was built in 1858 and is one of the earliest substantial homes in Mount Pleasant. Even today, the house is a significant architectural landmark in the town, with influences on Romanesque and Italianate styles and featuring a large front porch, Corinthian columns, and a tower. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 N Main St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "City Hall",
            "lat": "40.966589",
            "lon": "-91.555752",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-cityhall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">City Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.966589,-91.555752\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The City Hall is a relatively small stone building constructed in 1936 as a W.P.A. project. It is an eclectic blending of colonial revival styles, which is somewhat unusual for a public building. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t220 W Monroe St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First National Bank",
            "lat": "40.966556",
            "lon": "-91.554854",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-firstnationalbank.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First National Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.966556,-91.554854\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First National Bank building is a good example of Neo-classical bank design from the 1920s. Bank buildings began appearing in this classical design early in the 20th century, and by the 1920s most towns across the country boasted at least one of these &quot;temples of finance&quot;. Many of these were tall narrow buildings with monumental columns on the facade. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 S Jefferson St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Masters Building",
            "lat": "40.967010",
            "lon": "-91.555752",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-mastersbuilding.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Masters Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.967010,-91.555752\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Masters Building, built in 1937, is a good example of a simplified commercial design adapted from the Art Deco and Art Moderne buildings of the period. This area developed commercially with the construction of the new City Hall in 1936, as a late expansion of the Mount Pleasant business district within a block of the Square. The Masters Building was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t221 W Monroe St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Old Cedar County Jail Museum",
            "lat": "41.769162",
            "lon": "-91.129450",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cedar-historymuseum-oldcedarcountyjailmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Cedar County Jail Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.769162,-91.129450\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cedar County Sheriff&#039;s Residence and Jail was the primary correction facility in Cedar County from 1892 until 2001. It is an example of the combination sheriff&#039;s quarters and jail type local correction facility, which was the predominant local jail type in Iowa for over a century. It is also believed to have been the last operating combination residence and jail in Iowa. It was added to the National Register of Historic Places in 2003. The Iowa State Sheriffs and Deputies Association. They have exhibits on the history of the building, the evolution of prisoner treatment, an antique jail wagon and a sheriff&#039;s car.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t118 W 4th St.<br />Tipton, IA 52772<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Tipton State Bank",
            "lat": "41.770149",
            "lon": "-91.128643",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cedar-nhr-tiptonstatebank.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tipton State Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.770149,-91.128643\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Tipton State Bank was built in 1924 by J.C. Woods and Company. This former bank building has Classical Revival architecture. This bank is the most original of the three banks that were built in Tipton between 1924 and 1930. It was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t501 Cedar St.<br />Tipton, IA 52772<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hotel Tipton",
            "lat": "41.770887",
            "lon": "-91.128729",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cedar-nhr-hoteltipton.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Tipton</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.770887,-91.128729\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1894, the Tipton Hotel remains the largest hotel in Cedar County. For over a century the hotel has been an anchor for the town, with a variety of essential businesses housed in street-level stores. The hotel fell on hard times and closed in 1976, although retail businesses remained open. Part of the building has been converted to apartments. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t524 Cedar St.<br />Tipton, IA 52772<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-hotels.png",
            "title": "Harlan House Hotel",
            "lat": "40.967566",
            "lon": "-91.554144",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-harlanhousehotel.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-hotels.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Harlan House Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.967566,-91.554144\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Harlan House Hotel was originally built in 1857 as a private residence for James Harlan, who became the first Republican senator from Iowa in 1855. Following Harlan&#039;s senatorial years, the house was turned into a hotel and became Harlan&#039;s primary source of income. It was added the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t122 N Jefferson St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Cedar County Historical Society Museum",
            "lat": "41.787853",
            "lon": "-91.126790",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cedar-historymuseum-cedarcountyhistoricalsocietymuseum-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cedar County Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.787853,-91.126790\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cedar County Historical Society was formed in 1958 and manages the Cedar County Historical Museum. The museum features exhibits on the &quot;Soldiers of Iowa&quot;, the &quot;Scattergood Hostel&quot;, and the &quot;Prairie Village&quot;, a collection of replica and original historical buildings from Cedar County. In 2009, the Red Oak No. 1 (also known as the Bedbug School) was moved to the site. The school opened in 1910. It was one of the first schoolhouses to have a furnace in the basement to help and heat the building. After the Tipton School District consolidated in 1925, the schoolhouse was mainly used for storage.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1094 IA Hwy 38<br />Tipton, IA 52772<br />Cedar County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.644.3186</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://cedarcountyhistoricalsociety.webs.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Budde-Singer Building",
            "lat": "40.966876",
            "lon": "-91.552842",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Budde-Singer Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.966876,-91.552842\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The three-story Budde-Singer Building is located immediately north of the Brazelton House Hotel. Although it was built in 1882, it was designed in the early Italianate style that was popular in Mount Pleasant from 1855 to around 1870. It&#039;s possible that the new building was designed in an earlier style in an effort to continue the style of the Brazelton House Hotel next door. The Budde-Singer Building was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 N Main St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry County Savings Bank",
            "lat": "40.966415",
            "lon": "-91.552992",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-henrycountysavingsbank-mtpleasant.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry County Savings Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.966415,-91.552992\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Henry County Savings Bank was built in 1891. Its design is illustrative of the late Italianate style of architecture that was commonly used for commercial buildings in Mount Pleasant, and throughout the country, during the last three decades of the 19th century. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 S Main St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "McCandless Building",
            "lat": "40.966808",
            "lon": "-91.553883",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-mccandlessbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McCandless Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.966808,-91.553883\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The McCandless Building is a good example of an early Italianate commercial design as seen in Mount Pleasant between 1855 and 1870, and was build by William McCandless in 1862. The building was originally leased to a Mr. Pennington for use as a dry goods store. By 1886, it housed a business selling watches and jewelry. It continued as a jewelry store until around 1909, when it became a candy shop and later a restaurant. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 W Monroe St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mount Pleasant Public Library",
            "lat": "40.967761",
            "lon": "-91.552601",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mount Pleasant Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.967761,-91.552601\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mount Pleasant Public Library building was built in 1903 and is architecturally unique, consisting of an asymmetrical grouping of intersecting gables. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 N Main St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "National State Bank",
            "lat": "40.966753",
            "lon": "-91.553318",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">National State Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.966753,-91.553318\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The National State Bank was built in 1883 and follows the late Italianate design that was common for buildings around the Mount Pleasant Square. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 W Monroe St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Timmerman-Burd Building",
            "lat": "40.965808",
            "lon": "-91.553058",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-timmermanbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Timmerman-Burd Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.965808,-91.553058\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1883, the Timmerman-Burd Building is an excellent example of late Italianate commercial architecture from the 1880s and is representative of many such buildings that once surrounded the Mount Pleasant Square. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t118 S Main St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Union Block Building",
            "lat": "40.966752",
            "lon": "-91.553655",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-unionblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Union Block Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.966752,-91.553655\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Union Block, built by William McCandless in 1861, is an outstanding example of an early Italianate design as seen in Mount Pleasant between 1855 and 1870. It is one of the best examples of this design in the community, which became locally popular following the construction of the Brazelton House Hotel in 1856. The Union Block was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t109 W Monroe St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Jones Barn",
            "lat": "43.337109",
            "lon": "-95.495641",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jones Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.337109,-95.495641\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jones Barn was built in 1917 and is one of the largest barns in the area.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2138 Verdin Ave.<br />Ocheyedan, IA 51354<br />Osceola County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Hardacre Theatre",
            "lat": "41.770185",
            "lon": "-91.127841",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cedar-theater-hardacretheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hardacre Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.770185,-91.127841\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hardacre Theatre opened in 1914 as an opera house, but was converted to a movie theater in 1919. It was renovated in 1948 to keep up with competition from other theaters. The renovation added a new neon marquee sign. The theater can seat 400 people and holds a summer film festival, the Hardacre Film Festival.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t112 E 5th St.<br />Tipton, IA 52772<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Masonic Temple Theater",
            "lat": "40.967111",
            "lon": "-91.553272",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-theater-nhr-masonictempletheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Masonic Temple Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.967111,-91.553272\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Masonic Temple Theater was built in 1923, one of the few commercial buildings constructed around the square in the 1920s. The First National Bank was built the same year, and both these buildings are excellent examples of Neo-classical design as applied to commercial architecture. The Masonic Temple Theater was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 N Main St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Brazelton House Hotel",
            "lat": "40.966692",
            "lon": "-91.552871",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-brazeltonhotel.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brazelton House Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.966692,-91.552871\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Since its construction in 1856, the four story red brick Brazelton House Hotel has been the focal point of Mount Pleasant&#039;s downtown commercial district and a local landmark. Erected during the building boom sparked by the arrival of the Burlington Missouri Railroad, this relatively unaltered Italianate structure is the best preserved commercial building from the boom era. It is the oldest of the two surviving 19th century hotels in Mount Pleasant, and the only one originally built as a hotel. It was added the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 N Main St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Frankville School",
            "lat": "43.191192",
            "lon": "-91.621707",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-countryschool-frankvilleschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Frankville School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.191192,-91.621707\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The site of Frankville School was purchased in 1870 from Francis &quot;Frank&quot; Teabout who in 1853 founded the town of Frankville after the State Road had been established between McGregor and Cresco in 1852. In 1872 the schoolhouse was completed. It is a well-preserved example of vernacular stonemasonry. Stone school houses were relatively rare in 19th century Iowa - the great majority were of frame, log or brick construction. The number of stone schoolhouses in the state, at their peak in 1874, was 268, compared with about 800 frame schools and about 650 brick schools. When its use as a schoolhouse was discontinued in 1963, it was deeded to the Winneshiek County Historical Society. It was added to the National Register of Historic Places on Nov. 14, 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1149 County Hwy W4B<br />Frankville, IA 52162<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-ballrooms.png",
            "title": "Avalon Ballroom",
            "lat": "42.815358",
            "lon": "-95.972187",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-historicballroom-avalonballroom.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-ballrooms.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Avalon Ballroom</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.815358,-95.972187\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Avalon Ballroom was built in 1937. At the time it was built it&#039;s size (60&#039;x110&#039;) made it one of the largest structures of it&#039;s kind in western Iowa. The Remsen Jaycees and the Remsen Community Action Club have undertaken significant remodeling of the ballroom. It was inducted in to the Iowa Rock and Roll Music Association&#039;s Hall of Fame in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 Fulton St.<br />Remsen, IA 51050<br />Plymouth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Tabor Congregational Church",
            "lat": "40.900620",
            "lon": "-95.673066",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont-nhr-taborcongregationalchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tabor Congregational Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.900620,-95.673066\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Tabor Congregational Church was built from 1872 to 1875, and designed in the Gothic Revival style with pointed arch windows and a large bell tower. The congregation&#039;s founding minister was John Todd, a prominent abolitionist in Tabor. The church was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t405 Elm St.<br />Tabor, IA 51653<br />Fremont County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "G.W.S. Allen House",
            "lat": "40.968738",
            "lon": "-91.550271",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-gwsallenhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">G.W.S. Allen House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.968738,-91.550271\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1900, the G.W.S. Allen house is an excellent example of the Queen Anne architectural style, popular at the turn of the century. It has remained unaltered inside and out and is probably the best preserved home of its style in Iowa. It was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t207 E Henry St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry County Courthouse",
            "lat": "40.964864",
            "lon": "-91.552703",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-henrycocourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.964864,-91.552703\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Henry County Courthouse was built in 1914 in the Classical Revival style of architecture. It continues to serve as the center of county government and was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 W Washington St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Louisa Building",
            "lat": "40.965707",
            "lon": "-91.553107",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-louisabuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Louisa Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.965707,-91.553107\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Louisa Building represents a transitional design in Mount Pleasant architecture between the late Italianate buildings of the late 19th century and the Neo-classical buildings that would become popular in the first quarter of the 20th century. When this building was erected in 1901, it filled an empty space left by an 1882 fire that destroyed the Amber Block. The Louisa Building was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t120 S Main St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Zuhn Building",
            "lat": "40.966560",
            "lon": "-91.551538",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-zuhnbuilding.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Zuhn Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.966560,-91.551538\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1886, the Zuhn Building originally housed a manufacturing facility and is purely functional in design. The only decorative element is the metal cornice that suggests the popular late Italianate style that was used for many buildings around the Square. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 E Monroe St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Trappers Bay State Park",
            "lat": "43.453841",
            "lon": "-95.334525",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-nhr-trappersbaystatepark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Trappers Bay State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.453841,-95.334525\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civilian Conservation Corps (CCC) was a public relief program to make work for unemployed, unmarried man ages 18-25 during the New Deal, from 1933-1942. Men in the CCC worked in camps set up across the nation, and many of the camps were in Iowa State Parks. Many state park facilities date to the CCC. The buildings, structures, and objects reflect the effort to blend park amenities into the natural landscape in their material, design, workmanship, and immediate setting and reflect common types developed by the National Park Service for park construction. The Trappers Bay State Park Picnic Shelter was built with wood and stones. It is one of the largest examples of CCC building in northern Iowa. This site was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. M32<br />Lake Park, IA 51351<br />Dickinson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Monona Township Culvert",
            "lat": "43.044129",
            "lon": "-91.476611",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Monona Township Culvert</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.044129,-91.476611\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Monona Township Culvert was built in 1899 by Frank Boyle. Today, this bridge is one of seven stone arches which carry traffic on Clayton County&#039;s roadways. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t125th St.<br />Luana, IA 52156<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Olaf Auditorium",
            "lat": "42.927612",
            "lon": "-91.386371",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-stolafauditorium.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Olaf Auditorium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.927612,-91.386371\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The St. Olaf Auditorium was one of the federal relief construction projects done in rural Iowa communities between 1935 and 1943. In comparison with other WPA/PWA buildings in Iowa, the St. Olaf Opera Auditorium is a good example of the property type, both in terms of its design elements and state of preservation. It was built in 1939 and is remains in use. It was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t118 S Main St.<br />Saint Olaf, IA 52072<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Tabor College Music Hall",
            "lat": "40.898168",
            "lon": "-95.672019",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont-historicschool-taborcollegemusichall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tabor College Music Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.898168,-95.672019\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Tabor Literary Institute was established in 1853 by George Gaston, S.A. Adams, and Rev. John Todd, and became Tabor College six years later. Four-year courses were offered in the classics, science and literature. In 1898, the only remaining building, from the 6-acre campus of the college, Adams Hall, was built as a music conservatory. The college struggled financially from the beginning and closed after the 1927 commencement ceremony. The buildings were used during World War II to house German prisoners of war.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t484 Orange St.<br />Tabor, IA 51653<br />Fremont County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Ridden-Hahn Barn",
            "lat": "42.491399",
            "lon": "-91.164654",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-barn-riddenhahnbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ridden-Hahn Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.491399,-91.164654\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ridden-Hahn Barn dates back to the English settlement of the Dyersville area during the 1850s. It was built by William Ridden. During the 20th century, the barn was owned by the Hahn family. It is one of the oldest barns in Iowa. The Ridden-Hahn Barn is on property owned by the Big River Resources ethanol plant. The Plant Manager requests that barn visitors stay on Vine Road and do not approach the barn. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3252 Vine Rd.<br />Dyersville, IA 52040<br />Delaware County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Tabor Anti-Slavery Historic District",
            "lat": "40.898571",
            "lon": "-95.674100",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont-nhr-taborantislaveryhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tabor Anti-Slavery Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.898571,-95.674100\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The town of Tabor played a significant role in the western antislavery movement of the 1850s. It became a staging area for Kansas-bound Free Soil settlers during the Bleeding Kansas conflict, serving as a place to store arms and provisions. The town square became an important meeting place for local abolitionists and was also used as a training camp by local militiamen. Tabor continued to be known as an antislavery stronghold and a stop on the Underground Railroad for freedom seekers coming from Missouri, Kansas, and Nebraska. The Tabor Antislavery Historic District was added to the National Register of Historic Places in 2007. This is stop #2 on the Freedom Trail tour: After an overnight stay in Civil Bend, John Brown and his group reached Tabor on February 5, 1859. Brown had spent a good deal of time in Tabor, and he and his men had spent four months there two years prior. However, upon their 1859 arrival, Brown quickly noticed the displeasure of the townspeople over his recent actions in Missouri. Assisting freedom seekers escaping slavery was one thing; actively freeing the enslaved from their masters and killing people in the process was entirely another. Dismayed by this cold reception, Brown and his group left Tabor sooner than planned, setting out on February 12.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tPark St.<br />Tabor City Park<br />Tabor, IA 51653<br />Fremont County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "underground-railroad.png",
            "title": "Rev. John Todd House",
            "lat": "40.898945",
            "lon": "-95.676435",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont-nhr-revjohntoddhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/underground-railroad.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rev. John Todd House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.898945,-95.676435\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1853 by Rev. John Todd, this two-story, clapboard house was an established Underground Railroad stop. The basement of the Todd House was used to aid escapees during their journey and to store arms that were later used in John Brown&#039;s raid at Harper&#039;s Ferry, Virginia. The site was added to the National Register of Historic Places in 1975.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tPark St.<br />Tabor, IA 51653<br />Fremont County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.taboriowahistoricalsociety.org/todd.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John Christian and Bertha Landrock Reichert House",
            "lat": "41.769231",
            "lon": "-91.122221",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cedar-nhr-johnberthareicherthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Christian and Bertha Landrock Reichert House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.769231,-91.122221\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John Christian and Bertha Landrock Reichert House was constructed in 1883, and was designed by New York City architect S. B. Reed. The Reichert House is a text book example of a relatively rare home style in Iowa and the Midwest. Because of its architect, this house exhibits the squat tower with steeply pitched roof and porch with diagonal or curving support braces more often encountered on East Coast examples. John Christian moved to Tipton from Germany in 1855. He worked as a carpenter. The house was sold to Mr. and Mrs. Frank D. Wingert in 1897. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t508 E 4th St.<br />Tipton, IA 52772<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Read Township Culvert",
            "lat": "42.833322",
            "lon": "-91.319122",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Read Township Culvert</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.833322,-91.319122\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">131mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bridge is one of seven stone arches which carry traffic on Clayton County’s roadways. As a group, they exhibit an exceptionally high degree of craftsmanship and historical integrity. It was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHarbor Rd.<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Pleasant Lawn School Historic District",
            "lat": "41.017646",
            "lon": "-91.495340",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pleasant Lawn School Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.017646,-91.495340\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">131.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pleasant Lawn School complex is the only intact example of an Iowa “rural campus”, including a school, teacherage, and bus barn. The complex was a product of the 20th century Iowa educational phenomenon known as the rural consolidated school district. At its peak from 1920 to 1950, 89 districts were established in this way. This system provided a larger tax base for the funding of public education and its changing needs. The complex was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHwy. 218<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-ballrooms.png",
            "title": "Nob Hill Ballroom",
            "lat": "43.364654",
            "lon": "-91.805529",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-ballrooms.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nob Hill Ballroom</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.364654,-91.805529\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">131.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Nob Hill Ballroom (formerly the Breezy Hill Pavilion) opened in 1937 as a dance hall catering to square dancers. After World War II the pavilion hosted many entertainers and dance bands, one of the most famous being the Lawrence Welk Orchestra. The pavilion was remodeled in 1964 and the name changed to Nob Hill Supper Club and Ballroom. It was inducted in to the Iowa Rock and Roll Music Association&#039;s Hall of Fame in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2955 US Hwy. 52<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Midwest Memories Museum and Shoppe",
            "lat": "40.954072",
            "lon": "-91.546811",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Midwest Memories Museum and Shoppe</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.954072,-91.546811\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">131.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Midwest Memories Museum and Shoppe is a collection of agricultural artifacts from all around the country. Their prize exhibit is milk bottles from all 50 states, as well as one room school memorabilia, historic milking machines, cream separators, butter churns, and replica farm tractors and implements.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t217A W Main St.<br />Wayland, IA 52654<br />Henry County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.331.5986</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://midwestmuseum.blogspot.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Theatre Museum of Repertoire Americana",
            "lat": "40.953618",
            "lon": "-91.546680",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Theatre Museum of Repertoire Americana</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.953618,-91.546680\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">131.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Theatre Museum of Repertoire Americana is a museum dedicated to traveling theatre groups of the 1910s-1920s. The museum has a unique collection of memorabilia from various venues of American popular entertainment. This includes scenery, costumes, photographs, posters, handbills, musical instruments, scripts, playbills, music, letters, and programs.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t405 E Threshers Rd.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.385.9432</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://thetheatremuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Midwest Old Settlers and Threshers",
            "lat": "40.954071",
            "lon": "-91.547266",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-historymuseum-midwestoldthreshers.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Midwest Old Settlers and Threshers</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.954071,-91.547266\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">131.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Midwest Old Settlers and Threshers Association was founded in 1950. The original idea to form Midwest Old Threshers Association, a non-profit organization, came from a discussion between Clark Everts, W.E. (Ted) Detrick, Ray H. Ernst and Herman E. Elgar in September 1949. The four were returning from the Zehr Threshing Reunion in Pontiac, Illinois. Considering the many Steam Engines and Separators in Henry County, Iowa, the men decided there was a great potential to host a Threshing Reunion in Mt. Pleasant, Iowa. After several winter meetings, the election of a Board of Directors and lengthy discussions about a Mt. Pleasant event. The Association was chartered on August 21, 1950 and the first Reunion was held September 20 - 21, 1950. The records show that 15 Steam Engines and 8 Separators were exhibited with an estimated 10,000 people attending the first Reunion. The Old Threshers Reunion is held annually on Labor Day weekend. In addition to the tractors, traction steam engines and gas engines, there are also two historical villages on site and three one-room schools - the Colfax School, the Oak Ridge School and the West Pleasant Lawn No.3 School.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t405 E Threshers Rd.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.385.8937</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.oldthreshers.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Joshua Newbold Gravesite",
            "lat": "40.951556",
            "lon": "-91.542895",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-govgravesite-joshuanewbold.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Joshua Newbold Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.951556,-91.542895\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">131.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Joshua G. Newbold (May 12, 1830 - June 10, 1903) served as the 10th Governor of Iowa from 1877-1878. He served as mayor of Mount Pleasant from 1899 until his death in 1903. His gravesite is located at Forest Home Cemetery in Mount Pleasant.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1201 N Broadway St.<br />Mount Pleasant, IA 52641<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Hunter School",
            "lat": "40.873046",
            "lon": "-95.671552",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont-nhr-hunterschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hunter School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.873046,-95.671552\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">131.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Hunter School, a one-room school house, was built in 1901 by G. W. Clark of Randolph. The school was used until 1920, when the Tabor School District was consolidated and buses were purchased to bring rural students to school in Tabor. Fremont County had 120 one-room schools, 11 of which were located in Green Township. This is the only remaining one-room school in Green Township. Hunter School, with its unique corner tower entrance and small belfry, was added to the National Register of Historic Places in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2633 120th St.<br />Tabor, IA 51653<br />Fremont County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cook-Johnson House",
            "lat": "40.858516",
            "lon": "-91.622736",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-cookjohnsonhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cook-Johnson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.858516,-91.622736\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cook-Johnson House was built around 1850 and is a product of the settlement of the area by the members of the Society of Friends. It was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3091 Franklin Ave.<br />Salem, IA 52649<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Allen House",
            "lat": "42.484171",
            "lon": "-91.130681",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-allenhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Allen House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.484171,-91.130681\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Allen House is a well-preserved example of mid-nineteenth century affluent taste in architectural styles. Built by an active entrepreneur, it reflects his awareness of contemporary trends of the time. The brick residence stands as an important reminder of Dyersville&#039;s year in the sun. The Allen House was added to the National Register of Historic Places in 1975.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t515 1st Ave. W<br />Dyersville, IA 52040<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bicksler Block",
            "lat": "40.854861",
            "lon": "-91.621581",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-bickslerblock-salem.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bicksler Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.854861,-91.621581\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bicksler Block played a major role in the commercial, public, and social history of Salem. It was built in 1886 and added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 W Cherry St.<br />Salem, IA 52649<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "zoos-and-wildlife.png",
            "title": "Seed Savers Exchange",
            "lat": "43.384679",
            "lon": "-91.807449",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/zoos-and-wildlife.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Seed Savers Exchange</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.384679,-91.807449\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Heritage Farm is a 890-acre living museum. An interpretive trail winds through vegetable and flower gardens, an heirloom orchard, restored prairie and past herds of Ancient White Park cattle. At the farm, you can learn about seed preservation and the more than 25,000 varieties of endangered vegetables at Seed Savers.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3074 N Winn Rd.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.5990</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.seedsavers.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Des Moines River Lock No. 5",
            "lat": "40.697615",
            "lon": "-91.804921",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines River Lock No. 5</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.697615,-91.804921\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bonaparte Lock is one of three structures remaining from the Des Moines River Improvement project, which in the 1850s sought to make the Des Moines River navigable from its mouth to Des Moines. As conceived, the project was to turn 204 miles of the Des Moines into a navigable stream by a series of 28 locks and dams. Although only three locks were completed, the project was partially successful: navigation via locks was possible as far upriver as Keosauqua, but the project was ended in 1858. The locks were abandoned as a result of mismanagement and the threat of competition from the Keokuk and Des Moines River Railroad. The Des Moines River Lock No. 5 was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBonaparte City Park<br />Bonaparte, IA 52620<br />Van Buren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Meek&#039;s Flour Mill",
            "lat": "40.697933",
            "lon": "-91.804347",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Meek&#039;s Flour Mill</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.697933,-91.804347\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Meek’s Mill is one of three remaining 19th Century industrial structures, all of which are compactly located along the Des Moines River in Bonaparte. All of the structures were built by the family of William Meek, an early area settler. His oldest son Robert F. Meek was the successor to the Meek businesses, but he was ably assisted by his brothers Isaiah and Joseph. Meek&#039;s Flour Mill was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t713 1st St.<br />Co. Rd. J40<br />Bonaparte, IA 52620<br />Van Buren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Aunty Green Hotel",
            "lat": "40.698764",
            "lon": "-91.801882",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Aunty Green Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.698764,-91.801882\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Aunty Green Hotel is considered the first brick building erected in Bonaparte, a small river town founded on the milling (lumber and flour) businesses of William Meek and his sons in 1837. This hotel, the second in Bonaparte, was built by John Green, a native of England. His wife, Mary apparently ran the hotel for many years after John’s death, giving the business the name by which it is known today. The Aunty Green Hotel was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t210 Washington St.<br />Bonaparte, IA 52620<br />Van Buren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Corriell Barn",
            "lat": "41.519073",
            "lon": "-91.165970",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Corriell Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.519073,-91.165970\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This farm came into the Corriell family in 1907, and 2007 marked 100 years of their ownership of the property. Wayne Corriell is very proud of this farm&#039;s heritage. Everything has been well-preserved including the 21 unique buildings. The earliest one is a barn that dates back to the 1870&#039;s when it was a house at that time. All the overhead wiring between buildings has recently been put underground. A replacement for the original Aermotor windmill has been placed on the old tower. There is a scale house that is still used, that dates back to the early 1900&#039;s. The barn was featured on the Iowa Barn Foundation&#039;s 2007 Muscatine County Barn Tour and Picnic.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1541 Kelly Ave.<br />Atalissa, IA 52720<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Farmers Savings Bank",
            "lat": "40.854549",
            "lon": "-91.621691",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-farmerssavingsbank-salem.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Farmers Savings Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.854549,-91.621691\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Farmers Savings Bank operated in Salem from 1917 to 1933. The bank was formed by local residents who wanted more options for their banking, and was one of a number of farmers banks formed across Iowa during the golden age of agriculture in the early 20th century. It was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 S Main St.<br />Salem, IA 52649<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Isaac C. and Agnes Reeves House",
            "lat": "40.852838",
            "lon": "-91.621750",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-isaacagnesreeveshouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Isaac C. and Agnes Reeves House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.852838,-91.621750\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Isaac and Agnes Reeves House is an example of the Italianate style of residential architecture, popular during the late 19th century. It was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t209 S Main St.<br />Salem, IA 52649<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bonaparte Historic Riverfront District",
            "lat": "40.698043",
            "lon": "-91.803101",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bonaparte Historic Riverfront District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.698043,-91.803101\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Bonaparte’s National Historic Riverfront District offers a unique blend of yesterday’s ambience, today’s progress, and tomorrow’s success. Bonaparte has been named the smallest Main Street Community in the United States and is one of just five winners in the entire United States of the &quot;Great American Main Street Award&quot;. Bonaparte, originally named Meeks Mills, Wisconsin Territory, was founded in 1837 on the banks of the Des Moines River. The Bonaparte Historic Riverfront District was added to the National Register of Historic Places in 1989.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st St.<br />Bonaparte, IA 52620<br />Van Buren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.592.3400</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://bonaparte-iowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Plagman Barn",
            "lat": "42.755609",
            "lon": "-91.242522",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-barn-plagmanbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Plagman Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.755609,-91.242522\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This site is home to the Northeast Iowa Farm Antique Association and their annual show days, generally held the third full weekend in September.  On site is a restored barn and school, as well as several other antique buildings.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tGarber Rd.<br />Co. Rd. C7X<br />Garber, IA 52048<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Lewelling Quaker Museum",
            "lat": "40.851541",
            "lon": "-91.621694",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-historymuseum-lewellingquakermuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lewelling Quaker Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.851541,-91.621694\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lewelling Quaker Museum is located in the Henderson Lewelling historic home that was built in the 1840s. Lewelling played an active role in the Underground Railroad and helped to establish the Abolition Friends Monthly Meeting in Salem. Lewelling&#039;s home was likely a meeting place for the Abolition Friends and provided shelter for fugitive slaves seeking their freedom. The house has two trap doors and a multitude of slavery artifacts and stories. The Henderson Lewelling house was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 S Main St.<br />Salem, IA 52649<br />Henry County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.258.4341</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "underground-railroad.png",
            "title": "Collins-Bond House",
            "lat": "40.851398",
            "lon": "-91.621116",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-collinsbondhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/underground-railroad.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Collins-Bond House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.851398,-91.621116\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Peter Collins purchased this property in 1842, after moving to Iowa from New York, and built the house in 1843. While Collins and his wife lived in the house, it was part of the Underground Railroad and offered shelter to runaway slaves seeking their freedom. In 1851, Eli and Mary Bond gained ownership of the house, and it is not known whether they continued to participate in Underground Railroad activities. The house was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t402 S Main St.<br />Salem, IA 52649<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Basilica of St. Francis Xavier, Church and Rectory",
            "lat": "42.484270",
            "lon": "-91.125980",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-basilicastfrancisxavier.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Basilica of St. Francis Xavier, Church and Rectory</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.484270,-91.125980\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Basilica of St. Francis Xavier possesses twofold significance at both the local and state levels. First this edifice is an outstanding example of a building influenced by the second phase of the Gothic Revival movement, and it exhibits influences drawn from a variety of European influences. Secondly, the commission for St. Francis was one of the most outstanding and perhaps best known church designs that resulted from the joint partnership of Fridolin Heer Jr. after the latter completed his architectural education at the Royal Architectural school in Stuttgart, Germany in 1884. The Basilica of St. Francis Xavier Church and Rectory was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t104 3rd St. SW<br />Dyersville, IA 52040<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.875.7325</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.xavierbasilica.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Dyersville Area Historical Society and Dyer-Botsford Doll Museum",
            "lat": "42.484354",
            "lon": "-91.120806",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-historymuseum-dyerbotsforddollmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dyersville Area Historical Society and Dyer-Botsford Doll Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.484354,-91.120806\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This charming Victorian home, built in 1850, features 2,000 dolls, a hand-carved miniature circus, a replica of a castle built in 1850, a German feather Christmas tree, and various other antique furnishings. Also at the site, the Dyersville Area Historical Society has an extensive collection of genealogical information and militaria from the American Civil War, making the historical society an excellent resource for anyone seeking information on Dyersville residents.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t340 1st Ave. E<br />Dyersville, IA 52040<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.875.2504</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://dyersvillehistory.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Memorial Building",
            "lat": "42.484847",
            "lon": "-91.120644",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-dyersvillememorialbuilding.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Memorial Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.484847,-91.120644\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Memorial Building, which houses the City Hall, was built in 1929 and served as a post office and the home of the American Legion. It is also home to all the administrative offices for the City of Dyersville, as well as the Police Department. The Memorial Building was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t340 1st Ave. E<br />Dyersville, IA 52040<br />Dubuque County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofdyersville.com/CityAdServ/cas_about.cfm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "National Farm Toy Museum",
            "lat": "42.470973",
            "lon": "-91.111064",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">National Farm Toy Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.470973,-91.111064\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">133.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Known as “The Farm Toy Capital of the World,” the National Farm Toy Museum features thousands of toys, exhibits, and displays. It features popular brands, such as John Deere, Case IH, and Massey Ferguson and numerous others. Here, visitors discover how farming has changed throughout the years and the history of the tractors that help make successful harvests happen through an exploration of farming toys.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1110 16th Ave. Ct. SE<br />Dyersville, IA 52040<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.875.2727</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://nationalfarmtoymuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Garnavillo Township Bridge",
            "lat": "42.862897",
            "lon": "-91.282605",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-bridge-garnavillotownshipbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Garnavillo Township Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.862897,-91.282605\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">133.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Garnavillo Township Bridge was built in 1902 by A.C. Boyle and Company from McGregor, Iowa. As recently as 1991, the bridge was one of seven stone arch bridges still carrying traffic on Clayton County roads. It was added to the National Register of Historic Places in 1998. The Garnavillo Township Bridge can be seen under the modern bridge.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t250th St.<br />Garnavillo, IA 52049<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Burr Oak Savings Bank",
            "lat": "43.457944",
            "lon": "-91.865263",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Burr Oak Savings Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.457944,-91.865263\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">133.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Burr Oak Savings Bank is significant locally to the economic prosperity of Burr Oak at the beginning of the 20th century. Its construction in 1910 was during a boom period for agricultural production and land values in Iowa that saw hundreds of similar small “savings banks” constructed throughout the state. It is also a good example of the one-part commercial block form, one of the most common forms of vernacular commercial architecture used along American’s Main Streets during the late 19th and early 20th centuries. It is the only building to survive along Burr Oak’s main street from this boom period. On April 22, 1931, the first bank robbery in Winneshiek County occurred at the Burr Oak Savings Bank, when two young bandits took $1,000 and locked the bank&#039;s employees and patrons in the vault before making their escape. It was added to the National Register of Historic Places on Aug. 8, 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3608 236th Ave.<br />Burr Oak, IA 52131<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Laura Ingalls Wilder Park and Museum",
            "lat": "43.457597",
            "lon": "-91.865764",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Laura Ingalls Wilder Park and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.457597,-91.865764\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">133.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>At the Laura Ingalls Wilder Park and Museum you can experience the childhood home of Laura Ingalls Wilder and her family who lived in Burr Oak from 1876-1877. Laura Ingalls Wilder is a well known American author who wrote the &quot;Little House&quot; series of children&#039;s books. While living in Burr Oak, the Ingalls first lived and worked in the Masters Hotel and when Charles Ingalls started a feed mill, the family lived on the second floor of Kimball&#039;s Grocery Store. After a fire in the saloon adjacent to the grocery store, the Ingalls family moved to a red-brick house on the edge of Burr Oak where the Ingalls&#039; youngest daughter, Grace, was born. Shortly after Grace&#039;s birth the family moved back to Walnut Grove, Minnesota. The Masters Hotel is one of a rapidly dwindling number of pre-1860 buildings built specifically as a hotel. The hotel was added to the National Register of Historic Places on Jan. 27, 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3603 236th Ave.<br />Burr Oak, IA 52101<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.735.5916</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://lauraingallswilder.us\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Boniface of New Vienna Historic District",
            "lat": "42.550914",
            "lon": "-91.114802",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-stbonifacenewviennahistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Boniface of New Vienna Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.550914,-91.114802\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">134.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Boniface of New Vienna Historic District contains some of the best examples of late Victorian architectural design in this community. Most of the buildings are constructed of high quality stone or brick and exhibit a high degree of craftsmanship in their design and construction. The St. Boniface of New Vienna Historic District was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t7401 Columbus St.<br />New Vienna, IA 52065<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Garnavillo Township Culvert",
            "lat": "42.867623",
            "lon": "-91.269613",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Garnavillo Township Culvert</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.867623,-91.269613\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">134.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Garnavillo Township Culvert was constructed in 1899 by Josef Vogt of Guttenberg, Iowa. Iris Avenue has been re-routed, and the stone culvert is west of the current roadway. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIris Ave.<br />Garnavillo, IA 52049<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Heritage House Museum",
            "lat": "42.550043",
            "lon": "-91.113770",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-historymuseum-heritagehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Heritage House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.550043,-91.113770\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">134.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>A former convent, the Heritage House Museum in New Vienna is now a German Museum. It features 23 rooms filled with a variety of antiques, militaria, artifacts, and hand-crafted quilts.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t7396 Columbus St.<br />New Vienna, IA 52065<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.921.7702</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://newviennaheritagehousemuseum.org/index.php\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Lamm-Pollmiller Farmstead District",
            "lat": "40.820651",
            "lon": "-91.605863",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-lammpollmiller.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lamm-Pollmiller Farmstead District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.820651,-91.605863\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">134.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lamm-Pollmiller Farmstead District was an important part of the settlement and agricultural history of Salem. It was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1584 335th St.<br />Salem, IA 52649<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Ocheyedan Mound State Preserve",
            "lat": "43.401504",
            "lon": "-95.522988",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/osceola-botany-ocheyedanmound.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ocheyedan Mound State Preserve</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.401504,-95.522988\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">134.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Ocheyedan Mound State Preserve is located in the Des Moines Lobe landform region and is named after a large glacial hill called a &quot;kame,&quot; which formed during a glacier melting around 12,000 years ago. It&#039;s made of sand, gravel and small boulders deposited and heaped together by streams of glacial meltwater. Only part of the Ocheyedan Mound is contained on the preserve, as it is almost 40 acres in size, and it&#039;s one of the highest points in Iowa. Sioux Indians used to visit the mound, and pioneers used it as a landmark. More recently, it was a popular place for picnics and winter activities like skiing. The mound&#039;s vegetation is slowly returning to native grasses and flowers.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6400 170th St.<br />Ocheyedan, IA 50134<br />Osceola County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.785.3709</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.osceolacountyia.org/county/office/27\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Monona Historical Society and Museum",
            "lat": "43.050981",
            "lon": "-91.388826",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Monona Historical Society and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.050981,-91.388826\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">134.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Monona Historical Museum is located in a 1900 Victorian home where several rooms are furnished from the time period. Displays include an collection of artifacts including small farm equipment, kitchen ware, war relics, telephone switchboard, city jail and woodcarving. The adjoining Willa Helwig History Center is a great place for researching family history, reading newspapers and learning about the Monona community.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t302 S Egbert St.<br />Monona, IA 52159<br />Clayton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.539.2640</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.mononamuseum.org/index.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Plattsmouth Bridge",
            "lat": "41.001216",
            "lon": "-95.866348",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mills-nhr-plattsmouthbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Plattsmouth Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.001216,-95.866348\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">135.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Plattsmouth Bridge carries U.S. Highway 34 over the Missouri River between Cass County, Nebraska and Mills County, Iowa. In 1929, the bridge was designed, fabricated and erected by the Omaha Structural Steel Works and consists of seven spans, a 402-foot cantilevered through truss over the river&#039;s navigable channel, anchored by flanking 201-foot through spans, with two 203-foot and two 104-foot deck trusses on the eastern flood plain. Tolls are collected when crossing the bridge.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2398 Livingston Highway<br />Plattville, IA 51561<br />Mills County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Merlin Hulse Barn",
            "lat": "41.873838",
            "lon": "-91.021343",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Merlin Hulse Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.873838,-91.021343\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">135.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The barn is one mile south of US Highway 30. Clydesdale horses have been housed in the barn.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1770 150th St.<br />Clarence, IA 52216<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Wyoming Historical Museum (Williams Hotel)",
            "lat": "42.058711",
            "lon": "-91.006255",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wyoming Historical Museum (Williams Hotel)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.058711,-91.006255\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">135.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wyoming Historical Museum features a plethora of artifacts related to the area. Several are displayed in themed rooms, including a barbershop, dentist office, school room, hotel room, kitchen, clothing room and quilt room. Other items on display include tools, pharmaceutical items, guns, sewing machines, printing items and arrowheads. \r\n\r\nThe Wyoming Historical Museum is in the historic Williams Hotel, built by Royal Seneca Williams in 1878. Among other things – and in addition to his Civil War service – Williams was the first successful brick maker in the Wyoming area. At his factory, he made brick from the native clay found in the area. The Williams Hotel is constructed from his bricks. \r\n\r\nThe Wyoming Historical Museum was devastated by fire in 2013, has been restored and is open by appointment only.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t117 W Main St.<br />Wyoming, IA 52362<br />Jones County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.488.3198</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://wyomingia.org/landmarks/hotel-williams-museum/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Stange Barn",
            "lat": "41.442650",
            "lon": "-91.137268",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stange Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.442650,-91.137268\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">135.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn, which dates back to the 1870&#039;s, is on the Donald Stange home farm. The Stange&#039;s purchased the farm in 1943. The barn had 6 horse stalls which were removed to make space for present day laying hens. The barn is also now home to a flock of sheep. The barn has unusual, vertical support poles made of hand-hewn oak, most likely from trees growing nearby. The barn was featured on the Iowa Barn Foundation&#039;s 2007 Muscatine County Barn Tour and Picnic.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2190 IA Hwy. 22<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dr. Martin H. Calkins House and Office",
            "lat": "42.058649",
            "lon": "-91.005276",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. Martin H. Calkins House and Office</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.058649,-91.005276\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">135.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Calkins House and Office is a reminder of Wyoming’s first permanent physician and is representative of the life of an early rural Iowa country doctor. When Dr. Calkins and his wife arrived in 1856, Wyoming had only a dozen houses and places of business. Besides ministering to the needs of the surrounding community, the residents of Wyoming elected him as the first mayor and also sent him to the State Legislature. The Calkins House and Office was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWashington St.<br />Wyoming, IA 52362<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Holtkamp Round Barn",
            "lat": "40.821425",
            "lon": "-91.579329",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-holtkamproundbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Holtkamp Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.821425,-91.579329\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">135.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Holtkamp Round Barn was built in 1918 and is made of clay tile and features an aerator and two-pitch roof. It was one of two round barns built according to plans by the Permanent Building Society and was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tU.S. Rte. 218<br />Salem, IA 52649<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Kruger Barn",
            "lat": "43.255824",
            "lon": "-91.565026",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/allamakee-barn-krugerbarn-2.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kruger Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.255824,-91.565026\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">135.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This large dairy barn was built in 1915 by Roger and Janet Kruger. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310 N Line Dr.<br />Waukon, IA 52172<br />Allamakee County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Marlow-Saak Barn",
            "lat": "43.274367",
            "lon": "-91.584768",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marlow-Saak Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.274367,-91.584768\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">135.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn was built in 1890s and measures 70x40. Saak family names are on the interior. &quot;As an immigrant from England and recent American citizen, I have come to realize Midwestern barns are like the churches and cathedrals of Europe in scale and importance to the landscape,&quot; wrote the owner.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1431 Pole Line Rd.<br />Waukon, IA 52172<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Tri-County Historical Society Museum",
            "lat": "42.295698",
            "lon": "-91.019704",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tri-County Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.295698,-91.019704\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">135.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Tri County Historical Society Museum has a large collection of artifacts from the Cascade area. The museum has exhibits on the Native American tribes that inhabited the area, a large military collection, and an showcase for Hall of Fame pitcher Urban &quot;Red&quot; Faber.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t608 2nd Ave. SW<br />Cascade, IA 52033<br />Jones County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.852.3371</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://tricountyhistoricalsociety.com/the-museum\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "I.O.O.F. Hall and Garnavillo History Society Museum",
            "lat": "42.868162",
            "lon": "-91.236471",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-ioofhall.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">I.O.O.F. Hall and Garnavillo History Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.868162,-91.236471\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">135.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The IOOF Hall was built in 1860, by the local Odd Fellows chapter. The first floor housed the Garnavillo Union library, and was the site of numerous community gatherings. The IOOF members met in the upper, ceremonial room, which as was (and is) typical of many fraternal organizations, was never open to the public. In 1936 the local Masonic order purchased the building (the Odd Fellows having disbanded). The Masons substituted their own emblems for those of the Odd Fellows, but otherwise left the lodge room intact. The Garnavillo Historical Society purchased the building in 1976, and maintains it as a museum. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t199 W Center St.<br />Garnavillo, IA 52049<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Garnavillo Historical Museum",
            "lat": "42.868393",
            "lon": "-91.237564",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-historymuseum-garnavillohistoricalmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Garnavillo Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.868393,-91.237564\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">135.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Garnavillo Historical Museum Complex includes a museum containing thousands of early manuscripts dating back to 1750 (including one of two known newspapers reporting the death of George Washington), important maps and photos, Native American artifacts and much more. Across the street in the City Park is an original Log Cabin dismantled and reconstructed, complete with early furnishings, working stone fireplace and loft with ladder. The museum is in the First Congregational Church, which was added to the National Register of Historic Places on March 25, 1977. The Garnavillo Church was constructed in 1866 by members of the Congregational Church, organized in 1844 by James J. Hill, a member of the &quot;Iowa Band&quot; of missionaries, who left Garnavillo before this church was built. It replaced an earlier structure built soon after the church was formed. Later, this church was used as a community hall and meeting house, then a public library, then a school, until acquired in 1965 by the Garnavillo Historical Society for use as a local museum. Another part of the complex is the Early Lodge Hall built in 1860. For genealogists, there is a reference file with over 12,950 names and 35,000 historical references. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Washington St. and W Centre St.<br />Garnavillo, IA 52049<br />Clayton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.964.2191</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://garnavilloia.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Thompson Seven Springs Farm Barn",
            "lat": "41.436503",
            "lon": "-91.129152",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thompson Seven Springs Farm Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.436503,-91.129152\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">135.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>James and Linda Thompson now own the beautiful Seven Springs farm. The barn has double walls for warmth and still has its original Louden materials handling equipment. The barn was featured on the Iowa Barn Foundation&#039;s 2007 Muscatine County Barn Tour and Picnic.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2094 Seven Springs Rd.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Cascade Historic Limestone Silo and Agricultural Interpretive Center",
            "lat": "42.297801",
            "lon": "-91.011497",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cascade Historic Limestone Silo and Agricultural Interpretive Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.297801,-91.011497\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">136.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The cornerstone of the site is the interpretation of early Midwestern farmers and farmsteads; displayed in the historic limestone silo built in the early 1930s. Antique agricultural equipment, in addition to interpretive signage, provide visitors knowledge of how early farmers worked the lands, used the local natural resources and helped support the economy.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t215 Pierce St. SW<br />Cascade, IA 52033<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.852.7595</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://cityofcascade.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sauser Lane House",
            "lat": "42.297899",
            "lon": "-91.012362",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sauser Lane House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.297899,-91.012362\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">136.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The only known house designed by Jacob Daverman and Son of Grand Rapids, Michigan, the Sauser Lane house combines elements of the neoclassical and Edwardian modes and is probably the most ornate and detailed residence in the small town of Cascade. The Sauser Lane House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 2nd Ave. SW<br />Cascade, IA 52033<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fremont County Courthouse",
            "lat": "40.747769",
            "lon": "-95.646844",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont-nhr-fremontcountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fremont County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.747769,-95.646844\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">136.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The current Fremont County Courthouse was built in 1889. This simple courthouse, constructed of brick and granite, replaced the original courthouse that stood at the site. The first courthouse was built in 1860 and was a two-story structure of brick construction with a heavy tower and tin roof. On a winter day in 1863, a merchant reported that two one-half kegs of gunpowder had been stolen. The whereabouts of these kegs was discovered on a November evening about 9:00 p.m. when all the windows and doors in the courthouse were blown from the structure and the entire upper floor and roof were thrown out of place. The county repaired the damages and the courthouse remained in use for another 25 years when underlying damage from the 1863 blast finally required a new structure to be built. The current courthouse was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t506 Filmore St.<br />Sidney, IA 51652<br />Fremont County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Fremont County Historical Center and Iowa&#039;s Championship Rodeo Musuem",
            "lat": "40.747666",
            "lon": "-95.645835",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont-historymuseum-fremontcountyhistorycenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fremont County Historical Center and Iowa&#039;s Championship Rodeo Musuem</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.747666,-95.645835\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">136.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fremont County Historical Museum Complex, on the east side of the courthouse square, was established in 1976. The complex is made up of the Main Museum, Sunnyside Country School, and The Gathering Place, which was formerly the First Baptist Church of Sidney. A major portion of the complex is Iowa’s Championship Rodeo Museum, which focuses on the Sidney Rodeo – one of America’s best small outdoor rodeos.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t609 Cass St.<br />Sidney, IA 51652<br />Fremont County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.374.6098</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.sidneyia.net/museum.php\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Roghair Barn",
            "lat": "43.026863",
            "lon": "-95.950224",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-barn-roghairbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Roghair Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.026863,-95.950224\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">136.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This farm was purchased by Roghair family in 1935 and has a magnificent collection of carefully maintained original buildings including 1911 summer kitchen and 1916 barn.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4242 430th St.<br />Alton, IA 51003<br />Sioux County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Red Bridge",
            "lat": "43.130858",
            "lon": "-91.424699",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/allamakee-nhr-redbridge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Red Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.130858,-91.424699\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">136.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Red Bridge spans the Yellow River northeast of Postville, in Franklin Township. The Allamakee County Engineer designed and constructed this 98-foot timber truss—the first bridge at this crossing—in 1920. The structure is now abandoned with its stringers and deck removed. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tFuel Hollow Rd.<br />Over Yellow River<br />Postville, IA 52162<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Froelich General Store and Tractor Museum",
            "lat": "43.007084",
            "lon": "-91.321731",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-historymuseum-froelichmuseum-5b-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Froelich General Store and Tractor Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.007084,-91.321731\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">136.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>At the site, in 1892, John Froelich built the first gasoline powered tractor. From this invention, the Waterloo Gasoline Tractor Engine Co. was started, but they were later taken over by the John Deere Company. In the area, one can visit a restored 1891 mercantile store and the Giard #5 School, dating to 1866. The school includes a chalk writing on the blackboard from 1906 that was uncovered during the renovation process, a woodstove, wood desks, and a the original school bell in the bell tower. John Froelich is listed in the Iowa Inventors Hall of Fame. He is credited with having invented many things: a washing machine, dish washer and dryer, a mechanical corn picker, and the mounting of a gasoline engine on his well drilling outfit. It is this invention that led him to modify the gasoline engine for a tractor for threshing. John Froelich also invented the first air conditioner, which went on to become the Carrier Air Conditioning Company.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tFroelich Rd.<br />McGregor, IA 52157<br />Clayton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.536.2841</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://froelichtractor.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "television-and-movie-sites.png",
            "title": "&quot;Field of Dreams&quot; Movie Site",
            "lat": "42.497809",
            "lon": "-91.054925",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-tvmoviesite-fieldofdreams.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/television-and-movie-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">&quot;Field of Dreams&quot; Movie Site</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.497809,-91.054925\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">136.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>In the 1989 film &quot;Field of Dreams,&quot; character Ray Kinsella (Kevin Costner) makes peace with his past, saves the farm from foreclosure, and transforms a corner of his land into a mecca for modern-day pilgrims seeking relief from contemporary life. The Iowa farmer hears a voice say, &quot;If you build it, he will come,&quot; and is inspired to build a baseball field in his corn field. The film paints rural Iowa as a land of simplicity, safety, innocence and beauty.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t28995 Lansing Rd.<br />Dyersville, IA 52040<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Sunnyside School",
            "lat": "40.747901",
            "lon": "-95.645590",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont-historicschool-sunnysideschool8.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sunnyside School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.747901,-95.645590\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">136.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sunnyside School is a one room school house that was in operation from 1894-1945. The school was originally located in Section 30, Washington Township and nestled along the Loess Hills. The school house was purchased in 1969 and moved to the Fremont County Historical Center complex in Sidney. The school house is open by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t813 Ohio St.<br />Sidney, IA 51652<br />Fremont County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.sidneyia.net/museum.php\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Coyner Barn",
            "lat": "41.439459",
            "lon": "-91.117733",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Coyner Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.439459,-91.117733\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">136.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Bricklayers came through Muscatine in the late 1800&#039;s and built barns and houses, including the interesting Coyner barn. This attractive brick barn is a prominent feature on Highway 22, located a few miles west of Muscatine. The unique diamond designs in the brick are actually openings in the barn walls for ventilation. The farm was purchased in 1905 by Kenton Coyner&#039;s grandfather. The barn was on the farm at the time, and the Coyner&#039;s think it was built about 1890. There used to be a dirt ramp and a wooden bridge leading up to the big white sliding doors that opened up to the upper area to allow wagons with grain to be unloaded into overhead bins. Hay was stored above the grain bins. In the winter, wagons were also housed on this upper level of the barn. There is an unused stairway leading to the cupola which had shutters on all sides at one time. The barn was featured on the Iowa Barn Foundation&#039;s 2007 Muscatine County Barn Tour and Picnic.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2304 IA Hwy. 22<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chautauqua Pavillion",
            "lat": "40.681914",
            "lon": "-95.569246",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont-nhr-chautauquapavilion.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chautauqua Pavillion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.681914,-95.569246\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">136.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Chautauqua movement was established in New York in 1874 and quickly became a major cultural influence in the Midwest. A Chautauqua Assembly brought in entertainment and culture for the whole community, with speakers, teachers, musicians, entertainers, preachers and specialists of the day. In 1897, William &quot;Coin&quot; Harvey, a political ally of Secretary of State William Jennings Bryan, put up $500 towards the construction of the Riverton Pavilion to provide an encampment area for his newly founded group, the Patriots of America. Lodges were to have their own ritual, as in other national fraternal orders, and he even envisioned a women&#039;s auxiliary to be called the Daughters of the Republic. The Patriots of America group died out in a few short years and the pavilion was used by the community for Chautauqua assemblies and other local events. The pavilion, which was added to the National Register of Historic Places in 1974, is one of only a few remaining Chautauqua structures remaining in Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCity Park<br />Riverton, IA 51650<br />Fremont County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Ackerman Barn",
            "lat": "43.429728",
            "lon": "-95.533581",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/osceola-barn-ackermanbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ackerman Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.429728,-95.533581\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">136.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The barn on the Todd and Susan Ackerman farm is 84&#039;x36’, and the “matching” hog house is 56’x24’. Both were built between 1915 and 1918. At one time, two Russian carpenters lived in the haymow of the hog house. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6357 IA Hwy. 9<br />Ocheyedan, IA 51354<br />Osceola County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World War I Honor Roll",
            "lat": "40.747128",
            "lon": "-95.647052",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/fremont-monument-worldwaronehonorroll.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World War I Honor Roll</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.747128,-95.647052\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">136.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fremont County World War I Memorial on the grounds of the Fremont County Courthouse commemorates all those from the county who served in World War I. A separate monument, for all wars, memorializes soldiers who made the ultimate sacrifice and lost their lives fighting for America.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIllinois St.<br />Fremont County Courthouse<br />Sidney, IA 51652<br />Fremont County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sharon Presbyterian Church and Cemetery",
            "lat": "40.726007",
            "lon": "-91.661240",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-sharonpresbyterianchurchcemetery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sharon Presbyterian Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.726007,-91.661240\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">136.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sharon Presbyterian Church established this cemetery in 1863. It was designed by O. C. Simonds, a nationally recognized landscape architect for cemeteries. Sharon Cemetery to this day is the only known example of his work in the state. The Sharon Cemetery Historic District was added to the National Historic Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1298 160th St.<br />Farmington, IA 52625<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Peter&#039;s United Evangelical Church",
            "lat": "42.822395",
            "lon": "-91.187850",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Peter&#039;s United Evangelical Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.822395,-91.187850\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">136.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This church is an exceptionally well-preserved and attractive example of rather early pioneer church architecture in Iowa. It demonstrates excellent use of local materials in the construction of a simple, clean-lined building. The church is also known as Ceres Church, for it&#039;s location in the former community of Ceres. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t27182 U.S. 52<br />Garnavillo, IA 52049<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Locust School (Pleasant No. 3)",
            "lat": "43.421819",
            "lon": "-91.721985",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Locust School (Pleasant No. 3)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.421819,-91.721985\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">137.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Locust School, also known as Pleasant No. 3, is among the earliest school buildings in Winneshiek County. It is believed to have been built in 1854, shortly after the village of Locust was surveyed and first settlement began. This one-room schoolhouse was in continuous operation for one hundred and six years. The schoolhouse now operates a museum and the headquarters of the Winneshiek County Historical Society. The Locust School was added to the National Register of Historic Places on Jan. 29, 1980.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1640 Big Canoe Rd.<br />Decorah, IA 52149<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.4166</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.decoraharea.com/business/locust-school.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Thurman Veterans Memorial",
            "lat": "40.820047",
            "lon": "-95.752928",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/fremont-monument-thurmanveteransmemorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thurman Veterans Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.820047,-95.752928\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">137.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Thurman Veterans Memorial, which lists all the locals who have served in the armed services, stands in the City Park. It was dedicated by VFW Post 7064. A tornado destroyed three-quarters of the town in 2012, but the Veterans Memorial was unscathed.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tFletcher St.<br />Thurman, IA 51654<br />Fremont County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Wansink Art Gallery, Prairie Schoolhouse and Pioneer Home",
            "lat": "43.186259",
            "lon": "-95.840868",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/obrien-artmuseum-wansinkartgallery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wansink Art Gallery, Prairie Schoolhouse and Pioneer Home</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.186259,-95.840868\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">137.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wansink Art Gallery, Prairie Schoolhouse, and Pioneer Home is a unique blend of cultural mediums all housed in one place. The Wansink Art Gallery offers monthly exhibits, fine arts, and music libraries. The Pioneer Schoolhouse works in tandem with the art gallery, and offers art classes, as well as historical tours of the first O&#039;Brien County school. The Pioneer Home is used as a church and hotel, while still operating as a small museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1423 Park St.<br />Sheldon, IA 51201<br />O&#039;Brien County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.324.3371</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Burg Wagon Works Building",
            "lat": "40.639590",
            "lon": "-91.742737",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Burg Wagon Works Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.639590,-91.742737\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">137.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Burg Wagon Works building is significant as an example of local industry and industrial architecture in 19th-century Iowa. This building, erected in stages beginning about 1867, formed the nucleus of a small-scale industrial complex which included at least two other buildings, now gone. The Burg Wagon Works was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tState St. and S 2nd St.<br />Farmington, IA 52626<br />Van Buren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Pioneer Historical Society and Museum",
            "lat": "40.639697",
            "lon": "-91.739730",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pioneer Historical Society and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.639697,-91.739730\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">137.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pioneer Historical Society is in charge of preserving and displaying the rich pioneer history of the area. The society is based out of The First Congregational Church of Farmington, which was built in January 1848 and was modeled after the rural New England Churches. It now houses many pioneer artifacts and various historical items.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t205 S 4th St.<br />IA Hwy. 2<br />Farmington, IA 52626<br />Van Buren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Valley Mills",
            "lat": "42.864021",
            "lon": "-91.192977",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Valley Mills</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.864021,-91.192977\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">137.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Throughout the middle of the 19th century, Buck Creek was an important focus of the rural milling industry. In the 1850s and 1860s, as many as four mills, both grist and lumber, were located on this small stream. The Valley Mill was one of these, and is probably the only mill left from the days when the Buck Creek milling industry was a crucial component of frontier and rural agricultural life. It was built in 1853 for the grinding of wheat and other grains. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t30881 250th St.<br />Garnavillo, IA 52049<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sheldon Prairie Museum",
            "lat": "43.179753",
            "lon": "-95.854195",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/obrien-historymuseum-sheldonprairiemuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sheldon Prairie Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.179753,-95.854195\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">137.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Prairie Queen Museum was founded in 1976 in the old Carnegie Library in Sheldon. The library was built in 1908 and operated until 1968. The building sat vacant until it was converted to the Prairie Queen Museum. The museum includes displays of early local industry, Indian and animal artifacts, military and school exhibits, and the Sheldon Hall of Fame. The Carnegie Library building was added to the National Register of Historic Places in 1977.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t319 10th St.<br />Sheldon, IA 51201<br />O&#039;Brien County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.324.5108</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://sheldoniowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Kaalberg Barn",
            "lat": "41.428569",
            "lon": "-91.094264",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kaalberg Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.428569,-91.094264\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">137.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The turn-of-the-century Kaalberg barn has a large boiler-steel tank water works that goes all the way up to the hay loft. The barn, with its distinctive cupola and windows, is on an acreage that is now within western city limits of Muscatine. Cows were milked on the barn&#039;s West side. The former milking area is now a shop. An interior wooden corn crib, with upper access doors for scooping corn in, is located on the Southeast corner. The barn has a large hay mow, with the hay carrier track still in place. The barn was featured on the Iowa Barn Foundation&#039;s 2007 Muscatine County Barn Tour and Picnic.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2420 Lucas Rd.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Muscatine County Home Cemetery",
            "lat": "41.434035",
            "lon": "-91.089061",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Muscatine County Home Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.434035,-91.089061\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">137.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Muscatine County Home Cemetery is located near where the Muscatine County Home (also known as the Muscatine County Poorhouse/Poor Farm) once stood along Harmony Lane. The Muscatine County Home was established in 1883 on 160 acres in Bloomington Township which replaced the previous poor farm located in Seventy-Six Township. The home was a state-authorized institution that provided for the county&#039;s poor, elderly and mentally disabled. In Iowa, many of the homes operated as farms where residents would work to help support the institution. The cemetery and old dairy barn are the only remaining buildings associated with the Muscatine County Home. The cemetery is the final resting place for many former residents of the Muscatine County Home and many of the graves are unidentified and unmarked. You may view the burial registry at the nearby Environmental Learning Center during normal operating hours.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3300 Cedar St<br />Discovery Park<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://muscatinecountyconservation.com/mccb-areas/discovery-park/muscatine-arboretum-county-home-cemetery/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Hotvedt Barn",
            "lat": "43.490357",
            "lon": "-91.793014",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/winneshiek-barn-hotvedtbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotvedt Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.490357,-91.793014\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138mi.</span></div>\n\t\t</div>\n\n\t\t<p>John McMullens bought this farm from the government in 1852. He paid $1.25 per acre. The farm, which nearly sits on the Iowa-Minnesota border, was the original home of Steam Engine Days. Nearby Mable, Minnesota, now hosts Steam Engine Days. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1996 Co, Rd. A14<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Farley Area Historical Society",
            "lat": "42.444627",
            "lon": "-91.005480",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-historicalsociety-farleyhistoricalsociety.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Farley Area Historical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.444627,-91.005480\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Farley Area Historical Society was established on April 20, 1995. The first completed project was &quot;The History of Farley&quot; published in 1996. We have volumes of history to preserve, resulting in a need to build a &quot;Historical Museum.&quot; The society holds monthly meetings at their location to discuss area history.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t105 3rd Ave. NE<br />Farley, IA 52046<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.744.3737</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Muscatine County Home Dairy Barn",
            "lat": "41.433891",
            "lon": "-91.085122",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Muscatine County Home Dairy Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.433891,-91.085122\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1926, the Muscatine County Home Dairy Barn with its distinctive Gothic roof is listed on the National Register of Historic Places. The barn was part of the Muscatine Country Poor Farm – also known as the Muscatine County Home – and housed dairy cattle that produced cream for sale and milk and butter for residents. It&#039;s located near the eastern edge of Discovery Park. The dairy barn&#039;s historical significance is tied to its association with the Poor Farm, which was created in 1883 by the county where &quot;&#039;unfortunates who could not care for themselves&#039; (i.e., the poor, elderly, and physically or mentally disabled) were cared for at taxpayer expense,&quot; the dairy barn&#039;s National Register nomination form said. Like all of Iowa’s Poor Farms, the Muscatine County Home was largely self-supporting because its agricultural production provided food for residents and extra provisions for sale that funded its operating expenses. The dairy barn was essential to the Muscatine County Home, which revolved around its purebred Holstein dairy herd. In addition to its historical significance, the Muscatine County Home Dairy Barn is also recognized for its well-preserved Gothic roof barn. The curved Gothic roof barn, with its pleasing appearance and brace-free haymow, was the culmination of decades of effort on the part of farmers and agricultural engineers to achieve maximum loft space in the light-frame, two-story type Midwestern barn, many of which were built to house dairy herds and milking facilities. The barn is also recognized for being originally outfitted with equipment such as cow stanchions and a hay carrier purchased from the Louden Machinery Company in Fairfield, Iowa. Because Louden provided affordable architectural plans to all its equipment customers, the barn was most likely built with the company&#039;s plans. In addition, the use of concrete in barn construction reflects Louden&#039;s barn plans and Iowa’s dairy farmers&#039; widespread compliance to state sanitary regulations. Concrete also accommodated modern mechanized systems for livestock care, many of which were manufactured by Louden and installed in the Muscatine County Home Dairy Barn. The original Muscatine County Home was demolished in 1969.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3210 Harmony Ln<br />Discovery Park<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "ZCBJ Hall",
            "lat": "41.983531",
            "lon": "-90.954818",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">ZCBJ Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.983531,-90.954818\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>L.W. Sley and Joe Havlik, Jr., opened the Fern Theater in the new ZCBJ Lodge building in 1917. ZCBJ stands for Czechoslovakian words that translate to &quot;Western Fraternal Bohemian Association.&quot; The Fern Theater occupied the first floor and had seats for 350. In addition to movies, stage plays and graduation ceremonies took place in the auditorium. The upper-floor hall was the setting for numerous dances and receptions. The theater closed in 1969. The original stage curtains, which feature hand-painted scenes of Czechoslovakian cities, were removed to the Museum of Repertoire Americana near Mt. Pleasant, Iowa in 1985 for safe keeping.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t202 Broadway St.<br />Oxford Junction, IA 52323<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Baylor Barn",
            "lat": "40.784603",
            "lon": "-95.744418",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont_barn_baylorbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Baylor Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.784603,-95.744418\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Baylor Barn was built in the early 1890s, the materials being shipped in by rail to the former town of McPaul, Iowa, loaded on horse-drawn wagons and hauled to the farm south of Thurman. It took a crew of trained men working under an experienced foreman to raise the mortised and pegged barn. At its completion the barn housed up to twenty horses with a granary and a haymow to store the feed. The barn was featured on the Iowa Barn Foundation&#039;s 2010 tour.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1816 Bluff Rd.<br />Thurman, IA 51654<br />Fremont County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Musser Barn",
            "lat": "41.423408",
            "lon": "-91.080509",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Musser Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.423408,-91.080509\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Musser barn was built about 1910 by a wealthy lumber family as a show pavilion for cattle breeding stock sales. The barn has a unique open span laminated beam construction and the ground floor has 12-foot high ceilings. The barn&#039;s lower level is still in the original configuration with exhibition pens for sales of the Oakridge Farms breeding stock. The steel gates that allowed easy viewing of the animals are still in place. In more recent history, the Albert Timm family purchased the Musser farm and used the buildings for their dairy operation for many years. The farm has been sold once again to a group that is working to establish an agricultural learning center, to be operated in conjunction with the Muscatine High School and Muscatine Community College. The barn was featured on the Iowa Barn Foundation&#039;s 2007 Muscatine County Barn Tour and Picnic.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3004 Lucas St.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Schroeder Barn",
            "lat": "41.550535",
            "lon": "-91.029660",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/muscatine-barn-schroederbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Schroeder Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.550535,-91.029660\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Schroeder Barn, measuring 48&#039; x 50&#039; was built in 1900 and has a roof rafter haymow with the haymow door and track intact. The foundation of the barn is river rock. The barn was featured on the Iowa Barn Foundation&#039;s 2014 and 2016 All-State Barn Tours. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2738 130th St.<br />Wilton, IA 52778<br />Muscatine County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Dover Historical Museum (J. E. Peterson Manufacturing Building)",
            "lat": "40.925724",
            "lon": "-91.403796",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dover Historical Museum (J. E. Peterson Manufacturing Building)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.925724,-91.403796\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built by John Edgar Peterson in 1908, this building originally housed a glove and mitten manufacturing company. It later became the New London Cooperative Creamery, which produced dairy products during a time when such processing took place in numerous small creameries across the state. The Dover County Historical Museum was opened in 1995 and offers permanent and temporary exhibits and has an extensive family record collection to help with genealogy. It was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t213 W Main St.<br />New London, IA 52645<br />Henry County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.367.2573</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://dovermuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chicago, Rock Island and Pacific Railroad: Wilton Depot",
            "lat": "41.587599",
            "lon": "-91.016857",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago, Rock Island and Pacific Railroad: Wilton Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587599,-91.016857\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located across the street from the still active railroad, the Chicago, Rock Island and Pacific Depot was built in 1898. Since then, it has been renovated for public use and is listed on the National Register of Historic Places. Not only can visitors explore the depot and learn more about the history of the railroad in Iowa, but it also features a restored caboose for visitors to explore.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Railroad St.<br />Wilton, IA 52778<br />Muscatine County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.732.2330</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wilton Candy Kitchen",
            "lat": "41.588149",
            "lon": "-91.018069",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wilton Candy Kitchen</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.588149,-91.018069\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wilton Candy Kitchen is the oldest continuously operating Ice Cream Parlor and Soda Fountain in the world.  R.A. McIntyre founded the Wilton Candy Kitchen in 1860 and it has been operated by the Nopoulos Family since 1910. At age 6, George Nopolous went to work at the Wilton Candy Kitchen, turning the crank on the ice cream maker. By 1947, he was the sole owner of the Wilton Candy Kitchen. He and his wife Thelma married in 1949 and spent their lives operating the Wilton Candy Kitchen – evening being named lifetime ambassadors of the City of Wilton. George worked at the Candy Kitchen until his death in June 2015. The Wilton Candy Kitchen was listed on that National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310 Cedar St.<br />Wilton, IA 52778<br />Muscatine County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.732.2278</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.wiltoncandykitchen.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Le Mars Municipal Park and Golf Course Historic District",
            "lat": "42.801074",
            "lon": "-96.151952",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-nhr-lemarsmunicipalparkandgolfcoursehistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Le Mars Municipal Park and Golf Course Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.801074,-96.151952\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Le Mars Municipal Park and Golf Course is significant as one of Iowa’s most extensive municipal park development projects undertaken during the 1930s. The park is also significant because the park design, including several outstanding stone buildings and structures, represents an interesting adaptation of Park Rustic design aesthetics to achieve a natural-like quality in what is almost entirely a human-made setting. The park design and its individual components retain a high degree of historical integrity. The Le Mars Municipal Park and Golf Course was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA Hwy. 3<br />Le Mars, IA 51031<br />Plymouth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "McClellan&#039;s General Store",
            "lat": "40.925879",
            "lon": "-91.401224",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-mcclellansgeneralstore.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McClellan&#039;s General Store</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.925879,-91.401224\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1865, McClellan&#039;s General Store is a good example of Italianate design applied to commercial architecture, as was popular in the late 19th century. It was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t107 E Main St.<br />New London, IA 52645<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sacred Heart Hospital",
            "lat": "42.794876",
            "lon": "-96.156668",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-nhr-floydvalleyapartments.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sacred Heart Hospital</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.794876,-96.156668\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Originally operating as Sacred Heart Hospital, this facility continues to serve Le Mars residents. The hospital functioned from 1923 to 1938 under the Sisters of St. Francis from Dubuque. The fireproof five story structure was designed by noted Midwest architect William L. Steele. In 1966, the building was managed by the city as Floyd Valley Hospital and was then converted from a hospital to apartments in 1977. Today the Floyd Valley Apartments are owned by Sioux Falls Environmental Access, Inc. and offer 59 accessible one bedroom dwellings for senior and disabled residents. The Sacred Heart Hospital was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 6th Ave. NE<br />Le Mars, IA 51031<br />Plymouth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Plymouth County Courthouse",
            "lat": "42.789953",
            "lon": "-96.161548",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-nhr-pymouthcountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Plymouth County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.789953,-96.161548\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Being named the county seat ensured LeMars reasonable economic and population growth and a prominent role in local social and political life. By the early 20th Century, Plymouth County had outgrown it&#039;s courthouse. A new building was constructed, built in 1902. It was finished in red sandstone and remains nearly as it looked when it was completed, except the cupola was removed. The Plymouth County Courthouse was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3rd Ave. E<br />Le Mars, IA 51031<br />Plymouth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Emery Bridge Barn",
            "lat": "43.434477",
            "lon": "-91.690382",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Emery Bridge Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.434477,-91.690382\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Emery Bridge Barn is built in the Norwegian-American bridge barn (leave bru) style that was built in Norwegian settlements between 1871 and 1906. It combines a characteristic internal bridge found in most Norwegian barns with post and beam building methods of 19th century American barns. The Emery Bridge Barn was featured on the Iowa Barn Foundation&#039;s Northeast Iowa Barn Tour in 2002.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3453 Bear Creek Rd.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Tonsfeldt Round Barn",
            "lat": "42.797741",
            "lon": "-96.159377",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-nhr-tonsfeldtroundbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tonsfeldt Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.797741,-96.159377\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139mi.</span></div>\n\t\t</div>\n\n\t\t<p>The 82&#039; x 68&#039; round barn, with a Gothic curved roof, was designed by Peter Tonsfeldt in 1918. He wanted a structure to show off his Polled Hereford bull and purebred cattle. During the Depression years, the Tonsfeldt family sold their west LeMars farm to Herman Lang. Following Lang&#039;s death in 1980, the farm was offered at auction, where the Langley brothers purchased the property. They donated the historic round barn to the Plymouth County Fairgrounds, and the barn was moved to its present location. The Tonsfeldt Round Barn was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t500 4th Ave. NE<br />Plymouth County Fairgrounds<br />LeMars, IA 51031<br />Plymouth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. George&#039;s Episcopal Church",
            "lat": "42.787993",
            "lon": "-96.164839",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-nhr-stgeorgesepiscopalchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. George&#039;s Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.787993,-96.164839\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139mi.</span></div>\n\t\t</div>\n\n\t\t<p>The significance of St. George’s Episcopal Church is one of the few remaining links to the town’s early English heritage. It was constructed in 1881 as a foreign mission church and served as the religious center and one of the social centers for the Le Mars English settlers of the 1800s. St. George&#039;s Episcopal Church was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 1st Ave. SE<br />Le Mars, IA 51031<br />Plymouth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Foster Park Historic District",
            "lat": "42.785275",
            "lon": "-96.165724",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-nhd-fosterparkhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Foster Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.785275,-96.165724\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139mi.</span></div>\n\t\t</div>\n\n\t\t<p>The district is associated with an important era of population growth followed by intense residential development in the Foster Park neighborhood at the end of the 19th Century and the beginning of the 20th Century. The Foster Park Historic District also derives significance from its association with two prominent individuals connected to Plymouth County’s farm crisis events in 1932-1933, District Judge C. C. Bradley and Plymouth County sheriff Ralph Rippey. The district is a significant representation of the residential architectural styles and vernacular house forms that appeared in Le mars neighborhoods from the 1880s through the early 1950s. The district also spotlights the work of one of Sioux City’s most prolific and important residential architects, William Steele, with at least three houses identified as his commissions. The Foster Park Historic District was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tFoster Park<br />Le Mars, IA 51031<br />Plymouth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Le Mars Arts Center",
            "lat": "42.790383",
            "lon": "-96.166213",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-artstudio-lemarsartcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Le Mars Arts Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.790383,-96.166213\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Le Mars Arts Center is housed in the former Le Mars Public Library. The building is a typical example of small-town library architecture of early 1900s. It was built in 1903 and was funded by Andrew Carnegie. The building was added to the National Register of Historic Places in 1979. The Le Mars Arts Center offers educational programs, exhibits, and more to the public.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 Central Ave. SE<br />Le Mars, IA 51031<br />Plymouth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.546.7476</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.lemarsarts.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Le Mars Community Theatre",
            "lat": "42.794447",
            "lon": "-96.164729",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-artperforming-lemarscommunitytheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Le Mars Community Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.794447,-96.164729\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Le Mars Community Theatre was organized in 1968 and continues to produce multiple shows each season. The theatre&#039;s home is the former Post Office, which was built in 1914, and provides many natural assets for use as a theater - the cat walk used by postal inspectors is perfect for a light and sound booth-two existing restrooms on the main floor and one in the basement where dressing and make-up rooms are located, a large foyer, and storage areas for costumes, props and scenery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t105 1st St. NE<br />Le Mars, IA 51031<br />Plymouth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.546.5788</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.lemarscommtheatre.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Le Mars Downtown Commercial Historic District",
            "lat": "42.793698",
            "lon": "-96.166351",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-nhd-lemarsdowntowncommericalhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Le Mars Downtown Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.793698,-96.166351\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Le Mars Downtown Historic District comprises the historic business and civic center of the City of Le Mars. The District includes commercial, social, recreational, and governmental buildings that retain integrity and continue to reflect the evolution of Le Mars&#039; economic center from the late 19th Century through the post-World War II period. The Le Mars Downtown Historic District was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t98 Central Ave. S<br />Le Mars, IA 51031<br />Plymouth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Rural Free Delivery Postal Museum",
            "lat": "41.095671",
            "lon": "-91.255559",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rural Free Delivery Postal Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.095671,-91.255559\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rural Free Delivery (RFD) Museum is dedicated to the system of Rural Free Delivery, or delivering mail to communities with less than 10,000 people. The RFD system was tested in Morning Sun in 1896 because U.S. Senator John H. Gear said it was the most &quot;reading&quot; community that he knew. Three routes averaging 35 miles each were mapped out, and then shortened to 24 miles because mail was delivered on horseback. The system ending up being a huge success and revolutionized the process of delivering rural mail. The museum has collections of antique mail, the letter sorter, mail buggy, and the original post office window.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Main St.<br />Morning Sun, IA 52640<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Louisa County Heritage Center",
            "lat": "41.184074",
            "lon": "-91.196505",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/louisa-historymuseum-louisacountyheritagecenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Louisa County Heritage Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.184074,-91.196505\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Louisa County Heritage Center is a five acre facility, run by the Louisa County Historical Society. It houses items of historical significance from Louisa County. The center is divided into three areas, the museum, the Pleasant View School, and the church. The museum holds a collection of nearly 1,500 items related to military service, farming, homemaking, schools, business and more. They also have one of the most extensive Native American collections in Eastern Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t609 US Hwy. 61 N<br />Wapello, IA 52653<br />Louisa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.527.5247</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://louisacountyhistory.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Plymouth County Historical Museum",
            "lat": "42.788430",
            "lon": "-96.168207",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-historymuseum-plymouthcountyhistoricalmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Plymouth County Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.788430,-96.168207\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Plymouth County Historical Museum preserves and displays the history of the county. The museum has many exhibits, as well as a Civil War-era log cabin, schoolroom, barber and beauty shops, 1940s café, machinery and blacksmith shop, 1940s car and airplane. The Plymouth County Museum is housed in the former Le Mars Central High School. The building is a good local example of a Colonial Revival influence public building. This influence is readily apparent in the 1906 and 1924 sections of the building. The 1952 section was designed in what might best be described as something of an industrial style. William Beuttler, Ralph Arnold, Devereux and Olsen, and the Nemmer Brothers were the architects and builders that contributed to the construction of the school. The Le Mars Central High School was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t335 1st Ave. SW<br />Le Mars, IA 51031<br />Plymouth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.546.7002</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://plymouthcountymuseum.homestead.com/museum.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Blue Bunny Ice Cream Parlor and Museum",
            "lat": "42.794809",
            "lon": "-96.166707",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-historymuseum-bluebunnyicecreamparlorandmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Blue Bunny Ice Cream Parlor and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.794809,-96.166707\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 2011, the Blue Bunny Ice Cream Parlor Parlor relocated to its current home in the historical George E. Pew building on Central Avenue in downtown Le Mars. George Pew began his business in this downtown Le Mars structure in 1875, just six years after the town of Le Mars was incorporated. His general hardware and agricultural implements company was one of the first businesses in Plymouth County and the state of Iowa.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 Central Ave. NW<br />Le Mars, IA 51031<br />Plymouth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.546.4522</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://bluebunny.com/parlor\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Birkby Barn",
            "lat": "40.737137",
            "lon": "-95.715633",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont-barn-birkbybarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Birkby Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.737137,-95.715633\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The three-story Birkby Barn was built about 1870 by Thomas Birkby on his farm in Sidney Township. The lower floor, built of brick, had stalls along both sides for the horses and the feed was dispensed via chutes that carried it from the second floor storage bins. The third floor was used for the haymow and to dry ears of seed corn for the next year&#039;s crop. The barn was featured on the Iowa Barn Foundation&#039;s 2010 tour.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2944 Bluff Rd.<br />Thurman, IA 51654<br />Fremont County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jason and Elizabeth (Baylor) Rector House",
            "lat": "40.732642",
            "lon": "-95.709990",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont-nhr-jasonelizabethrectorhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jason and Elizabeth (Baylor) Rector House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.732642,-95.709990\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This home, built by Jason Rector in 1859, offers an example of the Greek Revival design and construction of a mid-19th century pioneer home. The home was built of soft brick that was fired at a nearby kiln and is situated at the base of the Loess Hills. Jason and Elizabeth Rector also provided land northwest of the home for the Grandview Cemetery where he and his wife, who both passed away in 1904, are buried. Rector was one of the early settlers, arriving when the area was still populated by Chief Waubonsie and his Pottawattamie tribe. The Rector home was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2174 Bluff Rd.<br />Thurman, IA 51654<br />Fremont County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Greenwood Cemetery Chapel",
            "lat": "41.419889",
            "lon": "-91.064049",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Greenwood Cemetery Chapel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.419889,-91.064049\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Greenwood Cemetery Chapel is the oldest and longest-serving public facility still available for group services at a cemetery in Muscatine. The Chapel provides a historical picture of past mortuary/funeral practices and local architectural development. It was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1814 Lucas St.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Town Theater",
            "lat": "43.269131",
            "lon": "-91.477273",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Town Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.269131,-91.477273\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Town Theater has been a town staple in Waukon since 1938. In 1989 it was renamed the Main Feature Theatre and Pizza Pub. The building has been remodeled to accommodate the dining guests while still seating around 100 people for movies.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t38 W Main St.<br />Waukon, IA 52172<br />Allamakee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.568.6134</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.mainfeaturetheater.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Round Barn",
            "lat": "42.715327",
            "lon": "-91.073259",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.715327,-91.073259\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This is one of few true-round barns with a dome roof known to still exist in Iowa. While most true-round barns have conical or gambrel roofs, this barn is an example of the diversity and variation found within the theme of the Iowa Round Barn. It was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tGreat River Rd.<br />Millville, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Allamakee County Courthouse",
            "lat": "43.270573",
            "lon": "-91.476175",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Allamakee County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.270573,-91.476175\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Allamakee County Courthouse erected in 1939-1941 is one of ten county courthouses built in Iowa during the New Deal Era as part of the federal Public Works Administration (PWA) program&#039;s operation in the 1930s and early 1940s. It is an example of the PWA Moderne style of public building architecture developed during the 1930s and early 1940s. Its design blends Art Deco and Moderne elements. It was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 Allamakee St.<br />Waukon, IA 52172<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-hotels.png",
            "title": "Commercial Hotel",
            "lat": "41.181028",
            "lon": "-91.186891",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/louisa-nhr-commercialhotel.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-hotels.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Commercial Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.181028,-91.186891\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Commercial Hotel (also known as the Wapello Hotel) is a combination of two buildings from two different time periods. The first part is a Greek Revival two-story school building built in 1853 and later repurposed as the hotel owner&#039;s residence. The second is the two-story hotel proper built in 1906. The hotel was an integral part of the business community in the town of Wapello. Not only was it essential for the county residents from out-lying areas when visiting the Louisa County Courthouse, but it was needed for visiting businessmen as well. The hotel wing was designed by the Wapello architect and contractor, H.O. Pease. The Commercial Hotel was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t227 N Main St.<br />Wapello, IA 52653<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Louisa County Courthouse",
            "lat": "41.178669",
            "lon": "-91.186237",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/louisa-nhr-louisacountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Louisa County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.178669,-91.186237\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Louisa County Courthouse was built in Wapello in 1928 on the same site of the previous courthouse that was built in 1854. The new courthouse was built at a total cost of $100,000 and exhibits a simplified Art Deco style. The Louisa County Courthouse was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t149 S Main St.<br />Wapello, IA 52653<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Allamakee County Historical Society Museum and Genealogy Research Center",
            "lat": "43.270844",
            "lon": "-91.475375",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Allamakee County Historical Society Museum and Genealogy Research Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.270844,-91.475375\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This former Allamakee County Courthouse was used by the county from 1867 though 1939. This building was built after ten different county seat elections. Being named county seat virtually guaranteed prosperity and success for a community. Waukon, Lansing, and the former communities of Vailsville, Smith&#039;s Mill and Columbus all battled to become the county seat. Eventually &quot;The Point&quot; a rural location between Lansing and Capoli became the county seat. But, in the summer of 1866, a gang of 30 men from Waukon tried to steal the county records from &quot;The Point.&quot; They failed, but Waukon was voted to be the county seat in 1867, after a 25-year long struggle. After the county built a new courthouse, this building was taken over by the Allamakee County Historical Society and turned into a museum and research center. The rooms in the museum reflect the 19th and early 20th century, with displays of farm tools, medical and military items. The courtroom is complete with judge&#039;s bench, chair, and gavel. The Research Center has an extensive militaria collection. The building was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t121 Allamakee St.<br />Waukon, IA 52172<br />Allamakee County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://allamakeehistory.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Louisa County Veterans Memorial",
            "lat": "41.178940",
            "lon": "-91.185800",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/louisa-monument-louisacountyveteransmemorial.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Louisa County Veterans Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.178940,-91.185800\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Louisa County Veterans Memorial is dedicated to the men and women of Louisa County who volunteered, or when called upon to serve, left their homes, families and occupations to defend and preserve the freedoms and way of life on which this nation was founded. They served with bravery, sacrifice and honor in conditions of danger, discomfort and sometimes controversy. To ensure for future generations the legacy their forefathers left them. The monument was erected in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t149 S Main St.<br />Wapello, IA 52653<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Louisa County World War I Honor Roll",
            "lat": "41.179040",
            "lon": "-91.185900",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/louisa-monument-louisacountyworldwaronehonorroll.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Louisa County World War I Honor Roll</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.179040,-91.185900\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Louisa County World War I Honor Roll is located on the courthouse lawn and lists the names of all those from Louisa County who served in World War I.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t149 S Main St.<br />Wapello, IA 52653<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Parret Cannon",
            "lat": "41.178700",
            "lon": "-91.185700",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/louisa-monument-civilwarcannon-wapello-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Parret Cannon</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.178700,-91.185700\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Parret Cannon, located on the lawn of the Louisa County Courthouse, is a 20-pound Parret used during the Civil War. The inscription reads, &quot;1861-1865, 20 lb. Parret made by G.E. Parret, Notre Dame Ind. 1861&quot;.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t149 S Main St.<br />Wapello, IA 52653<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Otto J. Hager House",
            "lat": "43.273017",
            "lon": "-91.476014",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Otto J. Hager House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.273017,-91.476014\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hager house is an example of the prairie school design, was noted Chicago architect Robert Clossen Spencer Jr.’s only known Iowa commission, and is representative of what is thought to be his most innovative period. It was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t402 Allamakee St.<br />Waukon, IA 52172<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Parker House",
            "lat": "42.774796",
            "lon": "-91.096990",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-parkerhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Parker House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.774796,-91.096990\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Parker House was built in 1858. It is a local version of the New England Saltbox. It was added to the National Register of Historic Places on September 24, 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1017 S 2nd St.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Guttenberg Corn Canning Company",
            "lat": "42.789575",
            "lon": "-91.102990",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-guttenbergcorncanningcompany.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Guttenberg Corn Canning Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.789575,-91.102990\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building was built for Guttenberg Corn Canning Company in 1912. It is one of a few remaining “early” Twentieth Century industrial sites in town. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t413 N 3rd St.<br />US Hwy. 52 and Pyram St.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Matt-Bahls House",
            "lat": "42.779679",
            "lon": "-91.098219",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-mattbahlshouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Matt-Bahls House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.779679,-91.098219\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Matt-Bahls House dates to pre-1858 and served as a single-family residence. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t615 S 3rd St.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wehmer House",
            "lat": "42.776174",
            "lon": "-91.095517",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-wehmerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wehmer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.776174,-91.095517\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>George Wehmer began construction on this home in 1856. He moved to Guttenberg, Iowa from Ohio. The home was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t910 S River Park Dr.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Dutch Windmill and Visitors Center",
            "lat": "42.997964",
            "lon": "-96.052523",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-historicunique-dutchwindmilllandvisitorscenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dutch Windmill and Visitors Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.997964,-96.052523\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">139.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dutch Windmill and Visitors Center is a 76 foot tall landmark that doubles as a tourist attraction and a Visitors’ Center and Chamber of Commerce. This eye-catching but non-functional windmill has a dome that weighs 5 tons and vanes that weigh over 7 tons. It was built in 1973 as a drive-up teller window for the Northwestern State Bank to fit in with the community’s ethnic theme, and in 2000 it became the headquarters for the Chamber.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t509 8th St. SE<br />Orange City, IA 51041<br />Sioux County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.707.4510</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://orangecityiowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "The Old Mill - Vogel Windmill",
            "lat": "42.993860",
            "lon": "-96.057400",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-historicsite-theoldmillvogelwindmill.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Old Mill - Vogel Windmill</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.993860,-96.057400\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Vogel Windmill is a replica of a Dutch mill that was used to crush the materials that made paint pigments using wind power. The interior of the “Dutch Miller’s Home” is furnished with antiques imported from Holland.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1020 Albany Pl. SE<br />Orange City, IA 51041<br />Sioux County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.737.8880</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Eckert House",
            "lat": "42.782317",
            "lon": "-91.096521",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-eckerthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Eckert House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.782317,-91.096521\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Eckert House is a unique commercial two-story brick house that was built in 1860 by Henry Eckert. The house has stayed in the Eckert family. Around 1900, Ida Eckert opened a millinery shop in the front part of the first floor. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t415 S 1st St.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Kolker House",
            "lat": "42.782804",
            "lon": "-91.097568",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-kolkerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kolker House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.782804,-91.097568\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kolker House was built around 1859. Occupants included Frank Junk and John B. Kieke. It may have been the site of the first grade school in Guttenberg. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 Goethe St.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "McClaine House",
            "lat": "42.783412",
            "lon": "-91.097305",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-mcclainehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McClaine House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.783412,-91.097305\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140mi.</span></div>\n\t\t</div>\n\n\t\t<p>The McClaine House is a well preserved example of a settlement era brick building that dates to pre-1886. Originally, the building was used for both commercial and residential uses. The community now uses the building for various groups and activities. It was added to the National Register of Historic Places in1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 S 1st St.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Nieland House",
            "lat": "42.778580",
            "lon": "-91.096165",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-nielandhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nieland House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.778580,-91.096165\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140mi.</span></div>\n\t\t</div>\n\n\t\t<p>The five bay Nieland House is a local version of the New England Saltbox. The structure is unique because of the four small windows under the second floor eaves. It was added to the National Register of Historic Places on September 24, 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t715 S 1st St.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Weber House",
            "lat": "42.777024",
            "lon": "-91.095487",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-weberhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Weber House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.777024,-91.095487\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dr. Weber, a German Surgeon, came to Guttenberg and built this house with gardens surrounding it. The house has generally been associated with the various owners of the sawmill and lumber yard which dominated this section of town. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t822 S River Park Dr.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Saint Mary&#039;s Catholic Church District",
            "lat": "42.780979",
            "lon": "-91.097800",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-saintmaryscatholicchurchdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Saint Mary&#039;s Catholic Church District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.780979,-91.097800\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Mary&#039;s Catholic Church Historic District is associated with the German-American community of Guttenberg. The district is historically significant because it represents the efforts of Guttenberg&#039;s German-American Catholic minority to establish both church and parochial school facilities. It was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t520 S 2nd St.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.maryicjoseph.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Highlandville Schoolhouse",
            "lat": "43.442261",
            "lon": "-91.670024",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Highlandville Schoolhouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.442261,-91.670024\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Highlandville Schoolhouse was built in 1911 and served as a school until it was closed in 1964. Most rurla schools in Iowa were small, rectangular one-room buildigns with gable roofs - but the Highlandville School is a larger, two-room village school. It is the only single story, two-room schoolhouse with a belfry in Winneshiek County. Since that time the schoolhouse has been a community center and site of a longstanding tradition of Norwegian-American old time dances that began in 1975 and continue today. The Highlandville School was added to the National Register of Historic Places in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3497 Highlandville Rd.<br />Highlandville, IA 52149<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.9315</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.decoraharea.com/business/highlandville-school.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Clark-Blackwell House",
            "lat": "41.417258",
            "lon": "-91.053757",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clark-Blackwell House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.417258,-91.053757\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clark-Blackwell House exemplifies the residential tastes of the late 19th Century wealthy elite in a Midwestern river town. The construction of the house involved local craftsmen as well as regionally significant architects. It is noted locally for its prominent location, style, and size; and it is significant today for its historical integrity and its association with a notable architect, Lorenzo D. Cleveland. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 Cherry St.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "J. C. B. Warde House",
            "lat": "41.417488",
            "lon": "-91.053218",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J. C. B. Warde House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.417488,-91.053218\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140mi.</span></div>\n\t\t</div>\n\n\t\t<p>Commonly known as “Warde’s Folly” and built in 1952, the J.C.B. Warde House is one of the earliest remaining residences locally and a supreme monument of the residential Greek Revival architecture in the state. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t205 Cherry St.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "W. Joseph Fuller House",
            "lat": "41.430296",
            "lon": "-91.047771",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">W. Joseph Fuller House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.430296,-91.047771\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140mi.</span></div>\n\t\t</div>\n\n\t\t<p>W.J. Fuller bought the lot for this house in 1877. He listed as a brick and pottery ware manufacturer at this address. Fuller was the son of a brick maker who had come to Muscatine from Germany in 1837 and carried on his father’s trade. The house was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1001 Mulberry Ave.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Pliney and Adelia Fay House",
            "lat": "41.417949",
            "lon": "-91.050933",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pliney and Adelia Fay House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.417949,-91.050933\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Merchant Pliny Fay was one of Muscatine’s earliest settlers. His house was among the first to be erected on a bluff overlooking the Mississippi River in the 1850s. The house is a fine example of the Italianate design, which blends popular 19th Century styles with traditional building forms. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t112 Locust St.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Albertus Building",
            "lat": "42.784337",
            "lon": "-91.096666",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-albertusbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Albertus Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.784337,-91.096666\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Albertus Building was built of limestone around 1855 by C. Albertus of Guttenberg. It may have served as a residence and business, with clothing and grocery stores on the first floor. By 1894, the entire building was used for residential purposes. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS River Park Dr.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fuerste House",
            "lat": "42.781515",
            "lon": "-91.096092",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-fuerstehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fuerste House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.781515,-91.096092\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fuerste House was built around 1870 from homemade local bricks—one of the most decorative styles in Guttenberg. Mrs. L. Fuerste operated a millinery shop, and the Fuerste brothers operated a machine shop across the street which later became Fuerste and Meyer, then Fuerste and Son. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t503 S 1st St.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Guttenberg State Bank",
            "lat": "42.783015",
            "lon": "-91.096800",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-guttenbergstatebank.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Guttenberg State Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.783015,-91.096800\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Guttenberg State Bank was built around 1900 by Fuehling of Farmersburg. Construction ended in December, and the bank was opened in early 1901. John P. Eckert served as the bank’s president, and the bank was also called Eckert Bank. In 1943, the bank consolidated with Clayton County State Bank, but the two banks continued to use this structure. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t15 Goethe St.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Lowden Depot &amp; Historical Society",
            "lat": "41.857360",
            "lon": "-90.927328",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lowden Depot &amp; Historical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.857360,-90.927328\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lowden Depot, originally located at the end of McKinley Avenue, was moved to its current site in City Park in 1977 after it was purchased by the Lowden Historical Society to use as a historical center. In 1857, the Iowa Land Company, agents for the Chicago, Iowa and Nebraska Railroad Company, surveyed and platted the town which was incorporated May 5, 1869. The railroad track to Lowden was completed in 1858 and provided for the trade of goods to Lowden, as well as passengers who needed food and shelter. Passenger service ceased in 1950.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t503 Main St.<br />City Park<br />Lowden, IA 52255<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Zwemer Hall",
            "lat": "42.997970",
            "lon": "-96.058303",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-nhr-zwemerhall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Zwemer Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.997970,-96.058303\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Zwemer Hall was built in 1894 in the Dutch “Colony” of Sioux County, Iowa. It honors the memory of a popular teacher, and an effective administrator of Northwestern Classical Academy. It is a fitting memorial to a man who also served the Western Theological Seminary, Holland, Michigan, and Reformed Church in America. He also served as Editor of the “Leader”, the official organ of the Reformed Church in America. Zwemer Hall was added to the National Register of Historic Places in 1975.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 7th St. SW<br />Northwestern College<br />Orange City, IA 51041<br />Sioux County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "West Hill Historic District",
            "lat": "41.419203",
            "lon": "-91.051717",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/muscatine-nhr-westhillhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Hill Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.419203,-91.051717\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The West Hill Historic District, roughly bounded by Second Street West from Pine to Ash and Third Street West and Fourth Street West from Chestnut to near Ash, illustrates the residential growth and development of Muscatine throughout its history and includes examples of the types of residential architecture that were common in the area. It was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3rd St. W<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-ballrooms.png",
            "title": "Lakeside Ballroom",
            "lat": "42.799294",
            "lon": "-91.104265",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-historicballroom-lakesideballroom.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-ballrooms.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lakeside Ballroom</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.799294,-91.104265\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lakeside was built in 1927 in Guttenberg, Iowa and was a popular establishment during the prohibition era. The structure, built by Louis Schroeder for William H. Kann and Sons, was erected at a cost of $27,000 with a dance floor measuring 50 x 160 feet. The dance floor was built using hardwood maple on springs so that people would not get tired when dancing. They painted LAKESIDE in large letters on the roof of the building to use for aerial dead-recognizing navigation, the only method of navigation at the time. Lindberg and other pioneer aviators used Lakeside as a checkpoint flying from Minneapolis to Chicago and St. Louis. Lakeside was nearly lost in the flood of 1965 when there was 5 feet of water covering the dance floor. The US Army Corps of Engineers loaded it with dynamite for demolition in case it floated into the Lock and Dam. Lakeside Ballroom was added to the National Register of Historic Places on February 5, 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1204 N 4th St.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Front Street Historic District",
            "lat": "42.781643",
            "lon": "-91.095236",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-historicdistrict-frontstreethistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Front Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.781643,-91.095236\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Front Street Historic District is centered around the intersection of South River Park Drive (formerly Front Street) and Herder Street. The district also includes many buildings on Prince, Goethe, Herder, Schiller and Lessing Streets east of South Second Street.  It comprises the architectural heart of Guttenberg, which consists of the best stone and brick commercial buildings in the city.  Many of the buildings pre-date the Civil War.  Front Street Historic District was originally added to the National Register of Historic Places in 1984 and in 2004 the district was expanded to include properties on side streets.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS River Park Dr.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "zoos-and-wildlife.png",
            "title": "Guttenberg National Fish Hatchery and Aquarium Historic District",
            "lat": "42.782953",
            "lon": "-91.095504",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-guttenbergnationalfishhatcheryandaquariumhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/zoos-and-wildlife.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Guttenberg National Fish Hatchery and Aquarium Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.782953,-91.095504\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Guttenberg Fish Hatchery is the last of five federally owned and operated facilities to be built in Iowa. The hatchery represents the federal government&#039;s participation in fish conservation in the state through the U. S. Bureau of Fisheries, Department of Commerce, which was later consolidated with the U. S. Bureau of Biological Survey under the Department of the Interior, and then reorganized as the U. S. Fish and Wildlife Service. The four buildings are from the Depression Era. As such, the property contributes to the character of Guttenberg&#039;s downtown historic district. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t315 S River Park Dr.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-hotels.png",
            "title": "Historic Lincoln Hotel",
            "lat": "41.857840",
            "lon": "-90.926570",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-hotels.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Historic Lincoln Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.857840,-90.926570\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lowden resident Celia Clemmens, a former employee of the Lowden Railroad Hotel, saw a golden opportunity when the Lincoln Highway was routed through Lowden. On March 1, 1915 her husband, A.F., purchased an empty corner of land at the east edge of the town&#039;s nineteenth-century business district—at the main corner of the twentieth-century Lincoln Highway. At this corner, a traveler on the Lincoln Highway headed west would take a right turn and leave town to the north. The hotel was quickly constructed, as many travelers were expected to be en route to the Panama-Pacific International Exposition in California. An estimated 5,000-10,000 automobiles drove the Lincoln Highway to the exposition in 1915! A.F. and Celia opened their hotel for business on June 17, 1915, offering rooms for $2.00 per night. Celia operated the Lowden Hotel until 1946. Other owners operated it until 1981. For several years, the Lowden Hotel was vacant and fell into disrepair. It was restored and added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t408 Main St.<br />Lowden, IA 52255<br />Cedar County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 877.941.7563</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://lincolnhoteliowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Stone Barn",
            "lat": "42.782819",
            "lon": "-91.096338",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stone Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.782819,-91.096338\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Stone Barn was built around 1858. The building was used in its early days as both a shop and a residence. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t12 Goethe St.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Lockmaster&#039;s House Heritage Museum",
            "lat": "42.786222",
            "lon": "-91.096353",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-historymuseum-lockmastershouseheritagemuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lockmaster&#039;s House Heritage Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.786222,-91.096353\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lockmaster&#039;s House Heritage Museum is a look back at the U.S. Army Corp of Engineers lock and dam system of the Mississippi River. Lock and Dam #10 was built at Guttenberg in 1937. It is still in operation and is used to ensure that the river channel is at least nine feet deep in all places. This makes it possible for barges to navigate the Upper Mississippi River. Between 1938 and 1973, the U.S. Army Corp of Engineers required the lockmaster and assistant lockmaster to live on site, and they did, in two white homes overlooking the river. One home remains on site, and it&#039;s the only Lockmaster&#039;s Home that remains on it&#039;s original site. This home is a museum managed by the Guttenberg Heritage Society. There are exhibits about the construction of the lock and dam as well as exhibits showcasing Guttenberg&#039;s rich history. One room displays the late Dr. Carson Palmer&#039;s medical supplies. Palmer served Guttenberg for many years as a physician, surgeon, optometrist and dentist. Exhibits also detail Guttenberg&#039;s service men of WWII and the pearl button industry.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tLock and Dam Ln.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.252.1531</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John and Lavina Bangs Residence",
            "lat": "40.912564",
            "lon": "-91.379566",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/henry-nhr-johnlavinabangshouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John and Lavina Bangs Residence</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.912564,-91.379566\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John and Lavina Bangs house, built in 1865, is a fine example of the Italianate style as applied to residential architecture. It was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2759 Old Highway 34<br />New London, IA 52645<br />Henry County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Alexander Clark House",
            "lat": "41.421451",
            "lon": "-91.048094",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alexander Clark House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.421451,-91.048094\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house&#039;s original owner, Alexander Clark, was an African-American political figure, orator, editor, and Mason. He was well-known for his fight for Black civil rights, particularly the enactment of a state Black suffrage amendment in 1868, and for leading the fight for the admission of Black children in all public schools in Iowa. His home was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t203 3rd St. W<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First Presbyterian Church",
            "lat": "41.423221",
            "lon": "-91.047135",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Presbyterian Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.423221,-91.047135\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First Presbyterian Church is a simple, well-proportioned example of mid-19th Century Gothic Revival architecture. It is particularly noteworthy for the remarkable harmony of the entire complex, the two parts of which were built nearly 50 years apart. It was built in the late 1860s and may have been encouraged by the first Iowa Synod as a proper symbol of these early organizational efforts in Iowa. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 Iowa Ave.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Old Muscatine County Jail",
            "lat": "41.424982",
            "lon": "-91.043788",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Muscatine County Jail</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.424982,-91.043788\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1856-1857, the Muscatine County Jail is the only remaining example of Greek Revival government architecture in Muscatine. It was built by the contractors Hines and Milford to replace a two-story wooden structure built in 1838-1839 on the nearby courthouse square. It was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t405 4th St. E<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Welch Apartments",
            "lat": "41.421833",
            "lon": "-91.046528",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Welch Apartments</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.421833,-91.046528\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1900, the Welch Apartment block is principally significant for its well-designed interior. The stairwell is particularly of note and lends itself well to being a common meeting place for residents. The property was for many years the location of the Scott House Hotel and other assorted small commercial concerns during the late 19th Century. It underwent a series of renovations during the early 20th century, and in 1928, the plan of the building came to largely appear as it does today. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t220 Iowa Ave.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Muscatine History and Industry Center: Home of the Pearl Button Museum",
            "lat": "41.421207",
            "lon": "-91.046506",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Muscatine History and Industry Center: Home of the Pearl Button Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.421207,-91.046506\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>As the Pearl Button Capital of the World, the Muscatine History and Industry Center features exhibits not only on the production of pearl buttons, but also about their significance to the development of the Muscatine community. The museum also features exhibits exploring other industries that have worked to build up communities, such as Monsanto and KENT. Additionally, the Muscatine History and Industry Center: Home of the Pearl Button Museum also features a museum store, where guests can purchase authentic pearl buttons and an assortment of other buttons.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t117 2nd St. W<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.263.1052</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://muscatinehistory.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Kreinbring Phillips 66 Gas Station",
            "lat": "41.857823",
            "lon": "-90.922879",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cedar-nhr-kreinbringphillips66station-3.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kreinbring Phillips 66 Gas Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.857823,-90.922879\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kreinbring Phillips 66 Station was built by August L. Kreinbring, a Lowden resident, in 1934. He built the station to capitalize on the traffic brought through town on the Lincoln Highway, the first coast-to-coast roadway. At that time, the Lincoln Highway was the busiest east-west transcontinental route in the nation. Kreinbring built his station as a Tudor Revival cottage, a style that was used by the Phillips Oil Company to advertise an image of wholesome respectability to customers. He followed the company plan for the station, and then added landscaping and other amenities west of the property to create a welcoming and park-like setting for weary travelers. The park was removed when a new owner built a service bay annex in 1946. The Kreinbring Phillips 66 was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 Main St.<br />Lowden, IA 52255<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Downtown Commercial Historic District",
            "lat": "41.421617",
            "lon": "-91.045327",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/muscatine-nhr-muscatinedowntowncommericaldistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Downtown Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.421617,-91.045327\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Downtown Historic District, Second Street East from Pine to Mulberry, was the commercial center of Muscatine from the early development in the 1840s and 1860s, significant growth in the second half of the 19th Century, and its changing uses in the first half of the 20th Century. Many of the businesses that resided in this district played a key role in the community&#039;s growth and success. The district includes excellent examples of commercial architecture in Muscatine from the 1840s to 1960. It was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2nd St. E<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sioux County Courthouse",
            "lat": "43.004549",
            "lon": "-96.058928",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-nhr-siouxcountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sioux County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.004549,-96.058928\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux County Courthouse is one of the finest examples of Richardsonian Romanesque architecture in Iowa. The Courthouse was built in 1904 and has served as the county seat since its construction. Typical of the style are the massive, rusticated, varicolored stonework, bold Romanesque detail, wide, heavy arches and corresponding arcades, and the variety of window treatments that are found around the building. The Sioux County Courthouse was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Central Ave.<br />Orange City, IA 51041<br />Sioux County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Sioux County Historical Museum",
            "lat": "43.003876",
            "lon": "-96.059099",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-historymuseum-siouxcountyhistoricalmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sioux County Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.003876,-96.059099\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux County Historical Museum was built in 1991, and serves as the historical hub of Sioux County. There are many items and exhibits of historical interest and significance in the museum including displays illustrating the difficult travel that immigrants experienced crossing the North Atlantic and arriving in America, artifacts and exhibits document the labor and hardships the settlers endured turning the open prairie into cropland and homesteads, a substantial Native American collection, and the Hawkins one room schoolhouse.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t120 3rd St. SW<br />Orange City, IA 51041<br />Sioux County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.737.8357</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://siouxcountyhistoricalsociety.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Muscatine County Courthouse",
            "lat": "41.424539",
            "lon": "-91.043111",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Muscatine County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.424539,-91.043111\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Muscatine County Courthouse was designed by J.E. Mills and built by J.J. Acalpine in 1909. It was constructed of Bedford limestone and the interior of the dome covered with eight murals. It was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 3rd St. E<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sinnett Octagon House",
            "lat": "41.452439",
            "lon": "-91.031225",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sinnett Octagon House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.452439,-91.031225\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1855, the Sinnett Octagon House is an excellent example of the once popular octagon style of building. It is a two-story brick home featuring a wrap-around porch and a windowed cupola. The house is now used as an office building and was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2610 Park Ave.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Trinity Episcopal Church",
            "lat": "41.423525",
            "lon": "-91.042395",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Trinity Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.423525,-91.042395\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built from 1851-1855, this delicate stone church building was designed by New York architect Frank Will. The church had been founded in 1839 by the Mathew Matthews family and the original smaller frame church building was replaced by this one. It is one of Iowa’s oldest church buildings still in use as a place of worship, and was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t211 Walnut St.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Belfrage Barn",
            "lat": "42.358828",
            "lon": "-96.349020",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-belfragebarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Belfrage Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.358828,-96.349020\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>John Belfrage, bought the land on which this barn stands in 1875 after serving in the Civil War. A carpenter named Aaron Gunderson built the barn on the land in 1910.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2410 Port Neal Rd.<br />Sergeant Bluff, IA 51054<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Cinema Theatre",
            "lat": "41.423888",
            "lon": "-91.043909",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cinema Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.423888,-91.043909\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1917, the Cinema Theatre still functions as a movie theater today.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t313 E 3rd St.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "S. M. McKibben House",
            "lat": "41.422462",
            "lon": "-91.042071",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/muscatine-nhr-smmckibbenhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">S. M. McKibben House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.422462,-91.042071\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The McKibben House stands as a well-preserved example of double house construction. Samuel N. McKibben, an early settler and businessman of Muscatine, built the house between 1866 and 1869. This house has maintained its integrity inside and out and is one of few early structures that remain in the oldest residential section of town. It was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 Walnut St.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Shirley Barn",
            "lat": "40.694211",
            "lon": "-95.693275",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont-barn-shirleybarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Shirley Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.694211,-95.693275\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>William R. and Sarah Hunter Shirley settled in Fremont County in 1858. They purchased their land about 1860 which grew to hundreds of acres in Sections 18, 19 and 20 in Sidney Township. The present farmstead stands on the same property as the original farmstead in Section 20. This barn was built by the family about 1940 when grandson, Wallace Fountain Shirley owned the property. In the early pioneer days at their home, the family recalled fighting wolves, playing with Indian children, hunting wild turkey and chasing horse thieves along the Loess Hills of Fremont County.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2442 Bluff Rd.<br />Hamburg, IA 51640<br />Fremont County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "DeBoer Grocery Museum and Little House Museum",
            "lat": "43.311123",
            "lon": "-95.791128",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/osceola-historymuseum-deboergrocerymuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">DeBoer Grocery Museum and Little House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.311123,-95.791128\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The De Boer Grocery Museum and Little House Museum is a collection of artifacts from the grocery industry and a small 19th century home. The grocery museum features original grocery store shelving, fruit and vegetable counters, and original walk-in meat cooler. It also contains original scales, an antique cash register and more. The Little House Museum is a three-room home built in 1882 that is furnished with items from the time it was owned.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t320 3rd St.<br />Ashton, IA 51232<br />Osceola County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.724.6239</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World War I and II Memorial",
            "lat": "42.601168",
            "lon": "-90.996813",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/dubuque-monument-holycross-worldwar1-2memorial.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World War I and II Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.601168,-90.996813\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This World War Memorial, on the grounds of the Holy Cross Catholic Church, memorializes eight men of the Holy Cross community (two from World War I and six from World War II) who died for their country. The monument states: &quot;We were young, we have died, remember us.&quot; Both men who died in World War I died of disease. Joseph C. Blake was 26 years old when he died of pneumonia in France on October 15, 1918. John Carter died of Spanish influenza and pneumonia at Camp Greenleaf, Georgia, the very next day.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tChurch St.<br />Holy Cross Catholic Church<br />Holy Cross, IA 52053<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Clayton Independent School",
            "lat": "42.902585",
            "lon": "-91.146058",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-countryschool-claytonindependentschool.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clayton Independent School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.902585,-91.146058\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">141mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clayton Independent School is a two-story stone school, built in 1860. It is built from native limestone and sets between the Mississippi River and a forested bluff. The school was in operation through the mid-twentieth century. It was added to the National Register of Historic Places on October 8, 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1st St.<br />Clayton, IA 52049<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "John McGreer Barn",
            "lat": "40.659556",
            "lon": "-91.622662",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-johnmcgreerbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John McGreer Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.659556,-91.622662\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">141.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The McGreer Barn is considered locally significant for its architectural styles from the Pennsylvania-type barn and the banked/basement crib that were notable and remarkable outbuilding types in late 19th century rural Iowa. The barn is also important for its representation of the large and prosperous livestock operation of John McGreer. The John McGreer Barn and Crib was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2056 150th Ave.<br />Donnellson, IA 52625<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Canton Church School",
            "lat": "42.161157",
            "lon": "-90.896326",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Canton Church School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.161157,-90.896326\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">141.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1877, the Canton School is one of the best and oldest examples of limestone school construction remaining in the state. Unlike many rural schools of this vintage, most of which were extremely plain, the Canton School exhibits some nice details, notably the window hoods and eaves trim. The Canton School was added to the National Register of Historic Places in 1979 and is maintained by the Jackson County Conservation Commission.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t14723 3rd Ave.<br />Monmouth, IA 52309<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Kolsrud Barn",
            "lat": "43.215806",
            "lon": "-91.382183",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/allamakee-barn-kolsrudbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kolsrud Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.215806,-91.382183\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">141.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kolsrud Barn was restored between 2012 and 2014.  Owner Clark Kolsrud, great-great grandson of barn builder Jacob Johnson, led the restoration efforts. Johnson came to Iowa from Norway in 1862 and purchased this 80 acre farm for $500. In 1870, he built the barn using oxen, timber from the farm and rock quarried only 100 yards from the barn location. During the three-year restoration, Kolsrud used 30 gallons of red paint and gave the barn a new foundation. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1243 Gjefle Dr.<br />Waukon, IA 52172<br />Allamakee County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "J Avenue Bridge",
            "lat": "41.137640",
            "lon": "-91.178000",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/louisa-bridge-javenuebridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J Avenue Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.137640,-91.178000\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">141.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The J Avenue Bridge over Otter Creek is a pony truss bridge built about 1920 with a span and total length of 100-feet.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tJ Ave.<br />Wapello, IA 52653<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Julius and Annie Oversen House",
            "lat": "42.469004",
            "lon": "-96.342550",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-juliusandannieoversonhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Julius and Annie Oversen House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.469004,-96.342550\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">141.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built between 1899 and 1900, the Julius and Annie Overseen house is an example of local interpretation of the Italianate style. It also has local significance for its association with residential development during Morningside neighborhood’s and Sioux City’s boom period of 1893-1910. The Julius and Annie Overseen House was added to the National Register of Historic Places in 2007.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2037 S Lemon St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Sergeant Bluff Historical Museum",
            "lat": "42.404001",
            "lon": "-96.359787",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-historymuseum-sergeantbluffmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sergeant Bluff Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.404001,-96.359787\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">141.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sergeant Bluff Historical Museum was established by volunteer community residents in 1986 to preserve local history. The museum contains a collection of historical artifacts displaying the rich history of Sergeant Bluff from the days of the pioneers to today. Exhibits highlight the military history of the area, pioneer relics, an 1800s Surrey and hearse, and much more.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t409 4th St.<br />Sergeant Bluff, IA 51054<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.943.2028</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Western Hotel",
            "lat": "42.593467",
            "lon": "-90.981683",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Western Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.593467,-90.981683\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">141.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Western Hotel is a very unique structure in the state of Iowa. The building was constructed in a salt box style and used mainly wood construction materials. The Western Hotel was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUS Hwy. 52<br />Holy Cross, IA 52053<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. William Harding Gravesite",
            "lat": "42.458260",
            "lon": "-96.346675",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-govgravesite-harding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. William Harding Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.458260,-96.346675\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">141.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>William Lloyd Harding (October 3, 1877 – December 17, 1934) served as the 22nd Governor of Iowa from 1917-1921. Harding is interred in his home town of Sioux City at Graceland Park Cemetery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2701 S Lakeport Ave.<br />Graceland Park Cemetery<br />Sioux City, IA 51106<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Dubuque County",
            "lat": "42.440649",
            "lon": "-90.929728",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Dubuque County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.440649,-90.929728\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">141.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dubuque County Freedom Rock® in Epworth features the Governor’s Greys. In 1859, Dubuque citizens formed the “Governor’s Greys.” This new military company was the first in America to pledge their service to the nation at the start of the Civil War. The city hall facing side of the rock shows many Dubuque County veterans, including the Roman Catholic Chaplain, Lieutenant Aloysius Schmitt, who was posthumously awarded the Navy and Marine Corps Medal for “distinguished heroism and sublime devotion to his fellow man” after perishing on the USS Oklahoma at Pearl Harbor. US Army Combat Engineer Rich Billmeyer who was wounded by an IED in Afghanistan, Army nurse Major Genevieve Smith who was killed in a plane crash over Korea in 1950 and Bob Kluesner, a machine gunner in the Vietnam War. Kluesner survived being shot in the back of the head and the chest, went through many surgeries and returned home to Dubuque County. The Dubuque County (Epworth) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t191 Jacoby Dr. E<br />Epworth, IA 52045<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.343.7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bethel Church",
            "lat": "41.109910",
            "lon": "-91.187631",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/louisa-nhr-bethelchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bethel Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.109910,-91.187631\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">141.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bethel Church was built in 1855, following the organization of a congregation by the Wapello mission of the Methodist Episcopal Church in Iowa in 1854. The church was built of native limestone and is surrounded on three sides by the church cemetery. An iron fence, placed in 1861, runs along the gravel road which forms the south edge of the church property. The Bethel Church was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t13499 35th St.<br />Morning Sun, IA 52640<br />Louisa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Mid-American Museum of Aviation and Transportation",
            "lat": "42.413862",
            "lon": "-96.374211",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-historymuseum-midamericamuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mid-American Museum of Aviation and Transportation</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.413862,-96.374211\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">142.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mid-American Museum of Aviation and Transportation gives a unique look at the history of transportation on land and in the air. The museum has a vast collection of antique aircraft, cars, and bicycles. Some of the exhibits include Aircraft from commercial to general, military to sport and homebuilt, Surface Transportation from vintage cars and motorcycles to military vehicles and antique road equipment, a United Flight 232 exhibit and garden, a 1913 Road Grader, A partial Boeing 727 fuselage painted in United Airlines colors, ’41 Cadillac Fleetwood “60” Special Sunroof Sedan used by President Truman in an inaugural parade in Omaha, and the largest radial engine ever used on an airplane.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2600 Expedition Ct.<br />Sioux City, IA 51102<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.252.5300</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://midamericaairmuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles City College Hall",
            "lat": "42.475232",
            "lon": "-96.360095",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-charlescitycollegehall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles City College Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.475232,-96.360095\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">142.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Charles City Hall was the original building on Morningside College&#039;s campus. It housed the classrooms, dormitory, library, dining hall, physics lab. From 1900 until 1966 Charles City Hall served as the home of the Conservatory and music department. The Charles City College Hall was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMorningside College<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Morningside College Historic District",
            "lat": "42.474964",
            "lon": "-96.360211",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-morningsidecollegehistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Morningside College Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.474964,-96.360211\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">142.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Morningside College Historic District is significant as the largest and best collection of late 19th and early 20th century educational buildings in Northwest Iowa. Three important styles are represented in the buildings: Richardsonian Romanesque, Italian Renaissance, and Moderne. In addition the district is known for its role as a center for Methodist higher education through the University of the Northwest, Charles City College and Morningside College. The Morningside College Historic District was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMorningside Ave.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Stein Barn",
            "lat": "41.447289",
            "lon": "-90.984738",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stein Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.447289,-90.984738\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">142.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The grandfather of Paul Stamler, the previous owner, bought this farm in 1903, and had the barn built in 1924 for $3000. The barn was built without proper braces, so the roof eventually started to sag, which required the later installation of additional braces. The lean-to at the rear of the barn was added in mid-1950&#039;s. The barn has an unusually high peak, making the distance from the hay mow floor to the top very high, so the barn could hold a great amount of loose hay. A barn dance was once held in this cavernous loft. The Stamler&#039;s milked 35 cows in the barn with Surge Milkers. The milk was then cooled and poured into milk cans for pick-up by the local dairy. The barn was featured on the Iowa Barn Foundation&#039;s 2007 Muscatine County Barn Tour and Picnic.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2975 IA Hwy. 22<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "The Ion Exchange, Inc.",
            "lat": "43.116394",
            "lon": "-91.256639",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Ion Exchange, Inc.</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.116394,-91.256639\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">142.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This nursery specializes in the production, harvesting, cleaning and marketing of wildflowers, grass seeds and plants native to Iowa and the Midwest.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1878 Old Mission Dr.<br />Harpers Ferry, IA 52146<br />Allamakee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.291.2143</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.ionxchange.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Max Theater",
            "lat": "43.399317",
            "lon": "-95.749441",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/osceola-theater-maxtheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Max Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.399317,-95.749441\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">142.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Max Theatre was built in 1919 as the Royal Theatre. In 1929, the theatre was renovated to add sound equipment. In 1941, R.C. Max purchased the Royal Theatre and in 1951, Max designed a new marquee and renamed the theatre the Max Theatre. The theatre was the first widescreen theater in Northwest Iowa. In 1995, the theater underwent significant renovation and expansion. The Max Theatre is still in operation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t338 9th St.<br />Sibley, IA 51249<br />Osceola County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Peter Stauer House",
            "lat": "43.018549",
            "lon": "-91.182213",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-peterstauerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Peter Stauer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.018549,-91.182213\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">142.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Peter Stauer House was built in 1882 by Elias White Hale Jacobs of McGregor, Iowa. Though Jacobs was a fairly unknown architect, the Stauer House has many characteristics that are unique to his work. The house is an excellent example of Queen Anne architecture. Stauer and Company operated a saw mill in McGregor. The house was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t629 Main St.<br />McGregor, IA 52157<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "McCallum Museum and Brunson Heritage House",
            "lat": "43.403717",
            "lon": "-95.743443",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/osceola-historymuseum-mccallummuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McCallum Museum and Brunson Heritage House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.403717,-95.743443\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">142.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The McCallum Museum and Brunson Heritage House was built in 1957 to protect the H. K. Rogers House; one of the first wooden houses built in Osceola County. In 1927 the house was moved from what is presently today a golf course, to Sibley&#039;s Central Park. The museum is also home to pioneer tools, Civil War guns, household goods, uniforms, swords, farm equipment, china, glassware, photographs, manuscripts, a 1908 Sears Automobile, a two headed calf, and many other items. The Dorothea Brunson Heritage Home addition was constructed in 1988 with antique furnishings from Dorothea Brunson&#039;s home.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5th St. and 8th Ave.<br />Sibley Central Park<br />Sibley, IA 51249<br />Osceola County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.754.3882</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Christian Bloedel Wagon Works",
            "lat": "43.020145",
            "lon": "-91.180739",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-christianbloedelwagonworks.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Christian Bloedel Wagon Works</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.020145,-91.180739\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143mi.</span></div>\n\t\t</div>\n\n\t\t<p>Construction began on the Christian Bloedel Wagon Works in 1862. This is one of only few wagon and carriage manufactories and repair shops. Bloedel moved to McGregor in 1860 with his family and used the skills he had learned as a young man to open the Wagon Works. It was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t524 Main St.<br />McGregor, IA 52157<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Sergeant Floyd Monument",
            "lat": "42.462627",
            "lon": "-96.377897",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-historymuseum-sergeanttfloydmonument.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sergeant Floyd Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.462627,-96.377897\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sergeant Floyd Monument commemorates Sergeant Charles Floyd, Jr., the only member of Lewis and Clark&#039;s Corps of Discovery Expedition to die on the journey. He died on August 20, 1804, during the Expedition’s journey west. He died of a ruptured appendix just three months after the explorers set out. The Corps of Discovery held a funeral for Floyd and buried him on a bluff overlooking the Missouri River.  They named the location Floyd’s Bluff. Floyd’s Bluff now has an asphalt driveway up its eastern slope from Route 75 to Floyd Monument at its crest. Today, part of a 23-acre park, a 100-foot obelisk of heavy Kettle River sandstone marks the final resting place of Sergeant Charles Floyd, Jr. The monument was made a National Historic Landmark in 1960 and added to the National Register of Historic Places in 1966.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Lewis Blvd.<br />Sioux City, IA 51106<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.279.0198</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://siouxcitymuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Tabor Home Vineyards and Winery",
            "lat": "42.092993",
            "lon": "-90.856086",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Tabor Home Vineyards and Winery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.092993,-90.856086\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Tabor Home Vineyards and Winery is Iowa&#039;s oldest estate winery. The winery is located on an 1860s Jackson County farmstead that has been in the Tabor family for five generations. Tabor Home Vineyards and Winery is a designated site in the Silos and Smokestacks National Heritage Area.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3570 67th St.<br />Baldwin, IA 52207<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.673.3131</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.taborhomewinery.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Osceola County Courthouse",
            "lat": "43.402090",
            "lon": "-95.749352",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/osceola-nhr-osceolacountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Osceola County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.402090,-95.749352\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Osceola County Courthouse is the second courthouse built in the county. The first courthouse was built in Sibley in 1872, after Sibley was named the county seat because it was the first town in the county. The current Osceola County Courthouse was built in 1902 and was renovated in the 1920s and 1960s. The original cupola and clock are gone, but the brick and stone courthouse remains. There are three murals inside the courthous painted by Odem J. Opens in 1912. The building was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3rd Ave.<br />Sibley, IA 51249<br />Osceola County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Goedert Meat Market",
            "lat": "43.022690",
            "lon": "-91.177854",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-goedertmeatmarket.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Goedert Meat Market</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.022690,-91.177854\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Goedert Meat Market was built in 1889, and it is representative of structures built when all aspects of the meat business from slaughter to processing to sales could be, and often were, housed in one building. John Goedert was the original owner, but soon after the business was established, he formed a partnership with H.F. Renziehausen. The market building now stands as an antique store that provides 13 units for dealers in antiques and collectibles. The second floor has remained a residence. It was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t322 Main St.<br />McGregor, IA 52157<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Gorway No. 4 School",
            "lat": "43.399711",
            "lon": "-95.755902",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/osceola-countryschool-gorwayno4.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gorway No. 4 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.399711,-95.755902\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Gorway #4 School is located on the Osceola County Fairgrounds, just west of downtown Sibley.  The school is open during the county fair.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW 9th St.<br />Osceola County Fairgrounds<br />Sibley, IA 51249<br />Osceola County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sharon Methodist Episcopal Church &amp; Cemetery",
            "lat": "41.995510",
            "lon": "-90.855141",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sharon Methodist Episcopal Church &amp; Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.995510,-90.855141\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This church is the last surviving building from the community of Burgess-Smithtown and represents a successful long-term cross-cultural cooperation between two congregations, which shared the same church building from 1875 through World War II. The church was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1223 125th St.<br />Lost Nation, IA 52254<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Central School",
            "lat": "42.173560",
            "lon": "-90.854375",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Central School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.173560,-90.854375\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Central (Hickory Grove) School from 1868 is a good example of the use of local limestone for a variety of building types in mid-19th-century Jackson County. It was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t16719 40th Ave.<br />Baldwin, IA 52207<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "McGregor Historical Museum",
            "lat": "43.023399",
            "lon": "-91.177005",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-historymuseum-mcgregorhistoricalmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McGregor Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.023399,-91.177005\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The McGregor Historical Museum has well laid out displays including military, medical, schools, riverboats, clamming, the Ringling Brothers McGregor history, and the Wild Life School. Fascinating items such as Andrew Clemens’ sand bottles, Emma Big Bear baskets, church pipe organ, child’s sleigh, model riverboat and ferry, early studio box camera, and more are on display. There are also fine examples of period clothing, furniture, house-wares, books, tools and more.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t256 Main St.<br />McGregor, IA 52157<br />Clayton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.873.2221</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "American School of Wildlife Protection Historic District",
            "lat": "43.029021",
            "lon": "-91.176956",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">American School of Wildlife Protection Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.029021,-91.176956\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>McGregor Heights, now a summer resort area, located on a bluff north of the town of McGregor, was the location of the American School of Wild Life Protection, a summer field school established in 1919 for the purpose of promoting resource conservation values among the lay public. Some claimed it was the first of its kind in the nation. The Wild Life School was an important vehicle for promoting a national park in the Upper Mississippi River Valley and, later, the Upper Mississippi River Wildlife and Fish Refuge. The school remained a vital element in the Iowa Conservation Movement until World War II. Many of the summer cottages at McGregor Heights date to the era of the American School of Wild Life Protection. The area also contains foundations of the Wild Life School pavilion and the foundations of an observation tower.  The American School of Wild Life Protection Historic District was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMcGregor Heights Rd.<br />McGregor, IA 52157<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Joseph &quot;Diamond Jo&quot; Reynolds Office Building and House",
            "lat": "43.024604",
            "lon": "-91.175076",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-josephdiamondjoreynoldsofficebuildingandhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Joseph &quot;Diamond Jo&quot; Reynolds Office Building and House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.024604,-91.175076\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Joseph Reynolds Office Building and Residence was built in 1880 by Joseph Reynolds. During his first years in McGregor, Reynolds utilized the available steamboat lines to ship grain down the Mississippi, but continued efforts in the mid-1860s to deny him access to river transportation caused him to establish his own line around 1866. By the early 1870s, the &quot;Diamond Jo&quot; line had become a major factor in river transportation. The building has been repurposed and used as a brewery. It was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t123 A St.<br />McGregor, IA 52157<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Colonial Theatre",
            "lat": "40.604945",
            "lon": "-95.657209",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont-theater-colonialtheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Colonial Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.604945,-95.657209\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Colonial Theatre was constructed in 1921 and is a rare surviving example of an early 20th century movie theater still in operation. The entrance foyer retains its historic wall and ceiling finishes with the historic projection booth above. In 1930, the theater included steam heating, electrical lights and seating for 450 patrons.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1120 Main St.<br />Hamburg, IA 51640<br />Fremont County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.382.1524</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "McGregor Commercial Historic District",
            "lat": "43.024680",
            "lon": "-91.175417",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-mcgregorcommercialhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McGregor Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.024680,-91.175417\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>McGregor, known as &quot;Pocket City&quot; because it is tucked in a ravine between 400-foot high river bluffs and the Mississippi River, was established as a ferry landing in 1836. By 1853, most of the buildings in town were frame or stone structures located near the river and throughout the 1850s and 60s the town was a wholesaling and trading center for goods shipped by river. The arrival of the railroad changed the town&#039;s fortunes. By the 1870s the riverfront area had gained an unflattering reputation as a rough part of town where prostitutes solicited river men in saloons. In the 21st century, Downtown McGregor has become a destination for tourists.but McGregor Commercial Historic District (comprised of the 100-300 blocks of Main Street and the 100-200 blocks of A Street) has survived. It was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMain St. and A St.<br />McGregor, IA 52157<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "American House",
            "lat": "43.026205",
            "lon": "-91.173801",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-americanhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">American House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.026205,-91.173801\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The American House is a hotel built during McGregor’s early years as a Mississippi River ferry landing. Most visitors came from across the Mississippi River by ferry or on the river in packet boats. They left McGregor for points west by horse, stagecoach, wagon or train. It was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t116 Main St.<br />McGregor, IA 52157<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Park Farm Winery",
            "lat": "42.514073",
            "lon": "-90.914216",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Park Farm Winery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.514073,-90.914216\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This family farm uses their Iowa-grown grapes to produce Iowa wines, both red and white. Park Farm Winery educates the public on varieties of wines and grapes, the establishment of a vineyard, harvesting grapes and much more.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t15159 Thielen Rd.<br />Bankston, IA 52039<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.557.3727</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"www.parkfarmwinery.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Broad View Ranch Historic District",
            "lat": "43.275630",
            "lon": "-95.900713",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lyon-nhr-broadviewranchhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Broad View Ranch Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.275630,-95.900713\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Broad View Ranch is an operating cattle ranch, which uses the farmlands, and farmstead buildings built a century ago by the man who established the ranch, Charles F. Peters. The Broad View Ranch Historic District was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2572 Log Ave.<br />Sheldon, IA 51201<br />Lyon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Marquette Depot Museum, Gift Shop and Information Center",
            "lat": "43.044350",
            "lon": "-91.181412",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-historymuseum-marquettedepotmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marquette Depot Museum, Gift Shop and Information Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.044350,-91.181412\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Marquette Depot Museum celebrates the town&#039;s railroad history with exhibits of railroad artifacts. In 1920, Marquette boasted the largest railroad terminal in Iowa and over 400 people worked in the rail yard. The depot also contains a gift shop and visitor information.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t216 Edgar St.<br />Marquette, IA 52158<br />Clayton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.873.1200</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Saint Paul&#039;s Episcopal Church and Parish Hall",
            "lat": "41.598427",
            "lon": "-90.912682",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Saint Paul&#039;s Episcopal Church and Parish Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.598427,-90.912682\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Saint Paul&#039;s Episcopal Church was built in 1856 for one minister and nineteen members. It is the oldest church in Durant. It was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 6th Ave.<br />Durant, IA 52747<br />Cedar County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Geode State Park",
            "lat": "40.824011",
            "lon": "-91.378498",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Geode State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.824011,-91.378498\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Geode State Park joined the Iowa park system in 1937. Local groups raised the money to purchase 143 acres of land for the park, and the Civilian Conservation Corps to begin clearing trees, creating roads, and building structures. The CCC was a public work relief program that operated from 1933-1942 as part of the New Deal. It was designed to provide jobs for young men while implementing a natural resource conservation program in every state and territory. The CCC area of the park was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3333 Racine Dr.<br />Danville, IA 52623<br />Henry County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.392.4601</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610124\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Old West Paint Creek Church and Cemetery",
            "lat": "43.254783",
            "lon": "-91.359638",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old West Paint Creek Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.254783,-91.359638\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.8mi.</span></div>\n\t\t</div>\n\n\t\t\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1306 Maud Rd<br />Waukon, IA 52172<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Pink Elephant",
            "lat": "43.041122",
            "lon": "-91.177935",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-artpublic-pinkelephant.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pink Elephant</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.041122,-91.177935\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pink Elephant was homeless after being used at a Republican Convention in Sparta, Wisconsin. Iowa entrepreneurs rescued the elephant, painted it pink, and used it to welcome guests to their now defunct Pink Elephant Supper Club. Notably, in 1976, Pinky &quot;water-skied&quot; down the Mississippi River to see Presidential candidate Jimmy Carter. Pinky now welcomes visitors to the Marquette/McGregor area.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA Hwy. 76<br />Marquette, IA 52158<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Chimney Rock Ranch Barn",
            "lat": "43.242248",
            "lon": "-91.348663",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/allamakee-barn-chimneyrockranchbarn-2.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chimney Rock Ranch Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.242248,-91.348663\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The large building is a corn crib, granary, hog barn, and machine shed. It was built in two parts in 1907-08. The second part was added to the north end of the original building later that year or the next year. The expansion included the granary, which has a space for hogs built underneath it. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1245 Chimney Rock Rd.<br />Waukon, IA 52172<br />Allamakee County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Eagles Landing Vineyard and Winery",
            "lat": "43.044925",
            "lon": "-91.179620",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-eagleslandingvineyardandwinery.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Eagles Landing Vineyard and Winery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.044925,-91.179620\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located along the banks of the Mississippi River, Eagles Landing treats guests to a true taste of Iowa. Visitors can purchase products made from grapes grown in the vineyard, including jams, jellies, table syrups and the winery&#039;s award winning wine.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t127 North St.<br />Marquette, IA 52158<br />Clayton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.873.2509</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"www.eagleslandingwinery.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry Lubben House, Smokehouse and Springhouse",
            "lat": "42.093951",
            "lon": "-90.840593",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry Lubben House, Smokehouse and Springhouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.093951,-90.840593\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Henry Lubben was born at Oldenberg, Germany, and came to Jackson County in 1837.  He was one of the first settlers in Monmouth Township and chose the site for his farm because of the presence of a large spring. Family lore says Lubben built the house for his bride, whom he married in 1858. Lubben was involved in quarrying the stone for his house and may have been involved in the actual construction.  The construction took place over three years, from 1858-1860. In 1992, when the Henry Lubben house, smokehouse and springhouse were added to the National Register of Historic Places, it was still owned by Lubben’s direct descendants.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t7998 50th Ave.<br />Monmouth, IA 52309<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mill Rock School",
            "lat": "42.058574",
            "lon": "-90.839375",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mill Rock School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.058574,-90.839375\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Millrock School is an example of the basic schoolhouse model once used in Jackson County. The one room building was constructed in 1869 by Abner Hunt and P.A. Downer and remained in use until 1910. The school is still filled with items that are common of its time period; desks, chairs, books, lunch pails, an antique Victrola, wood burning stove, and more. The Mill Rock School was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2980 53rd Ave.<br />Baldwin, IA 52207<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "West Paint Creek Synod Evangelical Lutheran Church and Cemetery",
            "lat": "43.260746",
            "lon": "-91.359567",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Paint Creek Synod Evangelical Lutheran Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.260746,-91.359567\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1892, the West Paint Creek Synod Evangelical Lutheran Church near Waterville, Iowa, is listed on the National Register of Historic Places. Its historic significance is tied to its association with Norwegian and Norwegian-American architecture and social history. The first Norwegian immigrants came to Allamakee County as early as 1851, but many avoided the Upper Midwest during the U.S. Civil War. Before 1866, about 1,200 Norwegian immigrants had crossed the Atlantic and traveled inland to settlements in Wisconsin, Iowa, and Minnesota. Around 1,400 immigrated in the late 1860s and another 1,400 in the 1880s. Most immigrants to central Allamakee County came from an area called Norde Land in the Norwegian county of Oppland, which extends into the mountains northwest of Oslo. In the 1850s, many Norwegian immigrants struggled with pioneer life and spent most of their time working just to survive. For example, it took one full year to clear 100 acres of prairie land by hand and they made all their clothing and household goods. Traveling into town was an all-day ordeal, so most families planted gardens and harvested wildlife for food. In the open prairie, many were forced to live first in their ox-cart wagons, or &quot;kubberuller,&quot; as they were often known among Norwegian-Americans. Others dug holes in the coulee hills and lived in that type of housing until they could build a frame house. Norwegian immigrants were excellent carpenters using hand tools and native hardwoods. Over the years, the church became the center of social life in West Paint Creek. It hosted a wide variety of activities – church services, Sunday school, vacation bible school, baptisms, communions, confirmations, weddings, and funerals – and Ladies Aid Society events for both unmarried and married ladies, men’s club meetings, community parties, and rehearsals and concerts for a choir known as “the singing Lutherans.” In 1890, Peter Paulson and his wife, Sophia Ericksdatter (Bakkum) Paulson, deeded a little more than one acre of land to the congregation, which built the West Paint Creek Synod Evangelical Lutheran Church in 1892. It features lancet arched windows, a gable-front roof, and strong vertical elements with the bell tower and spire. It&#039;s nestled in a picturesque, rural setting with tall white pine trees and arborvitae trees in the cemetery. Today, the church retains the character-defining features, details, materials and workmanship associated with the Late Victorian Carpenter Gothic style of architecture. Along with its cemetery and 1938 shed, the entire property reflects the history of local Norwegian settlement and ethnicity. Evidence of Norwegian immigrant carpentry skills can be found throughout the church, including the Dutch lap siding, frame construction, paneled doors, pews, and flooring. The interior woodwork surfaces – especially the altar, altar rail, chancel, pulpit and native pine wooden pews – are carved with great intricate detail, with an ornate cross on each side of the pews. In addition, the altar features a painting by Herbjorn Nilsen Gausta called &quot;Resurrection&quot; that depicts Jesus with the angels and Roman centurion soldiers. Gausta was a popular, itinerant Norwegian immigrant artist, and Luther College holds nearly 60 of his paintings in its Fine Arts Collection.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1351 Elon Dr<br />Waterville, IA 52170<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Margaret Sieben House",
            "lat": "42.089262",
            "lon": "-90.835976",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Margaret Sieben House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.089262,-90.835976\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mrs. Margaret Sieben house was built in 1869. The house is a fine example of limestone residential architecture from mid-19th-century Jackson County. It was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6445 50th Ave.<br />Baldwin, IA 52207<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Early Log Barns",
            "lat": "43.182463",
            "lon": "-91.283870",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Early Log Barns</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.182463,-91.283870\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>These two barns are among the only log barns left in Iowa. It is believed the larger of the two barns was built in 1868. Orville Nelson owned these primitive barns for years. Note: The barns are about one mile distant from each other.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t801 White Pine Rd.<br />Waterville, IA 52170<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Vande Kieft Barn",
            "lat": "43.012561",
            "lon": "-96.140250",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-barn-vandekieftbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vande Kieft Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.012561,-96.140250\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Vande Kieft Barn was built in 1940. It was converted from a cow barn to a stable for the family&#039;s draft and quarter horses.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3280 440th St.<br />Orange City, IA 51041<br />Sioux County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Patrick&#039;s Church",
            "lat": "42.285482",
            "lon": "-90.847135",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Patrick&#039;s Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.285482,-90.847135\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Patrick’s Church, built in 1854, is an outstanding example of limestone architecture in Jackson County from the mid-19th century. The area known as Garryowen was settled by Irish immigrants from County Limerick in 1838-1839. The parish was founded by the Rev. Samuel Charles Mazzuchelli, OP in 1840. The St. Patrick&#039;s Church - Garryowen was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t28999 46th Ave.<br />Garry Owen, IA 52032<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dennis Melcher Pottery and Residence",
            "lat": "40.816036",
            "lon": "-91.371454",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dennis Melcher Pottery and Residence</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.816036,-91.371454\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dennis Melcher and his brother Edward were born in Baden, Germany and immigrated to Burlington, Iowa in the 1840s. Dennis originally opened a pottery in Burlington in 1844, until the brothers discovered a vein of clay near Agency Road outside of Danville. Dennis bought 20 acres of land to relocate the business and built a limestone building for the pottery and a house across the road for his family. The pottery opened in 1851 and produced crocks, churns, kitchen jugs, flowerpots, and possibly dinnerware. The house and pottery were added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t22981 Agency Rd.<br />Danville, IA 52623<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Evans Block",
            "lat": "42.494061",
            "lon": "-96.395130",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-evansblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Evans Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.494061,-96.395130\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>In the 1880s, Sioux City had a building boom. The Evans Block is a surviving example of the boom. The construction was organized by a notable entrepreneur and banker, Fred T. Evans, and designed by Charles Brown, who also drew the plans for the Ottumwa Coal Palace and the Sioux City Corn Palace. The neo-Romanesque style with its impressive sand-stone exterior exemplifies the late 19th century confidence in the strength and growth of Sioux City. The Evans Block was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1128 4th St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Plymouth Block",
            "lat": "42.493891",
            "lon": "-96.395928",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Plymouth Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.493891,-96.395928\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Plymouth Block was built in 1890 and financed by the Boston Investment Company. Architects Edward W. Loft and William McLaughlin designed the Romanesque structure to house both commerical and light manufacturing businesses. Over the years the building has been home to saddle companies, clothing manufacturers, printers, hardware stores, the Sioux City College of Medicine and the Metropolitan Business College. It was renamed the Call Terminal Building in 1930 when it was purchased by local real estate developer George C. Call.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1106 4th St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sioux City Fire Station No. 3",
            "lat": "42.495510",
            "lon": "-96.394336",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-siouxcityfirestation3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sioux City Fire Station No. 3</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.495510,-96.394336\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux City Fire Station Number 3 is an example of national firehouse design trends in the first half of the twentieth century. The Sioux City Fire Station Number 3 was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1211 5th St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sioux City Linseed Oil Works",
            "lat": "42.492354",
            "lon": "-96.396102",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-siouxcitylinseedoilworks.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sioux City Linseed Oil Works</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.492354,-96.396102\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux City Linseed Oil Works is associated with the emergence of agricultural derived industries in Sioux City, a vital advantage that led to that city’s rapid growth during the 1880s and early 1890s. It is also historically significant for its impressive scale of operations and its successful operation for half a century. Also the building is a virtually unaltered example of an early and large-scale linseed oil works, parts of which date to its original 1883 construction, and the rest to its 1891 post-fire reconstruction along virtually identical architectural lines. While its style is that of a utilitarian late-Victorian industrial facility, an number of special design features survive from both the original 1883 and the 1891 partial-reconstruction to make this a significant example of industrial design. The Sioux City Linseed Oil Works was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t208 Court St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fourth Street Historic District",
            "lat": "42.494196",
            "lon": "-96.396310",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-4thstreethistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fourth Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.494196,-96.396310\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fourth Street Historic District, comprised of 15 buildings from 1002 Fourth Street to 1128 Fourth Street which were built in the late 19th and early 20th century, is the best collection of Richardsonian Romanesque commercial buildings in the state. The district is also significant because many of the buildings were financed by investors from the East coast who took an interest in the city’s real estate and development during this era. In 1889, Sioux City booster A.S. Garretson arranged for investors from Boston to visit Sioux City and see the elaborate Corn Palace. That trip convinced the financiers to invest and spurred phenomenal growth and development in Sioux City. A remarkable 2,367 buildings were built between 1890 and 1891, including many buildings in the Fourth Street Historic District such as the Plymouth Block (1100-10 Fourth Street), Bay State Block (1105-13 Fourth Street) and Evans Block (1128 Fourth Street). The Fourth Street Historic District was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4th St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Albertson and Company/Rocklin Manufacturing Company",
            "lat": "42.490351",
            "lon": "-96.398647",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Albertson and Company/Rocklin Manufacturing Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.490351,-96.398647\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>It was home to two manufacturing companies that played big roles in helping the United States and its allies win two world wars. The Albertson and Company/Rocklin Manufacturing Company building in Sioux City is listed on the National Register of Historic Places and its historic significance is tied to its association with the local manufacturing industry and the role it played during World War I and World War II. Built in 1912, the building originally housed the Automatic Valve Seating Machinery Company until 1914 when it reorganized and became the Sioux City Machine and Tool Company, producing spark plugs and tire valves. Four months later, the company failed and it&#039;s shop foreman, Swedish-born Frans Oscar Albertson (1882-1958), founded Albertson &amp; Company, which took over the manufacturing plant. When World War I broke out, he secured a four-month Canadian wartime contract to supply 6,000 piston rings and repair tools for munition plants. While Albertson never owned the building, his company occupied it until 1920 when it moved into a new and larger two-story plant at Floyd and 31st streets. That year, the company produced 11 different tools and generated more than $500,000 in sales. Albertson went on to become the world&#039;s largest producer of portable electronic and air tools. Known as Sioux Tools Inc., a division of Snap-On Tools as of 1993, it remained in Iowa until 2001 when it relocated to North Carolina. Meanwhile, the original building underwent numerous owners and uses from 1921 to 1942 when the Rocklin Manufacturing Company took it over. Originally, the Rocklin family was in the flower business and claimed to have the largest greenhouse complex west of the Mississippi River during World War I. But Isadore J. &quot;Rocky&quot; Rocklin (1908-1993), son of floral partner Michael E. Rocklin (1881-1976), wasn&#039;t destined for the floral trade. The younger Rocklin spent is formative years working with radios and graduated from the University of Iowa in 1930 with a degree in mechanical engineering. He spent several years working in numerous industries – radio and communications, air conditioning and furnace sales – gathering a broad range of skills that led to future success with his own company. In 1941, Rocklin&#039;s company was located at 2700 Hawkeye Drive and a year later, it moved into the former Albertson building. The company&#039;s products included water-level regulators for stock tanks, pump jacks, corn pickers, hydraulic pumps and tractor-powered saws and mowers that improved efficiency and safety on the farm. When World War II began, Rocklin responded by manufacturing equipment for Chrysler Corporation, International Harvester Company and Allis Chalmers Company while supplying the Chicago Ordnance District, the Detroit Arsenal and the Tank Automotive Center in Detroit with products for tanks and aircraft. Rocklin would eventually play a key role in providing spring and shock mounts for the national missile defense system, the nomination form said. In 1944, the company received the rare and coveted Ordnance Corps flag from the U.S. Army for outstanding contributions in the field of ordnance production. Iowa Gov. Bourke B. Hickenlooper and Sioux City Mayor Forrest Olson attended the presentation ceremony and watched Rocklin present 400 of his employees with certificates and ordnance pins at the Hotel Martin ballroom. After the war, Rocklin moved into new structures, leaving the two-story brick building mostly abandoned and increasingly derelict over the next 50 years. By 2017, however, the company had outgrown its post-World War II space and looked to its original 8,000-square-foot building to house a product showroom, conference room with video-conferencing technology and more. The project used historic preservation tax credits and included historically accurate windows, exposed beams, columns and flooring that recaptured the building&#039;s original late 19th and 20th century architecture while retaining a two-story exterior non-historic mural (2005) that honors the company&#039;s past.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 S Jennings St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Boston Block",
            "lat": "42.494513",
            "lon": "-96.397342",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-bostonblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Boston Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.494513,-96.397342\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Boston Block is a good and remarkably well preserved example of a Richardsonian influenced commercial design. Its high degree of exterior and interior integrity, and detailing, and its scale make it the best representative of a series of major commercial constructions which were financed by the Boston Investment Company in the early 1890s. The Boston Block was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1005 4th St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mary Elizabeth Day Nursery",
            "lat": "42.499241",
            "lon": "-96.396120",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-maryelizabethdaynursery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mary Elizabeth Day Nursery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.499241,-96.396120\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mary Elizabeth Day Nursery is the oldest day care facility in the state of Iowa and Iowa’s second-oldest preschool. Its history parallels the history of the child-care movement nationwide for this century, and is also important in documenting the history of women and families. Built in 1926 by J. A. Raven of the Lytle Company, one of Sioux City’s leading firms of the 1920s, the Mary Elizabeth Day Nursery is a two-story reinforced-concrete fireproof building in the Italian Renaissance style with Prairie influences. The Mary Elizabeth Day Nursery was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t814 Court St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Swedish Evangelical Lutheran Augustana Congregation Church",
            "lat": "42.496590",
            "lon": "-96.396047",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-swedishevangelicallutheranchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Swedish Evangelical Lutheran Augustana Congregation Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496590,-96.396047\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This church is significant under because it is the sole surviving religious structure and congregation with an unbroken continuous Swedish heritage associated with the settlement of Swedish people in Sioux City. The Swedish Evangelical Lutheran Augustana Congregational Church was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t600 Court St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Holy Trinity Greek Orthodox Church",
            "lat": "42.496166",
            "lon": "-96.398976",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-holytrinityorthodoxchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Holy Trinity Greek Orthodox Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496166,-96.398976\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1925, the church is an example of the Italian Revival style. It was the first Greek Orthodox Church built in the State of Iowa. The Holy Trinity Greek Orthodox Church was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t900 6th St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Alhambra Apartments",
            "lat": "42.498837",
            "lon": "-96.400398",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-alhambraapartments.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alhambra Apartments</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.498837,-96.400398\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Alhambra Apartments are unique. This building is a beautiful and noteworthy representation of early Late 19th and 20th Century Revival style architecture. The Alhambra Apartments were added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t801 8th St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Badgerow Building",
            "lat": "42.493870",
            "lon": "-96.402232",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-badgerowbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Badgerow Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.493870,-96.402232\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Badgerow Building is an outstanding example of a regional interpretation of the Art Decor architectural style. The building becomes important not only for its final completed state, but also for the artistic philosophy of the period, that played such an important role in the design process. The Badgerow Building was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t622 4th St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Former Sioux City Free Public Library",
            "lat": "42.496614",
            "lon": "-96.401535",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-siouxcityfreepubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Former Sioux City Free Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496614,-96.401535\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux City Free Public Library is a good example of the Italian Renaissance influenced architectural design. It is also a good example of the work done by Edward L. Tilton, a New York architect and a nationally recognized figure in the field of library design. This library is the only example of Italian Renaissance design in Sioux City’s public buildings and it is the only example of Tilden’s designs in the State of Iowa. The Sioux City Free Public Library was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t705 6th St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Motor Mart Building",
            "lat": "42.496183",
            "lon": "-96.403229",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-motormartbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Motor Mart Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496183,-96.403229\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Commerce Building, constructed in 1912 as the Motor Mart Building, is significant as a local representation of early twentieth century commercial architecture and as the first building in Sioux City to use the Turner Mushroom framing system. The Motor Mart Building is one in a large set of structures built to accommodate the burgeoning commercial growth of the Pre-World War I Era. In Sioux City&#039;s history, it is one of a now declining number of early twentieth century buildings which identified the character of that community for several decades. The Motor Mart Building was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t520 Nebraska St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "T. S. Martin Company",
            "lat": "42.494560",
            "lon": "-96.403928",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-tsmartincompany.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">T. S. Martin Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.494560,-96.403928\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The T. S. Martin Company Buildings occupy nearly a quarter block at the intersection of Nebraska Street and Fourth Street. It is actually four separate buildings - three buildings on Fourth Street (515-517, 519 and 521) and one building on Nebraska Street (409-411). The Fourth Street buildings were given a unifying facade in 1910-11. T. S. Martin and Company is the last remaining example of an early Sioux City dry goods store. Thomas Sanford Martin opened his first store in 1880, just as the city was becoming a booming gateway to the northwest. When the railroad arrived in 1868, goods bound for the Dakotas and Montana could be shipped by rail to Sioux City, rather than being shipped up the Missouri River from St. Louis. T. S. Martin capitalized on Sioux City&#039;s boom times, and expanded his store several times. By 1902. T.S. Martin and Company was the oldest of the &quot;Big Three&quot; department stores in Sioux City. Martin&#039;s operated until 1948, when it was purchased by Younker&#039;s. The T. S. Martin Company Buildings, the last remnant of the &quot;Big Three&quot;, was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tNebraska St. and 4th St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Sioux City Public Museum",
            "lat": "42.494935",
            "lon": "-96.402578",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-historymuseum-siouxcitypublicmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sioux City Public Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.494935,-96.402578\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux City Public Museum collects, preserves, and interprets cultural and social history with an emphasis on Sioux City and the region.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t607 4th St.<br />Sioux City, IA 51104<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.279.6174</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://siouxcitymuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Martin Hotel",
            "lat": "42.494459",
            "lon": "-96.404574",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Martin Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.494459,-96.404574\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Martin Hotel was built in 1912 by J.P. and L.B. Martin, two brothers of an influential Sioux City family. It operated until 1963. It was one of the city’s leading hotels, the first in a series of 20th Century hotel buildings in the community. Architecturally it was distinguished from others of its type, being built on the principles of Chicago school design. Today it is the last of the community’s early hotels. The Martin Hotel was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 Pierce St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Warrior Hotel",
            "lat": "42.496588",
            "lon": "-96.403915",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-warriorhotel.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Warrior Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496588,-96.403915\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Warrior Hotel was constructed on the eve of the Great Depression, it was the first and last of Sioux City hotels of the mid-20th Century. The Warrior was also the last major investment of Sioux City’s leading businessmen before the Depression squelched development. The Warrior Hotel was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t525 6th St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "New Orpheum Theatre",
            "lat": "42.496004",
            "lon": "-96.404702",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-theater-orpheumtheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">New Orpheum Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496004,-96.404702\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux City Orpheum was designed by the nationally known Chicago firm of Rapp and Rapp. Built at a cost of $1.75 million in 1927, it was one of the largest theatres in the state. By then, Americans had begun to stay home and listen to the radio, rather than attending wholesome vaudeville shows at theaters. Local promoter and developer Arthur Sanford forged ahead with his plan to build a fantastic theatre, even though vaudeville shows were declining in popularity. Sanford wanted a new theater in Sioux City because vaudeville shows could perform as they traveled between shows in the bigger cities of Chicago and Minneapolis. Even so, only 15 months after opening the New Orpheum began showing talking pictures in addition to vaudeville shows. By 1937, the New Orpheum was no longer hosting live performances. In 1968 and 1982 the theatre underwent major renovations and it was converted into a two-screen theater – with the original auditorium divided in half and many of the theatre’s original architectural features were covered up or lost.  The Orpheum Theatre Preservation Project was established in 1989 and the group raised $15 million to restore the theatre to its original grandeur.  A grand re-opening was held on September 15, 2001. Since then, the theatre has hosted nationally known performers, Broadway shows and the Sioux City Symphony. The New Orpheum Theatre was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t520 Pierce St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.258.9164</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://orpheumlive.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Davidson Building",
            "lat": "42.496548",
            "lon": "-96.404671",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Davidson Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496548,-96.404671\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Significant as a beautiful example of Sullivanesque architecture, the Davidson Building was designed by master architect William Steele. There is no other structure in the City of Sioux City designed exclusively in this style of architecture. The Davidson Building was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t505 6th St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mount Sinai Temple",
            "lat": "42.504725",
            "lon": "-96.403256",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-mountsinaitemple.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mount Sinai Temple</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.504725,-96.403256\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mt. Sinai Temple is a beautiful example of Queen Anne style architecture and as a local example of Prairie School Style architecture. This property is also significant for its association with the emigration of European Jews to Iowa and Sioux City. The Mt. Sinai Temple was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1320 Nebraska St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Former Sioux City Central High School",
            "lat": "42.503457",
            "lon": "-96.402808",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-siouxcitycentralhighschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Former Sioux City Central High School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.503457,-96.402808\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Sioux City Central High School is Sioux City’s oldest standing public school. It is constructed of regionally obtained Lake Superior sandstone. It is a five level structure covering 164,000 square feet and it architecturally resembles a castle. It is located on one of the town’s highest hills. The Sioux City Central High School was added to the National Register of Historic Places in 1973.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t42.503457\t-96.402808<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sioux City Masonic Temple",
            "lat": "42.499316",
            "lon": "-96.403066",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sioux City Masonic Temple</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.499316,-96.403066\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux City Masonic Temple is locally significant as an excellent unaltered example of the Spanish Colonial Revival architectural design. The only other downtown commercial building executed in this style is the Sioux City Free Public Library. The building was designed by the architectural firm of Beuttler and Arnold. The Sioux City Masonic Temple was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t822 Nebraska St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Williges Building",
            "lat": "42.496982",
            "lon": "-96.405348",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-willigesbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Williges Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496982,-96.405348\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Williges Building is one of the last surviving examples of a manufacturing and retail facility for Sioux City’s fur industry. It is significant as a late manifestation of early Prairie School commercial architecture in the United States. The Williges Building was added to the National Register of Historic Places in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t613 Pierce St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Municipal Auditorium",
            "lat": "42.490845",
            "lon": "-96.406337",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-municipalauditorium.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Municipal Auditorium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.490845,-96.406337\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">144.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux City Municipal Auditorium is an outstanding example of post-World War II construction in the Moderne style public architecture. The building was constructed according to plans that were prepared immediately before the war and therefore reflects characteristics of what is commonly called “PWA Moderne”. Although the city failed to secure PWA (Public Works Administration) funding, the massive public auditorium was eventually constructed through local bonds. The Municipal Auditorium was added to the National Register of Historic Places in 2006. The auditorium has been re-purposed for use as a recreation center.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 Gordon Dr.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sioux City Baptist Church",
            "lat": "42.504216",
            "lon": "-96.403961",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-siouxcitybaptistchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sioux City Baptist Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.504216,-96.403961\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux City Baptist Church is Prairie School style church. The Sioux City Baptist Church was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1301 Nebraska St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Former Sioux City Public Library - North Side Branch",
            "lat": "42.520419",
            "lon": "-96.400260",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-siouxcitylibrarynorthside.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Former Sioux City Public Library - North Side Branch</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.520419,-96.400260\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145mi.</span></div>\n\t\t</div>\n\n\t\t<p>This structure is associated with the Carnegie Library movement in Iowa and in particular the development of branch libraries in Iowa and Sioux City. Andrew Carnegie gave $10,000 grants to various towns across the country to produce a center for learning in the form of a public library. The Sioux City Public Library North Side Branch was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t810 29th St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "United States Post Office and Courthouse",
            "lat": "42.496034",
            "lon": "-96.407129",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">United States Post Office and Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496034,-96.407129\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux City United States Post Office and Courthouse is exemplary of the Art Deco style and the Moderne Movement in government construction. The building is a product of the Great Depression. By the 1930s, most federal buildings had been built in Classical style. With the Great Depression, the need to provide government space while saving on costs of unnecessary ornamentation made functional, Modern architecture a logical choice for new government buildings. Local architects Beuttler and Arnold of Sioux City designed the building, while Proudfoot, Rawson, Souers and Thomas of Des Moines provided architectural oversight for the project. The cornerstone was laid in 1932, the building was completed in 1933 and was occupied by the first week of 1934. Major interior renovations were completed in 2000, but the interior plan has not been altered. The Sioux City United States Post Office and Courthouse was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t320 6th St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Effigy Mounds National Monument",
            "lat": "43.088829",
            "lon": "-91.185554",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/allamakee-nhl-effigymounds.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Effigy Mounds National Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.088829,-91.185554\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145mi.</span></div>\n\t\t</div>\n\n\t\t<p>Effigy Mounds National Monument is one of two properties in Iowa managed by the National Park Service. There are more than two hundred burial and effigy mounds along the Mississippi River. Thirty-one of the visible mounds are bird or bear effigies. The native people who built these mounds lived as long ago as 2500 years. This site is considered a sacred site by native peoples today. A visitor center offers orientation films and displays and interpretive markers are found along some of the trails. It was added to the National Register of Historic Places in 1966.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t151 IA Hwy. 76<br />Harpers Ferry, IA 52146<br />Allamakee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.873.3491</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://nps.gov/efmo\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Woodbury County Courthouse",
            "lat": "42.497112",
            "lon": "-96.405989",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-woodburycountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Woodbury County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.497112,-96.405989\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145mi.</span></div>\n\t\t</div>\n\n\t\t<p>Though Sioux City was made the county seat in 1858, the first permanent Woodbury County courthouse was not finished until 1878. In 1914, the county determined that the courthouse was too small for the city and they decided to build a new one. The new courthouse was constructed from July 10, 1916 to March 1, 1918 at a cost of $850,000. It is made of Roman brick and granite with a 157-foot-tall tower on top of the building and features a frieze sculptural work by Alfonso Iannelli over its doors and six interior murals painted by John Warner Norton. The Woodbury County Courthouse is known as the only major civic building designed by the architects of the prairie school. Architecture critic Sydney LeBlanc named the building one of the 200 key American buildings of the 20th century, calling it “a model of progressive architecture at a time when most prominent American designers sought inspiration in the past.” The building was listed on the National Register of Historic Places in 1973, and in 1996, the National Park Service designated it a National Historic Landmark.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t620 Douglas St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ben and Harriet Schulein House",
            "lat": "42.517419",
            "lon": "-96.401811",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-benandharrietschuleinhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ben and Harriet Schulein House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.517419,-96.401811\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1913, the Schulein House is significant as one of the earliest successful Prairie School designs by William LaBarthe Steele, a prominent architect in Sioux City for three decades. The Schulein House contains strong horizontal lines characteristic of Prairie style, most notably in the substantial overhang of the roofline and wide front porch. The foundation is brick while the frame structure has a narrow clapboard siding. Although its design falls halfway through William Steele’s career and within the last decade of Prairie Style’s national popularity the success of the Schulein House may mark a turning point in Steele’s career, representing his abandonment of other architectural styles. William Steele designed dozens of buildings in Sioux City including the Woodbury County Courthouse, a National Historic Landmark. The Ben and Harriet Schulein House was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2604 Jackson St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dr. Van Buren Knott House",
            "lat": "42.514934",
            "lon": "-96.404101",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-drvanburanknotthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. Van Buren Knott House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.514934,-96.404101\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1903 and designed by renowned Chicago architect Howard Van Doren Shaw, this house is an outstanding local example of Colonial Revival architecture. The Dr. Van Buren Knott House was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2323 Nebraska St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "James P. Newton House and Maid&#039;s Cottage",
            "lat": "42.514709",
            "lon": "-96.403292",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-jamesnewtonhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James P. Newton House and Maid&#039;s Cottage</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.514709,-96.403292\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This home is an outstanding example of early Craftsman architecture with Prairie School style influences. It was built in 1909 and designed by prominent Sioux City architect William L. Steele. The James P. Newton House and Maid&#039;s Cottage was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2312 Nebraska St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mylius-Eaton House",
            "lat": "42.520924",
            "lon": "-96.401895",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-myliuseatonhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mylius-Eaton House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.520924,-96.401895\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mylius Eaton House is a well preserved example of the Queen Anne Revival style of architecture. The house is also known locally as the Palmer House. The Mylius Eaton House was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2900 Jackson St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Simmons Hardware Company Warehouse",
            "lat": "42.493865",
            "lon": "-96.409474",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-simmonshardware.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Simmons Hardware Company Warehouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.493865,-96.409474\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>After the Civil War, Sioux City boosters worked to bring the railroad to town. The first train arrived in Sioux City in March 1868 and made the city became a shipping center. By 1900, the city was a regional wholesale centers with 42 wholesale companies operating there, including a local branch of the Simmons Hardware Company. Simmons, headquartered in St. Louis, built or leased distribution warehouses across the country. The Simmons Hardware Company Warehouse in Sioux City, an irregular pentagon, divided by a wide interior tunnel for a railroad siding, was built during 1905 and 1906. Over 700 rail carloads of construction materials were used in building the warehouse, with 250 of the cars bringing in about two million bricks for the job! Simmons Hardware went out of business during the Great Depression, but the clock on the tower still displays the original letters, rather than numbers.  The letters represent the Simmons motto: “The Recollection Of Quality Remains Long After The Price Is Forgotten.” During the 20th century, numerous other businesses used the building. It was added to the National Register of Historic Places in 2008 and has been re-purposed as part of the Hard Rock Hotel &amp; Casino Sioux City.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t111 3rd St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Thomas Episcopal Church",
            "lat": "42.503165",
            "lon": "-96.406023",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-stthomasepiscopalchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Thomas Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.503165,-96.406023\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Thomas Episcopal Church, built in 1891-92, is an outstanding example of the Richardsonian Romanesque style of architecture. Restored following a disastrous fire in 1922, the building compares favorable with other examples of a Sioux City quartzite or “Sioux Falls Granite” building tradition. It was designed by James W. Martin and built by John M. Poorbaugh. The St. Thomas Episcopal Church was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1200 Douglas St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Herschler Home and Stagecoach Stop",
            "lat": "40.664895",
            "lon": "-91.514097",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Herschler Home and Stagecoach Stop</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.664895,-91.514097\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Based out of Christian and Katharina Herschler historic home, built in 1865, the Christian Herschler Winery and Stagecoach Stop previously operated as both a stagecoach stop and a winery for local visitors. Today, the Jarvis family has worked to restore both the stagecoach stop and the winery to its pre-Civil War style and continue to provide and aesthetic and historical experience for the community.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t503 FRKLN 6th St.<br />Franklin, IA 52625<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.835.9432</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://wix.com/christianherschler/winery\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Blanchard Cemetery",
            "lat": "40.735459",
            "lon": "-95.851467",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/fremont-cemetery-blanchardcemetery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Blanchard Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.735459,-95.851467\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The site of Blanchard Cemetery and the surrounding area was once a small hamlet called Civil Bend. The settlement here began with the Blanchard family, coming to Iowa from Kansas, and the Platt/Gaston family from Nebraska. These families held strong antislavery beliefs, and the area became known as center for abolitionist activity. The Blanchard house became a stop on the Underground Railroad and prominent abolitionist John Brown found shelter here during his trips to and from Kansas helping escaped slaves to freedom. A sign commemorating this history is located in Blanchard Cemetery. This is Stop #1 on the Freedom Trail tour: With a price on his head, John Brown laid low in southeast Kansas with the group of men, women, and children that had escaped from slavery on farms in southwestern Missouri. Then, evading pursuers, they traveled further north and crossed the Missouri River at Nebraska City on February 4, 1859. The group made their way to Civil Bend, Iowa, and rested there for the night. This began Brown’s final journey across Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCounty Road J34<br />Percival, IA 51648<br />Fremont County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Elzy G. Burkam House",
            "lat": "42.506932",
            "lon": "-96.406947",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-elzygbuckhamhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Elzy G. Burkam House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.506932,-96.406947\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1894, the house is one of the earliest, largest and best-preserved examples of Colonial Revival architecture in Sioux City. No other house in the city is known to have as many elaborate hand-painted ceiling murals, and much of the original woodwork is preserved. The Elzy G. Burkam House was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1525 Douglas St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John Peirce Mansion",
            "lat": "42.520955",
            "lon": "-96.402661",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-johnpiercemansion.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Peirce Mansion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.520955,-96.402661\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>John Peirce&#039;s elegant home has been a part of Sioux City&#039;s history for over 120 years. Completed in 1893, the Victorian-era home is constructed with South Dakota quartzite making it a unique example of Richardsonian Romanesque architecture. The Pierce house, however, has a rather “brutal” quality about it, due largely to the rough textures of the masonry detail. After being purchased by the Junior League of Sioux City for $10,000 in 1958, the mansion was donated to the City of Sioux City for use as a cultural building. The mansion served as the site of the Sioux City Public Museum from 1961 to 2011 and was listed on the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2901 Jackson St.<br />Sioux City, IA 51104<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.279.6174</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rose Hill Historic District",
            "lat": "42.506257",
            "lon": "-96.408021",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-rosehillhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rose Hill Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.506257,-96.408021\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Rose Hill District, includes the 1400-1700 blocks of Douglas Street, Grandview Boulevard and Summit Streets. It shows an important era of population growth and intense residential development in Sioux City at the end of the 19th century and the beginning of the 20th century. The architecture of the district represents a range of building type, style and form. Eight architects or firms have been identified with buildings in the district. The Rose Hill Historic District was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tGrandview Blvd.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "West Point Library, Museum and Tourism Center",
            "lat": "40.717425",
            "lon": "-91.452295",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-historymuseum-westpointlibrarymuseumtourismcenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Point Library, Museum and Tourism Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.717425,-91.452295\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>In addition to providing all the services you would expect of a library, the museum at the West Point Library works to preserve items of historical significance from the 19th century. Its collection includes period furnishings, women&#039;s clothing, military uniforms, German bibles, newspaper collection, and antique farm tools.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t317 5th St.<br />West Point, IA 52656<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.837.6315</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://westpointiowa.com/library-and-museum/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Sioux City Lewis and Clark Interpretive Center",
            "lat": "42.490282",
            "lon": "-96.415431",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-siouxcitylewisandclarkinterpretivecenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sioux City Lewis and Clark Interpretive Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.490282,-96.415431\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux City Lewis &amp; Clark Interpretive Center showcases exhibits about the Corps of Discovery (a special unit of the U.S. Army that was formed during the Lewis and Clark Expedition) and it’s time in the Sioux City area from late July to early September 1804. It&#039;s joined by the Betty Strong Encounter Center next door to comprise an almost 20,000-square-foot, private, non-profit cultural complex. The complexes host many cultural events and are home to exhibits, programs and activities that explore how we live together as diverse people, and how we care for our land and other natural resources. The interactive exhibits include galleries, reproductions of military equipment and games artifacts, the role of the buffalo to Native peoples, DVD presentations on exploration and Native cultures, the vessel used during the Lewis &amp; Clark Expedition, and the community effort that resulted in the Sgt. Floyd Monument, the first National Historic Landmark designated by the National Park Service.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t900 Larsen Park Rd.<br />Interstate Hwy. 29 - Exit 149<br />Sioux City, IA 51103<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.224.5242</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://siouxcitylcic.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Atchison A. Ashby House",
            "lat": "42.509489",
            "lon": "-96.409864",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-atchisonashbyhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Atchison A. Ashby House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.509489,-96.409864\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1916, this home is an example of the Tudor Revival style, constructed entirely of brick. Original blue prints show the architect was Frederick Henniger. Numerous original oak and walnut entryway doors, an elaborate staircase balustrade and art glass windows that still function. The Atchison A. Ashby House was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1807 Summit St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Arthur and Stella Sanford House",
            "lat": "42.510919",
            "lon": "-96.409940",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-arthwisstellasanfordhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Arthur and Stella Sanford House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.510919,-96.409940\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This residence is significant as the home of Arthur and Stella Sanford. Arthur was known as a Sioux City promoter, developer, philanthropist, and one of Sioux City&#039;s greatest builders. The Sanfords were very active in Sioux City&#039;s community affairs and gave substantially to public causes. The Arthur and Stella Sanford House was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1925 Summit St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Grandview Park Music Pavilion",
            "lat": "42.516721",
            "lon": "-96.409669",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-grandviewparkmusicpavilion.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grandview Park Music Pavilion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.516721,-96.409669\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>An independent park commission formed in Sioux City in 1906 because Sioux City had no park. In August 1908, the commission presented Grandview Park to the city. In 1930, the Monahan Post Band began a campaign to build a band shell in Grandview Park. But, with the Great Depression only a small amount of funds were raised for the band shell. Neighbors were aghast at the proposed band shell as it was not grand enough for the beautiful park setting. Fortunately, in 1933, President Roosevelt created the Civil Works Administration and the proposed band shell became one of their projects. Local architect Henry Kamphoefner designed the band shell. \r\n\r\nOn February 17, 1938, the Sioux City Journal described it: &quot;The Sioux City music pavilion in Grandview Park, brain child of a young, unemployed and unknown architect of the city, who drew the plans in the basement studio at his home here, is to be included in an exhibit of the American Institute of Architecture, which will be shown throughout the United States and in Europe. This latest honor will place it among ~100 representative and distinguished (structures) erected in the United States since 1918.&quot;\r\n\r\nBuilding the Grandview Park Music Pavilion required 52 tons of reinforcing steel, 4,200 bags of Portland cement and 300 bags of white cement.\r\n\r\nKamphoefner rose from an unknown architect to dean of the North Carolina School of Design.  The Grandview Park Music Pavilion was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t24th St. and Grandview Boulevard<br />Grandview Park<br />Sioux City, IA 51104<br />Woodbury County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.siouxcityhistory.org/historic-sites/110-grandview-park-a-the-band-shell\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "H. H. Everist House",
            "lat": "42.518752",
            "lon": "-96.411072",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-hheveristhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">H. H. Everist House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.518752,-96.411072\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The H.H. Everist House, built in 1916-1917, is a noteworthy residential example of the Prairie School in Sioux City, and is the best example of the residential works in that school by William LaBarthe Steele, noted local architect. It was constructed for Hubert H. Everist, Sr., founder of L.G. Everist Inc. and Western Contracting Corporation. The H. H. Everist House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t37 McDonald Dr.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Vernon No. 8 Brick School",
            "lat": "42.400351",
            "lon": "-90.845703",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-countryschool-vernon8.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vernon No. 8 Brick School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.400351,-90.845703\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Vernon No. 8 one-room, red brick, schoolhouse is located at its original location in the southeast quarter of Vernon Township (Township 88N, Range 01E).</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t18409 N Cascade Rd.<br />Peosta, IA 52068<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-historic-landmarks.png",
            "title": "Sergeant Floyd River Museum and Welcome Center",
            "lat": "42.491178",
            "lon": "-96.418571",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-history-museum-sergeantfloydmuseumandwelcomcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-historic-landmarks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sergeant Floyd River Museum and Welcome Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.491178,-96.418571\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sergeant Floyd River Museum and Welcome Center is located on Sioux City’s riverfront and serves the tri-state areas of Iowa, Nebraska and South Dakota. The Museum and Welcome Center is located in a decommissioned United States Army Corps of Engineers inspection boat, the M.V. Sergeant Floyd (a National Historic Landmark). The towboat name honors Sergeant Charles Floyd who died just south of present-day Sioux City in July 1804, the only casualty of the Lewis and Clark Expedition. Visitors to the Sergeant Floyd Museum and Welcome Center will learn about the local area and Missouri River history.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 Larsen Park Rd.<br />Sioux City, IA 51103<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.279.0198</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-historic-landmarks.png",
            "title": "M.V. Sergeant Floyd Towboat",
            "lat": "42.491179",
            "lon": "-96.418493",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-history-museum-sergeantfloydmuseumandwelcomcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-historic-landmarks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">M.V. Sergeant Floyd Towboat</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.491179,-96.418493\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The M.V. Sergeant Floyd is a decommissioned United States Army Corps of Engineers inspection boat and one of Iowa&#039;s 26 National Historic Landmarks. The towboat name honors Sergeant Charles Floyd who died just south of present-day Sioux City in July 1804, the only casualty of the Lewis and Clark Expedition. The towboat is now home to the Sergeant Floyd Museum and Welcome Center here you can learn about the local area and Missouri River history.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 Larsen Park Rd.<br />Sioux City, IA 51103<br />Sioux City County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.279.0198</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Lincoln Elementary School",
            "lat": "42.525860",
            "lon": "-96.410200",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064aa30eaadf44f6ac74.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lincoln Elementary School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.525860,-96.410200\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lincoln Elementary School was constructed in the early 1950s to alleviate crowding due to the post-war baby boom. When the school opened in 1953, the school had seven classrooms, an auditorium, an office suite, and a library. \r\n\r\nWhile this school is important architecturally, its historic significance is with the first Black teacher in Sioux City’s public schools. Evelyn Walker Freeman, a graduate of Morningside College in Sioux City, had worked as a substitute teacher in the district since 1953—the year Lincoln School opened—but her application for full time employment had been denied. With the advocacy of the local NAACP chapter, Freeman was finally awarded a contract with the district in April 1955. She was assigned to Lincoln Elementary, where she taught until the 1960s when she and her husband moved out of state. \r\n\r\nThis development to hire Freeman as the district’s first Black teacher was the result of activism by the Sioux City NAACP chapter who saw the lack of African Americans teachers as a discriminatory practice that needed to change.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 Midvale Ave.<br />Sioux City, IA 51104<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Boniface Historic District",
            "lat": "42.500799",
            "lon": "-96.418284",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-stbonifacehistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Boniface Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.500799,-96.418284\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Boniface Historic District occupies an entire block just west of downtown Sioux City. All the buildings in the district were built within 13 years, during the early 20th century.  Between 1880 and 1890, Sioux City experienced phenomenal population growth, from 7,000 in 1880 to 39,000 in 1890. The Catholic Church established a new parish in the city, St. Boniface. The new church was organized by twenty-three German-speaking families. As the parish grew, more buildings were needed. The large Romanesque Revival church and rectory were designed by Brother Leonard Darscheid, and a complementary school, residence and heating plant were designed by Prairie School architect William LaBarthe Steele. Steele also designed the Woodbury County Courthouse. The St. Boniface Historic District was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t703 W 5th St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Bridgeport Bridge",
            "lat": "40.790594",
            "lon": "-91.364029",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bridgeport Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.790594,-91.364029\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Bridgeport Bridge was constructed in 1904 at the cost of $5,110, of steel and stone masonry. The Bridgeport Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2869 Old Quarry Rd.<br />West Point, IA 52656<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Sanford Center",
            "lat": "42.508661",
            "lon": "-96.417847",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064aa4627cbd02cdd315.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sanford Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.508661,-96.417847\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Sioux City’s Sanford Center was built in 1951 to “further interracial understanding and better community living.” It replaced the earlier Booker T. Washington Center which helped residents find housing and offered a meeting place for several community clubs, including the local chapter of the National Association for the Advancement of Colored People (NAACP). During World War II, the Washington Center functioned as a recreational hall for the black servicemen stationed at the Sioux City air base who were prohibited from using the city’s recreational facilities. By the 1940s, the Washington Center had outgrown its building and local philanthropists Stella and Arthur Sanford offered to pay for a new building.\r\n\r\nOnce the Sanford Center opened in 1951, it continued to serve the community in the way the Washington Center had by providing educational and recreational programs for children and adults, as well as space for social, community, and recreational events. The local chapter of the NAACP also held their meetings at the Sanford Center. \r\n\r\nThe Sanfords stipulated that the new building would be open to all Sioux City residents in need, not just African Americans, in order to fulfill the mission of interracial understanding and to promote a respectful and integrated society.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1700 Geneva St.<br />Sioux City, IA 51103<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Fairview School",
            "lat": "42.533685",
            "lon": "-96.412590",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fairview School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.533685,-96.412590\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fairview School was built in 1882 in Holstein, Iowa, but was moved to its current location in Sioux City during a major restoration in the 1970s. Although classes are no longer held in the building, many local schools bring their students to Fairview for special history programs, where they experience a typical day in a late 19th century country schoolhouse.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCountry Club Blvd.<br />Sioux City, IA 51104<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Everett School",
            "lat": "42.498857",
            "lon": "-96.425435",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Everett School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.498857,-96.425435\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">146mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1888, the two-story brick Everett School was originally known as the Davis Addition School. It was designed to accommodate some of Sioux City’s growing student population, which mushroomed from about 1,700 to 6,000 pupils between 1884 and 1894. Its multiple-classroom design was driven by new educational philosophies that encouraged schools to group students into different grade levels based on their age – a relatively new idea in the age of one-room schoolhouses. The building underwent numerous upgrades as education evolved over the next 50 years, including additions in 1891 and 1917, interior and exterior modernizations in 1931, and the construction of a cafeteria-auditorium (“cafetorium”) in 1940. It was used as an elementary school by the Sioux City School District from 1888 to 2011 and reopened the next year as an alternative school, housing the district’s alternative suspension program. Everett School was the oldest continually operating school in Sioux City until it closed in 2016. It was added to the National Register of Historic Places in 2018.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1314 W 3rd St.<br />Sioux City, IA 51103<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Former Sioux City Public Library - Smith Villa Branch",
            "lat": "42.506430",
            "lon": "-96.427457",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-siouxcitypubliclibrarysmithvilla.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Former Sioux City Public Library - Smith Villa Branch</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.506430,-96.427457\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">146.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Smith Villa Branch of the Sioux City Public Library is a an example of the provincial Prairie School style. Erected in 1927, long after the style had died out in Chicago, the building is a significant reminder of the tenacity of this native architectural movement in the Midwestern hinterlands. The Smith Villa Branch is virtually identical to the Fairmount Branch, built in the same year. The Sioux City Public Library Smith Villa Branch was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1509 George St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "East Paint Creek Synod Church and Cemetery",
            "lat": "43.239382",
            "lon": "-91.278833",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">East Paint Creek Synod Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.239382,-91.278833\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">146.5mi.</span></div>\n\t\t</div>\n\n\t\t\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1751 Gronna Dr<br />Waterville, IA 52170<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Old Stone Baptist Church &amp; Cemetery",
            "lat": "40.958201",
            "lon": "-91.198965",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Stone Baptist Church &amp; Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.958201,-91.198965\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">146.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Baptist Church near Sperry was built in 1847 and is among the few structures that survive from the earliest period of white settlement in Iowa. The use of local materials and the straightforward, utilitarian design of this stone church are characteristic of pioneer church architecture from this period. The church was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t13999 190th St.<br />Sperry, IA 52650<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-historic-sites.png",
            "title": "Toolesboro Mounds National Historic Landmark",
            "lat": "41.142866",
            "lon": "-91.063380",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/louisa-statehistoricsite-toolesboro.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Toolesboro Mounds National Historic Landmark</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.142866,-91.063380\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">146.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Toolesboro Indian Mounds State Historic Site consists of seven burial mounds on a bluff overlooking the Iowa River near where it joins the Mississippi River. The conical mounds were constructed between 100 BC and AD 200 by a local Hopewell group. At one time, there may have been as many as twelve mounds, but subsequent settlement and excavation have reduced that number to the present seven. As of yet, no village site near the Toolesboro mounds has been located, and this is attributed to the shifting path of the Iowa River which has obliterated possible village sites on the flood plain over the last 2000 years. Of the seven mounds, only two are visible on the grounds of the Educational Center. The rest are off in the woods, and are separated by a wire fence from the Educational Center. One of the mounds maintained near the Center, known as Mound 2, is the largest of the remaining mounds, measuring 100 feet in diameter and 8 feet in height. This mound was possibly the largest Hopewell mound in Iowa. The site is of national significance and is listed as a National Historic Landmark. The mounds have been excavated by different groups of people since the middle of the nineteenth century. The Davenport Academy of Natural Sciences undertook extensive excavations in the last half of the nineteenth century. Contained within the mounds were typical Hopewell artifacts: copper tools, stone platform pipes, shell and pearl beads, chipped stone tools, and mica sheets. The Toolesboro Mound Group was added to the National Register of Historic Places in 1966.</p>\t\t<p><em>A location in the collections: State Historic Sites, 99 County Tour - Iowa History Month</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6568 Toolesboro Rd.<br />Wapello, IA 52653<br />Louisa County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.523.8381</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://iowaculture.gov/history/sites/toolesboro-mounds-national-historic-landmark\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "IdleNot/Sywassink Barn",
            "lat": "41.465567",
            "lon": "-90.894695",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">IdleNot/Sywassink Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.465567,-90.894695\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">146.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Idlenot barn is on the Sywassink farm purchased in the 1880&#039;s by Joyce Schultz&#039;s great- grandfather, John Sywassink. Joyce grew up on this farm, and now is a nurse, but in years past she helped milk cows in this barn. It is possible that this barn replaced an earlier barn that was destroyed by fire. Cows were milked in stanchions that stretched the length of the barn on the east side. The hay mow on the North side (the side facing the road) went all the way to the floor for about 1/3rd of the length of the barn. On the south 2/3rd of the barn, the hay mow had a floor above stalls for up to 9 draft horses, and calf pens. A unique gutter system on the west roof is thought to be similar to what might be found on barns is certain parts of Germany. The barn was featured on the Iowa Barn Foundation&#039;s 2007 Muscatine County Barn Tour and Picnic.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3444 New Era Rd.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Maquoketa Caves State Park",
            "lat": "42.117580",
            "lon": "-90.779429",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-maquoketacaves.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Maquoketa Caves State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.117580,-90.779429\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">147mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Maquoketa Caves State Park is a collection of caves that date back thousands of years. First discovered in the 1830s, the caves vary in size, depth, and geological composition. The park features six miles of hiking trails and 29 campsites to give visitors a look into the natural wonder and beauty of the state of Iowa. \r\n\r\nDigital Artist Brent Holland will be working at Maquoketa Caves State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10970 98th St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.652.5833</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.exploreiowaparks.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Hoffman Barn",
            "lat": "42.752108",
            "lon": "-96.353281",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-barn-hoffmanbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hoffman Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.752108,-96.353281\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">147.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hoffman Barn was built at the turn of the century by Theodor Hoffman. The land, on which the barn sits, was homesteaded by Dennis Hoffman in 1870. Most of the wood used in building the barn came from cottonwood trees on the farm. The lower level was used for work horses. The stalls and bunks remain. The barn was the scene of many barn dances. Lawrence Welk played at some of those dances.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t23903 Co. Rd. C38<br />Merrill, IA 51038<br />Plymouth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Pine Mills German Methodist Episcopal Church",
            "lat": "41.480873",
            "lon": "-90.882086",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pine Mills German Methodist Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.480873,-90.882086\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">147.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pine Mills German Methodist Church was a product of the 19th Century settlement of eastern Iowa and serves as a reminder of the influence of the German immigrant population in the area. It was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3507 180th St.<br />Montpelier, IA 52759<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "New Mellerray Abbey",
            "lat": "42.389972",
            "lon": "-90.808710",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-historicsite-newmellerrayabbey.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">New Mellerray Abbey</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.389972,-90.808710\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">147.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>New Melleray is a Cistercian (Trappist) monastery located in the rolling farmland south of Dubuque, Iowa. It supports itself by farming and making wooden caskets. On July 16, 1849, shortly after the acquisition of 1,000 acres of rolling prairie and woodland southwest of Dubuque, and one cow and calf from one Cornelius Duggan for $14.00, the venerable Dom Bruno Fitzpatrick, Lord Abbot of Mount Melleray, Ireland, pontificated at the cornerstone laying ceremony. He pointed with his cane where the location was to be, and three brawny Irish brothers (Ambrose, Joseph and Timothy) slapped down a big chunk of oak. Thus the building project that was to become New Melleray got underway. A number of monks live, work and pray at the Abbey today.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6632 Melleray Cir.<br />Peosta, IA 52068<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.588.2319</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.newmelleray.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Sywassink Barn",
            "lat": "41.465079",
            "lon": "-90.886319",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sywassink Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.465079,-90.886319\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">147.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The turn-of-the-century Sywassink barn is still in use today. It is a basement barn, and still houses stock cows and calves below the hay mow level. Storage bins for oats and corn were on the hay mow level, and had discharge chutes down into the lower livestock level. In earlier days, cows were milked on the west side in the lean-to addition. The barn was featured on the Iowa Barn Foundation&#039;s 2007 Muscatine County Barn Tour and Picnic.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3510 New Era Rd.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Washington Mill Bridge",
            "lat": "42.304183",
            "lon": "-90.780731",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Washington Mill Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.304183,-90.780731\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">147.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Washington Mill Bridge is a road bridge crossing Lytle Creek near Bernard, Iowa that was built in 1877. It is a bowstring, through arch bridge, manufactured and built by the Massillon Bridge Company and by T.J. Donohue. The Washington Mill Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCreek Branch Ln.<br />Bernard, IA 52032<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Greater Sioux County Genealogical Society",
            "lat": "43.077125",
            "lon": "-96.175092",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-historymuseum-greatersiouxcountygenealogicalsociety.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Greater Sioux County Genealogical Society</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.077125,-96.175092\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">147.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Greater Sioux County Genealogical Society is a collection of people dedicated to preserving the history of the people of Sioux County. They have an extensive research library with a book reference section, surname files, microfilm storage cabinets, an archival storage room, archival books, church records, and misc. archives, computers, printer and digital microfilm retrieval system. The society operates out of the Sioux Center Public Library.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 S Main Ave.<br />Sioux Center Public Library<br />Sioux Center, IA 51250<br />Sioux County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.722.3170</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Old East Paint Creek Church and Cemetery",
            "lat": "43.264195",
            "lon": "-91.270516",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old East Paint Creek Church and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.264195,-91.270516\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">147.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Also known as Storla Cemetery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tElon Dr<br />Waterville, IA 52170<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Pine Mills Bridge",
            "lat": "41.467440",
            "lon": "-90.867481",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pine Mills Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.467440,-90.867481\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">148.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Pine Mill Bridge is located in Wildcat Den State Park. Built in 1878 near the Pine Creek Gristmill it is the only place in Iowa where a mill and bridge combination remains in place. The citizens of Montpelier Township petitioned the Muscatine County Board of Supervisors in 1877 for a bridge over Pine Creek at the site of the mill where they needed a crossing to transport their crops. For most of the year the creek was easily crossed, but after a heavy rainfall it turned into a raging stream. In September of 1878 a contract to manufacture and erect the truss bridge was issued to the Wrought Iron Bridge Company of Canton, Ohio. The bridge was completed by the end of the year. The Pine Mills Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWildcat Den Rd.<br />Wildcat Den State Park<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Melpine School",
            "lat": "41.467524",
            "lon": "-90.868707",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Melpine School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.467524,-90.868707\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">148.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Melpine School was built in 1877, and was preceded by a log structure that housed the school in the 1850s and a stone building from 1865-1877. In 1927, the school was remodeled to add 2 more rooms and a concrete basement. The Melpine School is now operated as a museum, located near the Pine Creek Grist Mill museum in Wildcat Den State Park. Visitors can see old school desks and textbooks, a victrola, period lunch buckets, pictures of rural Muscatine County students and teachers, and historic school records. The school is maintained and supported by a volunteer group called Friends of the Melpine School.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWildcat Den Rd.<br />Wildcat Den State Park<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.732.2771</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.pinecreekgristmill.com/melpine.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Pine Creek Grist Mill",
            "lat": "41.467616",
            "lon": "-90.867833",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pine Creek Grist Mill</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.467616,-90.867833\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">148.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in the Wildcat Den State Park, the Pine Creek Grist Mill has been restored for the benefit of the entire community. The mill still maintains a water wheel and several millstones for both Buckwheat Rye and Corn Wheat. Tours of the mill explore not only the history of processing these grains for the community, but also the greater history of the mill, including the effects of the Great Flood of 1883. Additionally, the mill hosts educational classes and programs for the community and visitors alike. These events include school group tours, Heritage Day celebrations, and holiday celebrations, such as the Ghosts of Pine Creek Halloween celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWildcat Den Rd.<br />Wildcat Den State Park<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.263.4337</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://pinecreekgristmill.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Theophile Bruguier Cabin",
            "lat": "42.497342",
            "lon": "-96.473630",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-theophilebrusuiercabin.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Theophile Bruguier Cabin</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.497342,-96.473630\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">148.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>On January 5, 1934, the front page of the Sioux City Tribune proclaimed &quot;First Home of White Man in Sioux City, Built 70 Years Ago, Being Razed&quot;. The article reported that Rev. John Hantla was razing a dwelling for materials to use for another project. When he began removing the siding of the house, it revealed logs from a cabin. Those logs were of the Theophile Bruguier Cabin, the last remaining landmark of Sioux City&#039;s first white settler, Theophile Bruguier. Hantla suspended demolition until they could find out the original owner and the next day, council members began working on a plan to preserve the cabin. In February of 1934, a crew dismantled the cabin log by log to move it to where it stands today. The Theophile Bruguier Cabin is associated with the earliest recorded successful preservation effort in Sioux City and is significant to the story of how the people of Sioux City worked to preserve an important part of the city&#039;s pioneering past. The cabin was originally constructed in 1860 and is the oldest surviving part of a complex of buildings associated with Theophile Bruguier. Bruguier was born in 1813 in Quebec, Canada and left for St. Louis to work in the fur trading business. He eventually started his own fur trading business in 1849 in what is now Sioux City. Bruguier once owned the land of Sioux City&#039;s original town site. He convinced James A. Jackson of Council Bluffs that the land had vast potential as a town site. Jackson, along with his father-in-law, John Cook and Iowa Senators George W. Jones and A.C. Dodge, surveyed and platted the land in 1854. Bruguier sold the land and by the spring of 1855, Sioux City consisted of two log cabins. The Theophile Bruguier Cabin was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1301 Riverside Blvd.<br />Riverside Park<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Milwaukee Railroad Shops and Historic District",
            "lat": "42.529478",
            "lon": "-96.475024",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-nhr-milwaukeerailroadshops.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Milwaukee Railroad Shops and Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.529478,-96.475024\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">148.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Milwaukee Railroad Shops and Historic District are a collection of railroad artifacts and other historical pieces about the history of the railroad in Sioux City. The complex includes buildings such as an engineers tool shed, coal tower, turntable, and a roundhouse where they stored the trains. There is also a train there that is on the National Register of Historic Places. The Great Northern Railway Steam Locomotive No. 1355 is nationally significant as a rare surviving example of the “Pacific-style” locomotive and as an example of engineering design of a type and method of construction important in railroad history. It is also significant under for its long association with rail travel, and for its association with the Great Northern Railway and development and promotion of Glacier National Park. The Great Northern Railway Steam Locomotive no. 1355 was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3400 Sioux River Rd.<br />Sioux City, IA 51109<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.233.6996</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://milwaukeerailroadshops.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Denmark Congregational Church",
            "lat": "40.742017",
            "lon": "-91.333408",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Denmark Congregational Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.742017,-91.333408\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">149mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Denmark Congregational Church, is significant in Iowa’s early religious history due to the fact that it was the first church of its denomination in the state. It was also the first recognized United Church of Christ building serving worshipers West of the Mississippi. Under the leadership of Rev. As a Turner, Jr., the church served as the denomination’s unofficial headquarters from 1835-1845. The brick church was burned in 1861 by Southern sympathizers during the Civil War. The church was rebuilt completed in 1864. The Denmark Congregational Church was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 Academy Ave.<br />Denmark, IA 52624<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.528.4465</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.denmarkucc.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Railroad Museum - Milwaukee Railroad Shops",
            "lat": "42.529047",
            "lon": "-96.476698",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-historymuseum-siouxlandhistoricalrailroadassociation.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Railroad Museum - Milwaukee Railroad Shops</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.529047,-96.476698\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">149mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Railroad Museum in Sioux City is operated by the Siouxland Historical Railroad Association. The museum is housed at the Chicago, Milwaukee, St. Paul and Pacific Railway Shops. This rail line, commonly known as The Milwaukee Road, operated in the Midwest and Northwest from 1847 through 1980. The shop at Sioux City was the second largest shop complex in the Milwaukee system, second only to their home shops at Milwaukee.  The Railroad Museum features rolling stock and railroad memorabilia. Also on site is the Great Northern Railway Steam Locomotive No. 1355, a rare “Pacific-style” locomotive. It operated on the Great Northern Railway and pulled many trains of tourists to Glacier National Park. The Great Northern Railway Steam Locomotive No. 1355 was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3400 Sioux River Rd.<br />Sioux City, IA 51109<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> (712) 233-6996</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.siouxlandrail.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Petersen Barn",
            "lat": "41.536198",
            "lon": "-90.824515",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Petersen Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.536198,-90.824515\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">149.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This century farm has been in the Petersen family since the 1850&#039;s, and for the last three generations has passed down from mother to daughter, which is unusual for an Iowa farm. This side of the family has its roots in the Schleswig-Holstein dairy area of Northern Germany. In 1915, a spark from a threshing machine started a fire which destroyed all of the buildings except the house, and destroyed the crops in the surrounding fields on both sides of the roads. The Petersen&#039;s rebuilt, but in 1943 another fire again destroyed all the buildings except the house. In 1945 they rebuilt again, but this time all the walls of the barn, corn crib, and two hog buildings were made from fireproof masonry. Only the roof rafters and doors were made of wood. As fate would have it, disaster struck once again when a tornado nearly twisted the upper part of the corn crib off. Luckily the crib was half full, which saved the building, but much of the top of the structure was shifted around 2 to 3 degrees. If the crib had been empty, it probably would have been completely blown away. The barn was featured on the Iowa Barn Foundation&#039;s 2007 Muscatine County Barn Tour and Picnic.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1410 Yancy Ave.<br />Blue Grass, IA 52726<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Bartelt Barn",
            "lat": "40.917577",
            "lon": "-91.169227",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bartelt Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.917577,-91.169227\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">149.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The owners saw this landmark barn falling into disrepair and subsequently bought and restored it. It is a peg and post basement barn with a limestone foundation.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t16296 US Hwy. 61<br />Mediapolis, IA 51637<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Evan Kraayenbrink Barn",
            "lat": "43.070362",
            "lon": "-96.207926",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-barn-evankraayenbrinkbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Evan Kraayenbrink Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.070362,-96.207926\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">149.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Evan Kraayenbrink Barn was built in the 1880s to shelter dairy calves.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2938 400th St.<br />Sioux Center, IA 51250<br />Sioux County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Upper Iowa River Bridge",
            "lat": "43.432677",
            "lon": "-91.411987",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Upper Iowa River Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.432677,-91.411987\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">149.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The first permanent bridge was built around 1870 by Allamakee County, but deteriorated to the point of replacement by the early 1910s. In 1913, the old bridge was removed and a new one was petitioned. The Upper Iowa River Bridge was completed in 1914, and has functioned in its place since without needing repair or replacement. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMays Prairie Rd.<br />Over Upper Iowa River<br />Dorchester, IA 52140<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "12-Sided Schroeder Barn",
            "lat": "43.479653",
            "lon": "-91.465501",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">12-Sided Schroeder Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.479653,-91.465501\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">149.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This unique barn, owned by Charles and Nancy Schroeder, has been in continuous use since it was constructed</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2856 Hwy. 76<br />Dorchester, IA 52140<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Milton Godard House",
            "lat": "42.039538",
            "lon": "-90.735059",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Milton Godard House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.039538,-90.735059\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">149.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Milton Godard house was built in 1860 and remodeled in 1866. It is an excellent example of limestone architecture from mid-19th century which exhibits a touch of “high style” design. The Milton Godard House was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t14177 7th St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Haberkorn House and Farmstead",
            "lat": "42.606921",
            "lon": "-90.822699",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-haberkornhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Haberkorn House and Farmstead</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.606921,-90.822699\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">149.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Haberkorn House is a well-preserved representation of a vernacular house type. Adam Haberkorn and his son built the house in 1870. Adam, a stone mason and brewer, worked in the area lead mines, but the family income was augmented by a small brewery and the sale of bread baked in the stone oven near the farmhouse. The front room became a local tavern and was also the polling place for area residents for many years. The Haberkorn House and Farmstead was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t17119 Haberkorn Rd.<br />Sherrill, IA 52073<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Riessen Barn",
            "lat": "41.569623",
            "lon": "-90.804558",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/muscatine-barn-riessenbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Riessen Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.569623,-90.804558\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">149.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Riessen Barn is 40&#039;x80&#039; and has space for 10 teams of horses on the east side of barn and 26 milk cows on the west side. The silo and silo shed were built in 1917, and the west addition was put on in 1961. The barn was featured on the Iowa Barn Foundation&#039;s 2007 Muscatine County Barn Tour and Picnic. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1190 York Ave.<br />Stockton, IA 52769<br />Muscatine County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Appleberry Orchard",
            "lat": "40.633906",
            "lon": "-91.436141",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Appleberry Orchard</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.633906,-91.436141\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">149.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>With the first apple tree at the Appleberry Orchard planted in 1852, today the orchard features twenty-two acres of apple orchards, berry fields, a petting farm, children&#039;s play area, and a farmer&#039;s market. The orchard produces fresh Blondee, Buckeye Gala, Empire, Zestar, and Honeycrisp apples and strawberries, raspberries, blackberries, and blueberries. The petting farm has a variety of animals, including miniature donkeys and ponies, peacocks, longhorn cattle, and rabbits. The farmer&#039;s market feature a variety of locally produced goods, including honey, jam, and salsa. In addition to all of this, the orchard also provides educational tours. The original Faeth Farmstead and Orchard on the property was a notable orchard operation by the successful Faeth pioneer family. A significant number of the historic buildings associated with the orchard operation survive with a high degree of historic integrity. The Faeth Farmstead and Orchard/Appleberry Orchard was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2469 IA Hwy. 2<br />Donnellson, IA 52625<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.372.1307</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://appleberryorchard.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Duncan/Duitsman Farm Historic District",
            "lat": "43.389525",
            "lon": "-95.932799",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lyon-nhr-duncanduitsmanfarmhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Duncan/Duitsman Farm Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.389525,-95.932799\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">149.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Duncan Farmstead within the Duncan/Duitsman Farm Historic District is an important surviving example of a 19th Century Iowa farmstead established by prairie farmers who arrived in Lyon County in the 1870s to settle the last frontier region of Iowa. The Duncan/Duitsman Farm Historic District was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4324 180th St.<br />Co. Rd. A22<br />George, IA 51237<br />Lyon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Hawkeye Creek Bridge",
            "lat": "41.042522",
            "lon": "-91.057507",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hawkeye Creek Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.042522,-91.057507\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">150mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hawkeye Creek Bridge is a riveted Pratt through truss bridge over Hawkeye Creek on Hawkeye Road near Mediapolis, Iowa. It was built in 1909 by the Clinton Bridge and Iron Works, and was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHawkeye Rd.<br />Mediapolis, IA 52646<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Iowa 80 Trucking Museum",
            "lat": "41.620464",
            "lon": "-90.781122",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-historymuseum-i80truckingmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa 80 Trucking Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.620464,-90.781122\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">150mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa 80 Trucking Museum is located adjacent to the World&#039;s Largest Truckstop in Walcott, Iowa. The museum is a celebration of trucking history; featuring over 60 antiques trucks, old gas pumps, vintage toy trucks and other trucking memorabilia. Visitors can view historic trucking films and footage in the REO Theatre. The museum was a dream of Iowa 80 Truckstop founder Bill Moon. He couldn&#039;t bear to see so many pieces of transportation history being crushed and discarded. He began collecting trucks in the 1960s. Many in the collection are rare specimens; some are the only examples known to still exist. Admission to the museum is free of charge.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t505 Sterling Dr.<br />I-80 - Exit 284<br />Walcott, IA 52773<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.468.5500</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowa80truckingmuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Dunleith and Dubuque Bridge",
            "lat": "42.489175",
            "lon": "-90.775892",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dunleith and Dubuque Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.489175,-90.775892\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">150.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This bridge is a remaining span of a seven-span approach bridge built in 1872 to serve a larger seven-span bride built in 1868 over the Mississippi River. The larger bridge was the first to span the Mississippi at Dubuque, and was one the earliest of all Mississippi River bridges. The superstructures of both the approach bridge and river bridge were fabricated and erected by the Keystone Bridge Company, one of the most important and long-lived bridge companies of the 19th century. The importance of the Dubuque and Dunleith Bridge to interstate commerce can hardly be overstated. As one of the first permanent bridges over the Mississippi River, it ensured Dubuque’s role as a regional trade nexus and, on a broader scope, helped facilitate the western movement after the Civil War. Industrialist Andrew Carnegie said the bridge ws the most important railroad bridge that had been built up to that time. This remaining span of the bridge was relocated to Bergfeld Recreation Area. The Dunleith and Dubuque Bridge was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t7600 Chavenelle Rd.<br />Bergfeld Recreation Area<br />Dubuque, IA 52032<br />Dubuque County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofdubuque.org/index.aspx?NID=1644\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "George Bicentennial Museum and Roll of Honor",
            "lat": "43.343880",
            "lon": "-96.000289",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Bicentennial Museum and Roll of Honor</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.343880,-96.000289\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">150.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The George Bicentennial Museum is a collection of local artifacts from the 19th and 20th century. The museum has an extensive collection of military medals and uniforms, antique clothing, wildlife and musical instruments. The Roll of Honor dedicated by the George Branch of the American Red Cross lists the names of all the locals who served in World War I and memorializes those who gave their last full measure of devotion.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t204 E Michigan Ave.<br />George, IA 51237<br />Lyon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "George Bicentennial Museum",
            "lat": "43.343796",
            "lon": "-96.000295",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lyon-historymuseum-georgebicentennialmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Bicentennial Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.343796,-96.000295\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">150.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The George Bicentennial Museum is a collection of George historical artifacts from the 19th and 20th century. The museum has an extensive collection of military medals and uniforms, antique men&#039;s and women&#039;s clothing, wildlife, and musical instruments of the time.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t204 E Michigan Ave.<br />George, IA 51237<br />Lyon County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.475.3612</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://george-iowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Lyon County",
            "lat": "43.345990",
            "lon": "-96.001725",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Lyon County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.345990,-96.001725\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">150.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lyon County Freedom Rock in George features a night-time scene from World War I, specifically a lone soldier waiting to board a train at the old George Depot. The soldier represents Jack Sauter, a soldier from George who was killed during the war. The smoke from the train&#039;s engine swirls with an image of Sauter in battle, a scene he may have imagined while waiting at the depot. Fireworks burst in the background, as they do every year in George on the Fourth of July. The other side of the rock portrays soldiers from all five military branches marching in an Independence Day parade. The Lyon County Freedom Rock was completed in 2013 by artist Ray &quot;Bubba&quot; Sorensen II of Greenfield.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 E Dakota Ave.<br />George, IA 51237<br />Lyon County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George Johnson House",
            "lat": "41.804983",
            "lon": "-90.723994",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Johnson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.804983,-90.723994\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">150.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Johnson house was the home of George Johnson, one of the three Johnson brothers who were the first Norwegian settlers in Olive Township. It was built in 1878 and was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2566 190th Ave.<br />Calamus, IA 52729<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-ballrooms.png",
            "title": "Walcott Coliseum",
            "lat": "41.584919",
            "lon": "-90.774208",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-historicballroom-walcottcoliseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-ballrooms.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Walcott Coliseum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.584919,-90.774208\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">150.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Eastern Iowa Polka Club sponsors monthly dances at the Walcott Coliseum. The reception hall can accommodate up to 700 guests.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t116 E Bryant St.<br />Walcott, IA 52773<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Kvindherred Lutheran Church, School and Cemetery",
            "lat": "41.801762",
            "lon": "-90.723005",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kvindherred Lutheran Church, School and Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.801762,-90.723005\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">151mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kvindherred Lutheran Church buildings and cemetery were built in the 1860s, when the congregation was established by Norwegian immigrants. This was the cultural center of the Norwegian settlement of Olive Township in Clinton County and was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2589 190th Ave.<br />Calamus, IA 52729<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Ireton Area Historical Museum",
            "lat": "42.974665",
            "lon": "-96.317441",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-historymuseum-iretonmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ireton Area Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.974665,-96.317441\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">151.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ireton Museum is located in the former City Hall which was deeded to the Ireton Area Historical Society in 1997. The Historical Society then created the &quot;City Museum&quot;. The museum features a wide variety of items pertaining to Ireton&#039;s past. The museum houses an extensive collection of military memorabilia including uniforms, helmets, mess kits, a frying pan used by a Civil War soldier (Alexander Morrison), a &quot;women in the military&quot; display, dog tags, safe conduct passes and much, much more. The centerpiece of our military items is a collection of &quot;service flags&quot;. A large community service flag from World War I is on the stage. They also have service flags for World War II from the Christian Reformed Church, First Reformed Church and Methodist Church. There are also examples of service flags that families placed in the windows of their homes.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t403 4th St.<br />Ireton, IA 51027<br />Sioux County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.278.2203</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Sherrill Mount House",
            "lat": "42.604115",
            "lon": "-90.785056",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-sherrillmounthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sherrill Mount House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.604115,-90.785056\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">151.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sherrill Mount House is significant as one of a very small number of pre-civil War era hotels surviving in the state of Iowa. It has served many families since being converted to apartments and serves today as key example of buildings which have played a key role in the history of their respective regions. The Sherrill Mount House was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5259 S Mound Rd.<br />Sherrill, IA 52073<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Lawrence Catholic Church and Cemetery District",
            "lat": "42.240745",
            "lon": "-90.695369",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Lawrence Catholic Church and Cemetery District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.240745,-90.695369\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">151.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Lawrence Church, built in 1883 is significant as a good example of the use of abundant local limestone for a variety of building types in Jackson County. The parish was founded in 1854. The church building was designed by Fridoline Heer in the Gothic Revival style. The St. Lawrence Church was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t18226 Bellevue-Cascade Rd.<br />Otter Creek, IA 52079<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Scholtes Barn",
            "lat": "43.388638",
            "lon": "-91.296070",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Scholtes Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.388638,-91.296070\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">151.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Scholtes Barn is a 1920s era barn. It was used for a sheep farming operation. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2207 Gruber Ridge Rd.<br />Lansing, IA 52151<br />Allamakee County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Hurstville Interpretive Center",
            "lat": "42.088134",
            "lon": "-90.681759",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-botany-hurstvilleinterpretivecenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hurstville Interpretive Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.088134,-90.681759\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hurstville Interpretive Center allows you to explore the links between Iowa&#039;s prairies, wetlands, the rocks beneath your feet, and agriculture. A butterfly garden and a working beehive allow visitors to see pollinators at work. Exhibits help visitors understand how Iowa&#039;s early communities, like Hurstville, developed around the natural resources that were available.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t18670 63rd St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.652.3783</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://jacksonccb.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Hurstville Lime Kilns",
            "lat": "42.097019",
            "lon": "-90.682491",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-hurstvillelimekilns.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hurstville Lime Kilns</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.097019,-90.682491\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in the 1870s, the Hurstville Lime Kilns heated limestone rock mined from nearby quarries. The factory complex was developed by Alfred Hurst. At one time, his Hurstville Complex encompassed four kilns, 820 acres of farming and timber lands and 50 employees. Native limestone was heated in the kilns to form lime mortar used in the construction of homes, farm buildings, and public buildings throughout the Midwest. The kilns are built against the face of a bluff and stand 80-100 feet from each other. By the 1920s, the construction industry had adopted Portland cement instead of lime, because it possessed greater strength and lower absorbency. Many of the buildings at the Hurstville complex have been lost, but four of the kilns remain. The Hurstville Limestone Kilns were added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHwy. 61 and Hurstville Rd.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.652.3789</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.jacksonccb.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Helvig-Olson Farm Historic District",
            "lat": "41.804142",
            "lon": "-90.702183",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Helvig-Olson Farm Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.804142,-90.702183\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152mi.</span></div>\n\t\t</div>\n\n\t\t<p>This farm is a well-maintained example of a progressive farmstead, dating back to the Norwegian settlement in Olive Township in the 1860s. It was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2008 260th St.<br />Grand Mound, IA 52751<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Oostra Corn Crib Granary",
            "lat": "43.198590",
            "lon": "-96.175985",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-barn-oostracorncribgranary.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oostra Corn Crib Granary</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.198590,-96.175985\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This corncrib has grain bins over the alley and an inside elevator. It was built in 1956 and has storage for 4000 bushels of ear corn and 3000 bushels of grain.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3101 310th St.<br />Hull, IA 51239<br />Sioux County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Anson Wilson House",
            "lat": "42.048035",
            "lon": "-90.678101",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Anson Wilson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.048035,-90.678101\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wilson house exhibits a craftsman-like use of local materials in the construction of a typical Midwestern “farmhouse” style dwelling. It was built by Anson Wilson with assistance from stonecutter F. Zimmerman in 1860. The Anson Wilson House was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1109 S Farmland Dr.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bassnett-Nickerson House",
            "lat": "42.067683",
            "lon": "-90.673505",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bassnett-Nickerson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.067683,-90.673505\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bassnett/Nickerson house, built in 1875, is a good example of an uncommon residential design executed in limestone. The Bassnett-Nickerson House was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t116 S Vermont St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "A. A. Hurst House",
            "lat": "42.068882",
            "lon": "-90.671358",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">A. A. Hurst House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.068882,-90.671358\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1912, this residence is a good example of Prairie School design from the 1910s, and illustrates the use of stucco, which was a popular building material. It is representative of large houses constructed in Maquoketa during the “Comfortable Years” from 1900-1922. The A.A. Hurst House was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t513 W Platt St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Alexander Organ House",
            "lat": "42.061622",
            "lon": "-90.671732",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alexander Organ House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.061622,-90.671732\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This residence is one of the “quoined corner” group of houses that used cream colored brick rather than limestone for the quoining. It is representative of the houses constructed in Maquoketa to meet the need of a growing population during the “Boom years,” the period of growth brought about by the arrival of the railroads in 1870 and the town&#039;s designation as the county seat in 1873. It is one of four houses in Maquoketa that has cream colored brick laid in a quoin-like pattern on the corners and above the segmental arched openings. The Alexander Organ House was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t607 W Summit St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "J. E. Squiers House and Garage",
            "lat": "42.068063",
            "lon": "-90.671165",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J. E. Squiers House and Garage</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.068063,-90.671165\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The J.E. Squiers House is a well-preserved example of late nineteenth-century domestic architecture in Maquoketa’s most prominent residential neighborhood and was the home of James Emery Squiers, a prominent local businessman. Built in 1882 at the peak of Squiers’ tenure as a dry goods merchant and a few years before he became president of the First National Bank of Maquoketa, this substantial and well-executed brick home is a symbol of his entrepreneurial success. The J.E. Squiers House and Garage was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t418 W Pleasant St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John Lake House",
            "lat": "42.068911",
            "lon": "-90.671889",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Lake House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.068911,-90.671889\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This residence was built in 1890 and is an example of the “quoined corner” group of houses built in Maquoketa between 1877 and 1896. It also illustrates the residential development that took place during the “Boom Years” precipitated by the arrival of the railroads in 1870 and the town&#039;s designation as the county seat in 1873. The John Lake House was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 W Platt St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George Cooper House",
            "lat": "42.068885",
            "lon": "-90.670173",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Cooper House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.068885,-90.670173\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1884, this house is an example of the “quoined corner” group of houses built in Maquoketa between 1877 and 1896. It is also representative of the large houses built in Maquoketa during the “Boom Years’ due to the rapid growth and economic development taking place following the arrival of the railroads in 1870 and the town&#039;s designation as the county seat in 1873. The George Cooper House was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t413 W Platt St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "West Pleasant Street Historic District",
            "lat": "42.067727",
            "lon": "-90.669466",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-westpleasanthistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Pleasant Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.067727,-90.669466\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The West Pleasant Street Historic district contains a collection of residences that are representative of the popular house types built in Maquoketa during the period covered by the “Boom Years” and the “Comfortable Years” from the late 19th to early 20th centuries. These were the homes of prominent business and professional leaders of the time and were carefully crafted by local builders. The West Pleasant Street historic District was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t398 W Pleasant St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Maquoketa Free Public Library",
            "lat": "42.067962",
            "lon": "-90.667043",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-maquoketafreepubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Maquoketa Free Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.067962,-90.667043\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1903, the Maquoketa Public Library is an example of the public buildings which were constructed during the “Comfortable Years” of the early 19th century. It was constructed as part of the public library movement, funded with a grant from the Carnegie corporation. Architecturally, it illustrates the impact of aesthetics on building design, and it represents a popular style for libraries of the period. The Maquoketa Free Public Library was added to the National Register of Historic Places in 1989.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t126 S 2nd St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "C. M. Sanborn Building",
            "lat": "42.067551",
            "lon": "-90.665209",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-cmsanbornbuilding.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">C. M. Sanborn Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.067551,-90.665209\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The C.M. Sanborn Building from 1896 is a fine example of High Victorian Italianate commercial design. The Sanborn Building is the most elaborate, and most elegant of the extant 19th century buildings in downtown Maquoketa. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t203 S Main St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dr. G.S. Martin House",
            "lat": "42.065300",
            "lon": "-90.666407",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. G.S. Martin House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.065300,-90.666407\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built in 1882 for Dr. G.S. Martin, an early physician and druggist in Maquoketa, who arrived in 1857. The two-story brick residence is a simple example of Italiante architectural design and representative of the housing created for business and professional leaders during the period of growth brought about by the arrival of the railroads in 1870 and the designation of Maquoketa as the county seat in 1873. The house was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t311 S 2nd St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First National Bank",
            "lat": "42.068740",
            "lon": "-90.665706",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-firstnationalbank.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First National Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.068740,-90.665706\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First National Bank building is an example of Neo-classical bank design. It was built in 1920 and designed by The Lytle Co. of Sioux City. It is one of the many banks during the 1910s and ‘20s that adopted the Neo-classical façade, to create an image of strength. The First National Bank was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t120 S Main St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "I.O.O.F. Building",
            "lat": "42.069426",
            "lon": "-90.665319",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">I.O.O.F. Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.069426,-90.665319\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1886, the Independent Order of Odd Fellows (I.O.O.F.) building is an example of the vernacular brick commercial buildings constructed in Maquoketa during the 1880s and ‘90s. It was built by Smith Warren and John Lake. The I.O.O.F. Building was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t103 N Main St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Merrero Building",
            "lat": "42.068797",
            "lon": "-90.665262",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-merrorobuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Merrero Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.068797,-90.665262\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Merrero Building was built in 1918 and is an example of early 20th-century commercial design and material. It replaced an earlier three-story building on the site which burned down in December 1917. The new building was called “one of the handsomest store buildings in eastern Iowa” at the time it was completed. The Merrero Building was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t111 S Main St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "W. B. Swigert House",
            "lat": "42.071672",
            "lon": "-90.665510",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">W. B. Swigert House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.071672,-90.665510\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1885, this residence illustrates an unusual architectural design and uses cream colored decorative brick as part of the “quoined corner” group of houses. It is representative of the houses built for local businessmen during the “Boom Years,” the period in Maquoketa’s history when the community grew rapidly due to the arrival of the railroads in 1870 and the designation as the county seat in 1873. The W.B. Swigert House was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t309 N Main St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Decker House Hotel",
            "lat": "42.070182",
            "lon": "-90.665738",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-deckerhousehotel.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Decker House Hotel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.070182,-90.665738\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Decker House, a Main Street hotel, was completed in 1878. Maquoketa had become the Jackson County seat only a few years before the hotel’s construction. This led to a rapid rise in population and prosperity in Maquoketa. James Decker was an entrepreneur from New York state who had a variety of real estate holdings in Iowa. Decker had the big brick hotel designed by W. W. Tucker, a friend from Watertown, New York. He wanted to capitalize on the increase of travelers bound to come to Maquoketa on county or commercial business. When the Decker House opened in 1878, it was the most elegant and substantial hotel in the community. Its competitors were the Kimball House, which was “neat and clean” and the Midland House, with “about 15 sleeping rooms.” James Decker was remembered as an “aristocratic easterner who wore a top hat, carried a gold-headed cane and had an impressive diamond tie pin,” according to The Jackson Sentinel Centennial Edition published in 1938. After James died, his son Leonard took over his real estate holdings in New York and Iowa. Several of James Decker’s descendants managed the Decker House, through the generations to his great-great-grandson. The Decker House was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t128 N Main St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cundill Block",
            "lat": "42.067623",
            "lon": "-90.665663",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-cundillblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cundill Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.067623,-90.665663\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cundill Block is representative of the vernacular brick commercial buildings constructed in Maquoketa during the 1880s and ‘90s. This block was originally built in 1882. The Cundill Block was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t202 S Main St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lyon Block",
            "lat": "42.069658",
            "lon": "-90.665673",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-lyonblock.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lyon Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.069658,-90.665673\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lyon Block, built in 1900, is the first example of twentieth-century design and color in the Maquoketa business district. The Lyon Block was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t112 N Main St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-hotels.png",
            "title": "Hotel Hurst",
            "lat": "42.066938",
            "lon": "-90.665138",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-hotelhurst.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-hotels.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Hurst</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.066938,-90.665138\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Before an economic boom rumbled into Jackson County on the new railroads in the 1860s, the site of the county seat was up for grabs. It was an unsettled contest between Bellevue (on the river), Maquoketa (on the county’s southern edge) and tiny Andrew (smack-dab in the middle). The debate wasn’t settled until 1873, when voters finally chose Maquoketa, which was growing rapidly with the railroad. After the vote, its city hall was leased to Jackson County to serve as the county courthouse.\r\n\r\nSoon enough, Maquoketa’s locals saw a need for a first-class hotel to serve business travelers. A group of community leaders founded the Delmonico Hotel Company and hired a crew to build the hotel at the south end of Main Street. The new hotel and the existing 1867 Hotel Decker, on the north end of Main Street, would serve as bookends for the downtown business district. Newspapers chronicled the growing anticipation for the new hotel and many aspects of the elegant Second Empire architecture that would house a “commodious and magnificent hostelry.”\r\n\r\nUnfortunately, the hotel’s structural foundation was more solid than its financial one. In 1907 the building was purchased by Alfred Hurst, an English native, Civil War veteran, county supervisor, state senator and proprietor of the Hurst quarries and lime kilns at Hurstville, just a few miles north of town. The year after Hurst bought the hotel, a Mrs. J.A. Wherry, who ran the Hotel Decker, added a garage to it for the sale of Cadillacs. And the rivalry ramped up from there: Hurst had an automobile garage erected in 1910 immediately north of the Hotel Hurst for the sale of Buicks and to provide rental services for the hotel guests. Both garages have been demolished.\r\n\r\nHurst owned the Hotel Hurst for eight years. Over the years and through multiple proprietors, it gradually lost some of its original splendor, but newspapers consistently noted the lavish lounge and dining area that served as a hub for Maquoketa society. The Hotel Hurst was eventually turned into apartments and is now one of many historic landmarks around town on the National Register of Historic Places.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t227 S Main St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Voy Theater",
            "lat": "42.067448",
            "lon": "-90.665243",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-theater-voy.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Voy Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.067448,-90.665243\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Voy Theater building was originally constructed in 1890. The building held a number of businesses until it was converted into the Voy Theater in 1973, after the long-running Pastime Theatre was demolished earlier that year. The theater is still operating as the premier movie theater in Maquoketa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t207 S Main St.<br />Maquoketa, IA 50260<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "Old City Hall Art Gallery",
            "lat": "42.067948",
            "lon": "-90.664077",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-artmuseum-oldcityhallartmuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old City Hall Art Gallery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.067948,-90.664077\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old City Hall Gallery in Maquoketa, Iowa, features the works of Rose Frantzen and her husband, Charles Morris. Frantzen and her parents, Wayne and Ellen Frantzen, purchased Maquoketa&#039;s former city hall in 1991, converting the three-story building into a gallery and studio space.\r\n\r\nThe Old City Hall was built in 1901 and housed city offices, fire and police stations, city council chamber, and community and meeting rooms. It featured a turret corner, with curved glass windows above the main entrance that was later squared off in the early 1950s. With the local firemen in charge of ceremonies, the city hall was dedicated in January 1902, with a big banquet and 312 people in attendance.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t121 S Olive St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563-321-1074</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.oldcityhallgallery.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lydia Johnson House",
            "lat": "42.064298",
            "lon": "-90.663240",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-lydiajohnsonhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lydia Johnson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.064298,-90.663240\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1895, this home is a fine example of Queen Anne design from the 1890s. The Lydia Johnson house represents the “Boom Years” in the truest sense with an elegant “high style” house on a hill overlooking the business district. The Mrs. Lydia Johnson House was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t209 E Locust St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mitchell-Maskrey Mill",
            "lat": "42.067896",
            "lon": "-90.664504",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-mitchellmaskreymill.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mitchell-Maskrey Mill</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.067896,-90.664504\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mitchell-Maskrey Mill is a good example of the vernacular brick buildings constructed in Maquoketa during the 1880s. This building was built in 1886 and differs from the others of this period and type in that it is a free standing structure. The Mitchell-Maskrey Mill was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t120 E Pleasant St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "New Era Building",
            "lat": "42.069118",
            "lon": "-90.664798",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-newerabuilding.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">New Era Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.069118,-90.664798\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built by John Jake in 1882, the New Era Building is a good example of the vernacular brick commercial buildings constructed in Maquoketa during the 1880s. The building is now known locally as the Dobson Building. The New Era Building was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 E Platt St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "D. H. Anderson House",
            "lat": "42.064294",
            "lon": "-90.661443",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-dhandersonhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">D. H. Anderson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.064294,-90.661443\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">153mi.</span></div>\n\t\t</div>\n\n\t\t<p>This residence is a fine example of the “quoined corner” group of houses built in Maquoketa between 1877 and 1896. This particular house was built in 1888. It is representative of the type of large residence being constructed during the “Boom Years” in Maquoketa, the period between the arrival of the railroads in 1870 and the construction of the Delmonico (Hurst) Hotel in 1897 that signaled the completion of the 19th century business development along Main Street. The D. H. Anderson House was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t315 E Locust St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry Taubman Residence",
            "lat": "42.067593",
            "lon": "-90.662387",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-henrytaubmanhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry Taubman Residence</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.067593,-90.662387\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">153mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1854, this residence is a good vernacular example of Greek Revival design from the 1850s. It is one of the earliest extant houses built in Maquoketa during its early period of growth, between settlement in 1838 and the arrival of the railroads in 1870. The Henry Taubman Residence was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t303 E Pleasant St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Clinton Engines Museum",
            "lat": "42.065828",
            "lon": "-90.658582",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-historymuseum-clintonenginesmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clinton Engines Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.065828,-90.658582\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">153.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clinton Engines Museum is housed in the former Clinton Engines administrative building. The museum tells the history of the company from its humble beginnings to becoming the number one producer of small gasoline engines. It features exhibits and activities ranging from an interactive go-kart race to building your own model engine.\r\n\r\nThe Clinton Engines Museum is also home to the Chicago, Milwaukee, and St. Paul Depot that was built at LaMotte in 1911. The depot was a station on the narrow guage line that ran 30 miles from Bellevue to Cascade. It also exemplifies the corporate style and standardization practices of the Milwaukee railroad. The Chicago, Milwaukee and St. Paul Narrow Gauge Depot - LaMotte was added to the National Register of Historic Places in 1995 and removed from the National Register when it was moved to the museum in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t605 E Maple St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.652.1803</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://clintonengines.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "61 Drive-In",
            "lat": "41.999534",
            "lon": "-90.658388",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">61 Drive-In</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.999534,-90.658388\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">153.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The 61 Drive-In opened on August 11, 1950 and has been in operation since. The drive-in is one of the last remaining drive-in theaters in the state. The theater has one large screen and can hold more than 200 cars. The screen, concessions, and ticket booth were replaced after a tornado struck the theater in 1995.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1228 61 Hwy.<br />Delmar, IA 52037<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Round Barn, Dubuque Township",
            "lat": "42.472681",
            "lon": "-90.707967",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Round Barn, Dubuque Township</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.472681,-90.707967\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">153.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn is one of eighteen round barns known to have been built in Iowa with vitrified hollow clay tiles supplied by the Johnston Brother’s Clay Works of Webster County. The Dubuque Township Round Barn was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3080 N Cascade Rd.<br />Bluffs Nursery<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Jackson County Historical Society Museum",
            "lat": "42.069648",
            "lon": "-90.650555",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jackson County Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.069648,-90.650555\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">153.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jackson County Historical Society Museum was built in the recently updated Clinton Engines Factory. The county museum includes 22,000 sq. ft. of local exhibits including period rooms, a country school, a boot maker shop, general store, an authentic replica of a McCormick Reaper, and a wildlife display. Visitors can also see a large machine shed with a fine collection of vintage agricultural equipment and an 1850s log cabin.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1212 E Quarry St.<br />Jackson County Fairgrounds<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.652.5020</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://jciahs.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Mount Saint Bernard College and Seminary (Johnson House and Barn)",
            "lat": "42.443349",
            "lon": "-90.694262",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mount Saint Bernard College and Seminary (Johnson House and Barn)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.443349,-90.694262\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">153.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mount Saint Bernard College and Seminary was started in 1839 by Mathias Loras, the first bishop of Dubuque. After nearly a decade of seminary work in Alabama and Florida, the French born missionary arrived in Iowa in 1837. He gathered students together in his rectory to prepare them for the priesthood under the name of Saint Raphael&#039;s Seminary. The seminary was expanded in 1850 when Loras erected three new buildings in Table Mound township, south of Dubuque, that he named Mount St. Bernard College and Seminary. The limestone Greek Revival structure is the only remaining architectural element of the three-part seminary complex built in 1850-1851. The seminary operated off and on due to financial troubles, until it was transferred to Loras College in 1939. The Mount Saint Bernard College and Seminary (also known as the Johnson House and Barn) was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10336 Mount St. Bernard Dr.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Murphy Barn",
            "lat": "40.908386",
            "lon": "-91.076304",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-barn-murphybarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Murphy Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.908386,-91.076304\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">153.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This primitive historic barn has horse stalls, a milking area, a hog house, a corn crib, a cattle feeding area and a hay loft. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t7606 Stony Hollow Rd.<br />Co. Rd. H50<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Lansing Stone School",
            "lat": "43.360639",
            "lon": "-91.220901",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/allamakee-nhr-lansingstoneschool.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lansing Stone School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.360639,-91.220901\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">153.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old Stone School was built in 1863 by Thomas Gotlieb Engelhorn and cost $5,000. It is one of the oldest schoolhouses in continuous use in Iowa. It was built from locally quarried limestone in 1864 and used until 1973. It was added to the National Register of Historic Places in 1973.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t509 Center St.<br />Lansing, IA 52151<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "G. Kerndt and Brothers Office Block",
            "lat": "43.361671",
            "lon": "-91.218573",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/allamakee-nhr-gkerndtandbrothersofficeblock.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">G. Kerndt and Brothers Office Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.361671,-91.218573\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">153.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kerndt Brothers came to Lansing from Germany, via New York City and Dubuque.  All five Kerndt Brothers settled in the Lansing area. Hermann took up farming, Julius died shortly after arriving in Iowa and brothers Gustav, Moritz and William started a broom factory and cigar selling business, named G. Kerndt and Brothers.  In 1858, the brothers opened a small dry goods store and in 1861 they constructed half of this building for the store. Five years later, they constructed the second half of the building as a mirror image of the first. The late 1800s were the days of private banks - farmers would borrow money at the Kerndt store to finance their farm operations. Soon, the Kerndts had a 12 foot space railed off in the rear of their building, dedicating to banking. The family incorporated Kerndt Brothers Savings Bank in 1908. The G. Kerndt and Brothers Office Block, added to the National Register of Historic Places in 1982, is the oldest structure in downtown Lansing.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t391 Main St.<br />Lansing, IA 52151<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Old Allamakee County Courthouse",
            "lat": "43.355524",
            "lon": "-91.212334",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/allamakee-nhr-oldallamakeecocourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Allamakee County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.355524,-91.212334\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">153.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This courthouse is significant as one of the few remaining Greek revival style courthouses. Although it only served as a courthouse from 1861-1867, it is still locally significant as the former seat of county government and the prestige a community derived from being the county seat. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t650 S 2nd St.<br />Lansing, IA 52151<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lansing Fisheries Building",
            "lat": "43.360475",
            "lon": "-91.213504",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lansing Fisheries Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.360475,-91.213504\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1931 and 1935, the Iowa Fish and Game Commission and the State Conservation Commission were established, and the Lansing Fisheries Building was an important location for conservation work to take place. From the turn of the century, until about 1940, the fish conservation program in Iowa consisted of restrictive laws coupled with fish rescue, captive breeding, and restocking. All three of the latter operations were carried out at Lansing. In this regard, the structure reflects an earlier philosophy of wildlife conservation, which placed greater emphasis on species propagation and relatively less emphasis on habitat protection and wildlife ecology. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Front St.<br />Lansing, IA 52151<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "G. Kerndt and Brothers Elevator and Warehouses and Museum of River History",
            "lat": "43.361984",
            "lon": "-91.214427",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/allamakee-nhr-gkerndtandbrotherselevatorandwarehouses.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">G. Kerndt and Brothers Elevator and Warehouses and Museum of River History</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.361984,-91.214427\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kerndt Brothers came to Lansing from Germany, via New York City and Dubuque.  All five Kerndt Brothers settled in the Lansing area. Hermann took up farming, Julius died shortly after arriving in Iowa and brothers Gustav, Moritz and William started a broom factory, named G. Kerndt and Brothers.  Soon they expanded their operation and build their first warehouse in the late 1850s. Eventually, they operated 14 warehouses along the levee at Lansing and accounted for a high proportion of the community’s river commerce. Three warehouses remain and make up this complex. The warehouses are all one story high at street level and nearly three stories high at the water’s edge.  Two of the buildings in this complex, Warehouses #12 and #13 (the south and center buildings) functioned as warehouses.  Warehouse #11, which contained the grain elevator, is the north building. Although no longer used for their original purpose, the G. Kerndt and Brothers Elevator and Warehouses, added to the National Register of Historic Places in 1979, offer a vivid look at obsolete methods of storing and preparing grain for shipment. Warehouse #12 houses the Museum of River History, a collection of antique commercial fishing gear, boat motors, historical photographs, trophy fish and other memorabilia that reflects the Lansing’s history as a thriving commercial fishing and clamming center.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t60 S Front St.<br />Lansing, IA 52151<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Seneca Williams Mill",
            "lat": "42.065395",
            "lon": "-90.640424",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Seneca Williams Mill</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.065395,-90.640424\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Seneca Williams Mill is one of the few surviving reminders of an important and once widespread commercial business. It was built in 1867, by Joseph Willey, and sold to Seneca Williams, who ran the mill until 1904. From 1920 on, it was used as a barn. The Seneca Williams Mill was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3700 223rd Ave.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Moyce-Steffen House",
            "lat": "40.630291",
            "lon": "-91.327322",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Moyce-Steffen House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.630291,-91.327322\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Originally built in the 1840s, this house saw continued construction and additions into the 1890s. Builders and designers overcame construction problems due to the climate and lack of appropriate building materials to construct this unique home filled with French, German and Eastern designs. The John Moyce House was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1615 Ave. H<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Old Chapel Hall",
            "lat": "42.498218",
            "lon": "-90.693074",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-oldchapelhall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Chapel Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.498218,-90.693074\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old Chapel Hall is the oldest surviving structure which represents the significant period of growth of the University of Dubuque during the years 1904-1922. Old Chapel Hall was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2050 University Ave.<br />Loras College<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Saint Mary of the Assumption Church",
            "lat": "40.633320",
            "lon": "-91.316941",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Saint Mary of the Assumption Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.633320,-91.316941\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Long associated with German immigrant communities in Iowa, the historic Church of Saint Mary of the Assumption is a large Gothic Revival building still serving an active parish in Lee County. The cornerstone was laid in 1865, and was dedicated in January 1871. The church&#039;s impressive front spire still stands over 200-feet-tall even after being damaged and rebuilt at a lower height following severe storms in 1876 which also destroyed the original church organ. The Saint Mary of the Assumption Church was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1031 E Ave<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Severance Hall",
            "lat": "42.497220",
            "lon": "-90.692630",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a89bda107033230e7.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Severance Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.497220,-90.692630\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Severance Hall was built in 1912 as a men&#039;s dormitory for the University of Dubuque and is important to Iowa’s civil rights story because of its association with college athlete Solomon Butler.\r\n\r\nSolomon (Sol) Butler (1895-1954) was the first African American to attend the university, and the first to live on campus, residing in Severance Hall from 1915 to 1919. \r\n\r\nAt the time, other universities and colleges in Iowa admitted African American students, but did not allow these students to live on campus. Butler, and his brother, Benjamin, were among the first African American college students in Iowa to live in an integrated dormitory.\r\n\r\nButler, a native of Hutchison, Kansas, was recruited to the University of Dubuque for his athletic abilities. He became a quarterback on the football team, a guard on the basketball team and leader of the bass section in glee club. He was also an elected officer in Philophronia Society (a literary club). \r\n\r\nHowever, it was Butler&#039;s skills in track and field that truly set him apart. He twice received the All-American honor as the nation&#039;s best broad jumper. \r\n\r\nAfter graduating with a degree in history, Butler continued his athletic career, playing semi-pro and professional basketball and football. Butler also worked with youth within the communities where he lived to help improve their lives. While living in Chicago in 1954, Butler also worked at a nightclub where one evening, Butler removed a patron for inappropriate behavior. Later that night the person returned to the nightclub and shot Butler. Sol Butler died of his wounds and was buried in Wichita near his remaining family.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tGrace St. &amp; N Algona St.<br />University of Dubuque Campus<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "David and Charlotte Neises Barn",
            "lat": "42.601534",
            "lon": "-90.721696",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-barn-davidandcharlotteneisesbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">David and Charlotte Neises Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.601534,-90.721696\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Mathias Neises emigrated from Germany and homesteaded on this farm in the 1860s, building a log cabin (around which the current farmhouse on the site was built) and barn for his growing family. The stone for the foundation was quarried on the farm.\r\n\r\nThe barn is built into the side of a hill, allowing hay to be loaded directly into the upper level while creating space below for dairy cows and horses. In the 1890s an addition to the entire barn was built onto the east end. A silo was added in the 1920s and a cinder block milkhouse was built in the 1940s. David added a modern milking parlor onto the barn in the 1980s.\r\n\r\nThe barn is unrestored and features its original unpainted cedar siding, stone foundation, barn doors, and handhewn beams held together with wooden pins. The farm has been in the Neises family for seven generations and was designated a Heritage Farm in 2014 (150 years in the same family). (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t20987 Mud Lake Rd.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Rock Spring Cemetery",
            "lat": "40.751854",
            "lon": "-91.193106",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rock Spring Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.751854,-91.193106\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Rock Spring Cemetery is a small, rural cemetery in Des Moines County. It is the burial location of Dr. Edwin James (Aug. 27, 1897 - Oct. 28, 1861) who was an avowed abolitionist and &quot;station master&quot; involved in the Underground Railroad near Burlington, Iowa for more than two decades. A native of Vermont, he studied at Middlebury College and became a botanist and geologist, removing to Iowa later in life. The James residence was located in the vicinity of the Rock Spring Cemetery, about four miles west of Burlington. Dr. James was known for his involvement in the &quot;Iowa Fugitive Slave Case&quot; brought about on June 23, 1855 in Burlington. Early in the day Dr. James had driven into the city bringing a African-American man with him with the intent of sending him along to the next station on the Underground Railroad or to by Chicago by railroad. Upon reaching the east bank of the river and awaiting the train, they were pounced upon by two armed Missouri man-hunters who claimed the African-American man was a slave of one Rutherford, of Clark County, Missouri. After some argument the parties went to the office of George Frazee, Commissioner of the United States Court at Burlington, Iowa, located in a frame building known as The National Hotel on Jefferson Street. The fugitive was arrested and tried before the court, however, Rutherford could not provide any information about the fugitive or any documentation and case was discharged sending up joyous cheers from spectators. The gravesite of Dr. Edwin James was listed on the National Network to Freedom by the National Park Service in 2015.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBrush College Rd.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dugan&#039;s Saloon",
            "lat": "41.823959",
            "lon": "-90.647937",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dugan&#039;s Saloon</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.823959,-90.647937\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dugan&#039;s Saloon was built in 1905 and is a relatively rare survivor from a time when state prohibition created uncertainty for businesses like this one. It was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t516 Smith St.<br />Grand Mound, IA 52751<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Farmers and Merchants Savings Bank",
            "lat": "41.824225",
            "lon": "-90.647505",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Farmers and Merchants Savings Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.824225,-90.647505\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Farmers and Merchants Savings Bank was built in 1923 and is an example of the bank architecture by Lytle Company of Sioux City. It reflects the mixture of architectural styles and influences common in the early 20th century. The building was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 Smith St.<br />Grand Mound, IA 52751<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George Shlapp House",
            "lat": "40.635608",
            "lon": "-91.308882",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Shlapp House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.635608,-91.308882\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Italianate house was built by George Schlapp, a German immigrant who established a profitable local brewery in 1864. By the late 1870s, Schlapp had become a wealthy man by Fort Madison standards, and in 1877 he purchased a two-acre plot of land on a hill overlooking the city. On this property he built a large, ten-room; two and one-half story Italianate villa. The George Schlapp House was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t639 C Ave.<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Grand Mound Town Hall and Waterworks Historic District",
            "lat": "41.823949",
            "lon": "-90.648676",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand Mound Town Hall and Waterworks Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.823949,-90.648676\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This historic district is made up of the Grand Mound town hall, fire station, and water tower, all built during the 1890s. These structures helped establish a center for local government and politics in Grand Mound. The district was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t614 Clinton St.<br />Grand Mound, IA 52751<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fort Madison Downtown Commercial Historic District",
            "lat": "40.630925",
            "lon": "-91.311438",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-fortmadisondowntowncommericaldistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fort Madison Downtown Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.630925,-91.311438\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fort Madison Downtown Commercial Historic District is significant for its key role in the commercial history and development of Fort Madison and is locally significant for its excellent collection of local commercial architecture. The Downtown Commercial District encompasses the historic commercial core of the community that began to develop in the 1830s, with the earliest extant buildings dating to the 1850s. The Fort Madison Downtown Commercial Historic District was added to the National Register of Historic Places in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t600 Ave. G<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Chief Justice Joseph M. Beck House",
            "lat": "40.632742",
            "lon": "-91.309453",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chief Justice Joseph M. Beck House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.632742,-91.309453\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Joseph H. Beck had this Italianate-brick house constructed for himself and his family and lived there from 1869 until his death in 1893. Joseph H. Beck was a prominent citizen who was elected both mayor and prosecuting attorney in 1852. He helped organize the Republican party and helped form study groups for prisoners at the State prison in Fort Madison. Beck was also elected to the Iowa Supreme Court in 1869, serving 24 years, which five of those he was Chief Justice. The Chief Justice Joseph M. Beck House was added to the National Register of Historic Places in 1988.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t630 Ave. E<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 217.430.2890</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. John Gear Gravesite",
            "lat": "40.827586",
            "lon": "-91.120240",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. John Gear Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.827586,-91.120240\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>John Henry Gear (April 7, 1825 – July 14, 1900) served as the 11th Governor of Iowa from 1878-1881. He also served as in the United States House of Representatives and Senate. His gravesite is located at Aspen Grove Cemetery in Burlington.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2043 Sunnyside Ave.<br />Aspen Grove Cemetery<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Cato Mead Memorial",
            "lat": "40.534267",
            "lon": "-91.420392",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cato Mead Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.534267,-91.420392\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Cato Mead (1761-1846) served in the 4th Connecticut Regiment of the Continental Army during the Revolutionary War. He served at Valley Forge, Pennsylvania, for six months in 1777 and 1778, and survived a two-month bout with smallpox. After the war, Mead moved to Iowa, where he lived and farmed near Montrose. His exact burial site is unknown, but the Jean Espy Chapter of the Daughters of the American Revolution donated a memorial stone at the Montrose Cemetery in his honor. Mead is the only known African-American who served in the Revolutionary War to have been buried west of the Mississippi River.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMississippi River Rd.<br />Montrose, IA 52639<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "North Lee County Historic Center and Santa Fe Depot Museum",
            "lat": "40.629539",
            "lon": "-91.313475",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-northleecountyhistoriccenter-santafedepot.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">North Lee County Historic Center and Santa Fe Depot Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.629539,-91.313475\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The North Lee County Historic Center and Santa Fe Depot Museum features not only the Depot, but also the Old Lee County Jail. The Santa Fe Depot Museum is a three building complex which is home to the North Lee County Historical Society and features local historic artifacts, documents, and interactive exhibits. The depot saw continuous rail service from 1910 through the 1960s. The depot features brick arches, wide eaves provided shelter and a remarkably simple design. The Atchison, Topeka, and Santa Fe Passenger and Freight Complex Historic District was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t814 10th St.<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.372.7661</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.nlchs.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "T. Ben Loescher House",
            "lat": "42.489941",
            "lon": "-90.684055",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-tbenloetscherhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">T. Ben Loescher House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.489941,-90.684055\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The T. Ben and Nellie Loetscher House is one of the best-designed and preserved examples of the 1920s period revival eclecticism in Dubuque. Designed by C.I. Krajewski in 1924, this Loetscher house is one of five prestigious residences in the city to his credit. The T. Ben Loetscher House was added to the National Historic Register of Historic Places in 1989.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t160 S Grandview Ave.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Albright House",
            "lat": "40.631750",
            "lon": "-91.310502",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-albrighthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Albright House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.631750,-91.310502\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Albright House was erected in the late 1850s for brothers Jacob and William Albright, who came from Philadelphia in 1839. The Albright House has been known locally as the “Betsy Ross House”, because Jacob Albright married Rachel Wilson, granddaughter of Betsy Ross in 1846. The house was designed for a double Italianate residence, out of Samuel Sloan’s “The Model Architect.&quot; The Albright House was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t716 Ave. F<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.fmiowa.com/albright/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lee County Courthouse",
            "lat": "40.632237",
            "lon": "-91.309949",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lee County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.632237,-91.309949\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Although damaged by a fire in 1911, the stone and brick courthouse still stands today. Construction of the courthouse was completed in 1842. Of all of Iowa&#039;s 99 counties, this building has the honor of being the oldest county courthouse in Iowa that is still continually used, serving as the courthouse for Lee County&#039;s northern County Seat. The Lee County Courthouse was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t701 Ave. F<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Sheaffer Pen Museum",
            "lat": "40.631047",
            "lon": "-91.309271",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sheaffer Pen Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.631047,-91.309271\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Committed to preserving the legacy of the W.A. Sheaffer Pen Company, the Sheaffer Pen Museum features several displays and exhibits that highlight the quality and craftsmanship of the Sheaffer Pen.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t627 Ave. G<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.372.1674</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://sheafferpenmuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ora Holland House",
            "lat": "42.500437",
            "lon": "-90.684539",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-orahollandhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ora Holland House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.500437,-90.684539\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Holland House is among the oldest and most unusual examples of early brick residential construction in Dubuque. Erected in 1857, the house represents a variation of the Greek Revival style that was fairly common in 19th Century Dubuque. The Ora Holland House was added to the National Register of Historic Places in 1986.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1296 Mt Pleasant St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cattermole Memorial Library",
            "lat": "40.631342",
            "lon": "-91.309451",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-cattermolepubliclibrary.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cattermole Memorial Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.631342,-91.309451\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located among several other classic architectural gems, this charmingly quaint library is a sandstone and brick mix of Late Victorian and Late Romanesque Revival styles. The building, constructed in 1893, was built by Elizabeth Cattemol. The Cattermole Memorial Library was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t614 7th St.<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Nebergall &quot;Knoll Crest&quot; Round Barn",
            "lat": "41.516869",
            "lon": "-90.717638",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nebergall &quot;Knoll Crest&quot; Round Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.516869,-90.717638\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Nebergall &quot;Knoll Crest&quot; Round Barn was built in 1914 by Benton Steele, a publicist for round barns from Kansas and author of Hoard’s Dairyman, 1914-1915. The barn was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBlue Grass, IA 52726<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Old Fort Madison",
            "lat": "40.628831",
            "lon": "-91.311195",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-oldfortmadison.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Fort Madison</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.628831,-91.311195\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Fort Madison, first called Fort Bellevue, was erected in 1808-1809 by a detachment of the First U.S. Infantry under First Lieutenant Alpha Kingsley. As the site of the first American occupation of the state, Ft. Madison played an important role in Iowa’s future development as well as early military history. As the first U. S. military post in the new Louisiana territory north of St. Louis, Fort Madison was prominent in defending the frontier during the War of 1812 and the Black Hawk assaults. Old Fort Madison was added to the National Register of Historic Places in 1973.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t716 Riverview Dr.<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.372.7700</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Saint Barnabas Chapel",
            "lat": "40.531762",
            "lon": "-91.418430",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-saintbarnabaschapel.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Saint Barnabas Chapel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.531762,-91.418430\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">154.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Known originally as Grace Episcopal, the Gothic Revival-style church served an active parish for nearly a century until its closure in 1960. The blue limestone church now is owned by the local historical society. The Saint Barnabas Chapel was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tChestnut St.<br />Montrose, IA 52639<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Garland House",
            "lat": "42.493528",
            "lon": "-90.677921",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-garlandhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Garland House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.493528,-90.677921\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Garland House is a fine example of the Georgian Revival style, and is significant due to its unique treatment of those stylistic elements in combination with large scale concrete block construction. The Garland House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1090 Langworthy St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. James Clarke Gravesite",
            "lat": "40.825486",
            "lon": "-91.116016",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-govgravesite-jamesclarke.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. James Clarke Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.825486,-91.116016\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155mi.</span></div>\n\t\t</div>\n\n\t\t<p>James Clarke (July 5, 1812 – July 28, 1850) served as the 3rd Governor of the Iowa Territory from November 18, 1845 until December 3, 1846, being appointed to the office, as a Democrat, by President James Polk. His gravesite is located in Aspen Grove Cemetery.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2043 Sunnyside Ave.<br />Aspen Grove Cemetery<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. James Grimes Gravesite",
            "lat": "40.823929",
            "lon": "-91.117327",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-govgravesite-jamesgrimes.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. James Grimes Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.823929,-91.117327\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155mi.</span></div>\n\t\t</div>\n\n\t\t<p>James Wilson Grimes (October 20, 1816 – February 7, 1872) served as the 3rd Governor of Iowa from 1854-1858. His gravesite is located in Aspen Grove Cemetery in Burlington.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2043 Sunnyside Ave.<br />Aspen Grove Cemetery<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Langworthy Historic District",
            "lat": "42.494974",
            "lon": "-90.678714",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-langworthydistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Langworthy Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.494974,-90.678714\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Langworthy Historic District was an architecturally significant district that contains the most well preserved and cohesive grouping of late 19th and 20th Century Revival styles in Dubuque. The buildings include examples of the Colonial Revival, Craftsman, Prairie and Mission styles. The district is bounded by Melrose Ter. and W 3rd St. to the north, Solon St. to the south, Alpine St. to the west and Hill St. to the east. The Langworthy Historic District was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1175 Langworthy St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Langworthy House",
            "lat": "42.495467",
            "lon": "-90.679183",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-langworthyhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Langworthy House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.495467,-90.679183\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1856, this house was designed by local architect John Francis Rague for local politician Edward Langworthy. The two-story brick home features tall windows, a columned entry, and a windowed cupola. The Langworthy House was added to the National Register of Historic Places in 1975.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1095 W 3rd St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Johann Christian Frederick Rath House",
            "lat": "42.484386",
            "lon": "-90.674967",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-johannrathhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Johann Christian Frederick Rath House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.484386,-90.674967\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1852-1853 the Rath house was a very modest home at the time, and is one of Dubuque&#039;s most well-preserved residences. The Johann Christian Fredrick Rath House was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1204 Mount Loretta Ave.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Daniel McConn Barn",
            "lat": "40.652805",
            "lon": "-91.276030",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-mcconnbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Daniel McConn Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.652805,-91.276030\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in the 1850s, the McConn barn is an amazingly well-preserved banked, basement double-decker Pennsylvania-styled barn. The barn, still used by local farmers today, was first built and used by wealthy entrepreneur Daniel McConn who owned Fort Madison&#039;s first grocery store and flour mill. The Daniel McConn Barn was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t343rd Ave.<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.372.5472</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowa State Penitentiary Cellhouses Historic District",
            "lat": "40.633942",
            "lon": "-91.296073",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa State Penitentiary Cellhouses Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.633942,-91.296073\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Iowa State Penitentiary Cellhouses Historic District is significant in the areas of law enforcement and architecture. The three cell houses are a representation of the Auburn Penitentiary Complex subtype, the Romanesque Revival architectural style common to prisons, and the work of the state architects Henry Franz Liebbe and Henry Jackson Liebbe. The cell houses portray the prevalent type of cellhouse erected in the U.S., a type that remained common from the 1820s to 1930s. The Iowa State Penitentiary Cellhouses Historic District was added to the National Register of Historic Places in 19992.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tAve. G<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Fort Madison Bridge",
            "lat": "40.629830",
            "lon": "-91.299854",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fort Madison Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.629830,-91.299854\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Formerly known as the Santa Fe Swing Span Bridge, this double-decker rail and passenger bridge is considered one of the longest examples of its design in the entire world. Constructed in 1927, the bridge connecting Fort Madison, Iowa to Niota, Illinois, spans over the Mississippi River, and is longer than 270 feet. The Fort Madison Bridge was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHwy. 9<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "DeFries House, Barn, and Carpenter Shop",
            "lat": "42.188431",
            "lon": "-90.621259",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-barn-thedefriesbarnonthedorisandjackdyasfarm.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">DeFries House, Barn, and Carpenter Shop</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.188431,-90.621259\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Andreas Betten DeFries was born in Ostfriesland, Germany, where his father was a carpenter, making coffins and wooden shoes, later becoming a farmer. In 1854 Andreas came to America with his father (Bette Andreas DeFries), and step-mother (Trintje Ippers). They arrived in Jackson County in 1855 and in partnership purchased 161 acres of land in Perry Township. On that land was a two story log house built in 1842. In 1858 they hired Christian Blessing to build a fine limestone house.  Blessing was trained as a master craftsman in Germany and came to America in 1852. He settled in Jackson County in 1855. The DeFries buildings are the only buildings directly attributed to Blessing, but it is highly likely he built other stone buildings in the county as well.  The DeFries house (1858), carpenter shop (1858-1862), and barn (1862) were all added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t18998 232nd Ave.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Holy Ghost Catholic Historic District",
            "lat": "42.524476",
            "lon": "-90.680117",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Holy Ghost Catholic Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.524476,-90.680117\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Holy Ghost Catholic Historic District centered on the 2900 block of Central Avenue in Dubuque is locally significant within the social history and education of this northern section of Dubuque. The period of significance spans from the construction of the initial building in 1896 through 1946. Significant dates include the construction of the original building in 1896 and remodel in 1917, construction of the rectory in 1898, construction of the convent in 1903, and construction of the church in 1917. The Holy Ghost Catholic Historic District was added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2917 Central Ave.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "John and Marie Palen Schrup Farmstead District",
            "lat": "42.443504",
            "lon": "-90.657697",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John and Marie Palen Schrup Farmstead District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.443504,-90.657697\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The farmstead district is part of the original farm of 193 acres settled by John and Marie (Palen) Schrup. The farmstead district located within the original Julien Dubuque land claim, negotiated with the Mesquakie Tribe by Julien Dubuque in 1788. The farmstead includes the original farm house, stone barn and stone well-house, all of which share many typical mid-nineteenth century Luxembourgian vernacular characteristics. The principal farming activity revolved around dairy cows. The rock barn and well-house allowed early settlers to milk a few cows and store the cream in the well-house until it could be delivered to the creamery. The farmstead is significant as one of the few well-preserved Dubuque County Luxembourgian immigrant farmsteads settled in the mid-nineteenth centry.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10086 Lake Eleanor Rd.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "West Eleventh Street Historic District",
            "lat": "42.502532",
            "lon": "-90.673518",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-w11thsthistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Eleventh Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.502532,-90.673518\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The prominent bluff top vista and clustering of many of the best residential designs of the city along that bluff front, the West Eleventh Street Historic District is Dubuque&#039;s &quot;best of show&quot; award winner for late Victorian architecture. The district is bounded by Loras Blvd. to the north, Wilbur St. to the south, Walnut St. to the west and Grove Terrace to the east. It was added to the National Register of Historic Places on Aug. 12, 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t631 Chestnut St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Andrew-Ryan House",
            "lat": "42.504945",
            "lon": "-90.671123",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-andrewryanhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Andrew-Ryan House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.504945,-90.671123\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Andrew-Ryan House constructed in 1873, is one of the finest examples of Second Empire style architecture in Dubuque and the state of Iowa. The Andrew-Ryan House was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1375 N Locust St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles T. Hancock House",
            "lat": "42.502734",
            "lon": "-90.671615",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-chashancockhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles T. Hancock House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.502734,-90.671615\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>With its prominent location and massive scale, the Charles T. Hancock house is a Dubuque landmark and one of the city’s finest examples of Queen Anne architecture. The Charles T. Hancock House was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1105 Grove Ter.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fenelon Place Elevator",
            "lat": "42.496318",
            "lon": "-90.669404",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-fenelonplaceelevator.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fenelon Place Elevator</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496318,-90.669404\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fenelon Place Elevator is a rare example of an inclined plane railway, and is the only one known to exist in the Midwest. Built in 1882, the elevator was constructed so that its owner, Mr. J.K. Graves could have plenty of time to go home for dinner, take a nap, and return to work in a timely manner. Bothered by the long buggy ride, Graves constructed the elevator for his own private use. He also allowed neighbors to use the elevator for trips to work, church, and errands to town. After several fires and a recession, Graves could no longer afford to finance the elevator, so neighbors banded together to reconstruct the elevator. Today, the elevator has undergone several restorations and is available for public use and was featured in the movie F.I.S.T. The Fenelon Places Elevator was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t512 Fenelon Pl.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.dbq.com/fenplco/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Delaney Barn",
            "lat": "42.237418",
            "lon": "-90.622874",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-barn-delaneybarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Delaney Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.237418,-90.622874\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Delaney Barn is located on the Sprank farm. This large barn was built around 1900 using wooden peg construction. There is also a smaller barn on the property that was built in 1940. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t23477 Bellevue-Cascade Rd.<br />LaMotte, IA 52054<br />Jackson County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Walter A. Sheaffer House",
            "lat": "40.634055",
            "lon": "-91.287154",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-waltershaefferhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Walter A. Sheaffer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.634055,-91.287154\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Walt A. Sheaffer was inventor of the first self-filling fountain pen and built this mansion in 1930. Sheaffer&#039;s brick and stone mansion rises up for over three floors, complete with original fireplaces and luxurious bedrooms. Sheaffer&#039;s local inventions would grow through the decades and he enjoyed worldwide success and even became a corporate sponsor of the &quot;I Love Lucy Show.&quot; The Walter A. Sheaffer House was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t11 High Point Rd.<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Carnegie Stout Public Library",
            "lat": "42.502564",
            "lon": "-90.670015",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-carnegielibrary.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Carnegie Stout Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.502564,-90.670015\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Carnegie-Stout Public Library is a two-story rectangular structure constructed in 1901. The library offers comfortable seating in five reading areas, programs for all ages, internet access, computers, books, magazines, newspapers, genealogy materials, e-books, and downloadable audio books plus access to electronic resources. The Carnegie Stout Public Library was added to the National Register of Historic Places in 1975.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t360 W 11th St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.589.4225</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.dubuque.lib.ia.us/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Redstone Inn and Suites",
            "lat": "42.498000",
            "lon": "-90.667849",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-redstoneinn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Redstone Inn and Suites</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.498000,-90.667849\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1888, Redstone is a particularly fine example of Richardsonian Romanesque. The former 19th century mansion houses the Redhouse Inn and Suites. The Redstone was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t504 Bluff St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Roshek Brothers Department Store",
            "lat": "42.500184",
            "lon": "-90.667779",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-roshekbrothers.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Roshek Brothers Department Store</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.500184,-90.667779\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>At one time the largest and tallest building in Dubuque, the department store operated for decades, until financial difficulties in the early 1990s. It was for many years the largest department store in the entire state of Iowa. The Roshek Brothers Department Store was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t250 W 8th St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.roshekbuilding.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Craig and Virginia Sheaffer House",
            "lat": "40.634492",
            "lon": "-91.286256",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Craig and Virginia Sheaffer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.634492,-91.286256\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Craig and Virginia Sheaffer House is significant as an outstanding example of a large Tudor Revival style house. Completed in 1929, the house is set in 2.5 acres of landscaped grounds overlooking the Mississippi River. The exceptionally long 138-foot north and south facades of the house incorporate many architectural features of the Tudor Revival style. These identifying characteristics of construction include steeply pitched roofs, front gables, half timbering, grouped and bay windows, large chimneys topped with chimney pots, and a combination of brick, stone and stucco wall cladding. The Craig and Virginia Sheaffer House was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10 High Point Rd.<br />Fort Madison, IA 52627<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Cathedral Historic District",
            "lat": "42.495179",
            "lon": "-90.667246",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-cathedraldistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cathedral Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.495179,-90.667246\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The history of the Cathedral District is significant as one of the oldest areas of the city of Dubuque. The boundaries of the district lie within the original town as platted in 1833. The District continues to be a residential neighborhood and proudly reflects the beginning of the city through its past residents and its enduring architecture. In addition to the historic homes the district features quaint shops and cafes. The Cathedral Historic District was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t199 Bluff St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jackson Park Historic District",
            "lat": "42.505550",
            "lon": "-90.670497",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-jacksonparkhistdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jackson Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.505550,-90.670497\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dating back to 1850-1900, the neighborhood consists primarily of brick vernacular and the Second Empire and Queen Anne architectural styles. As a whole, this well-preserved range of residential and institutional buildings reflects the emergence of professional architects and the development of a middle-to upper-class neighborhood in a growing city. The district is bounded to the north by 10th St., 17th St. to the south, Iowa St. to the east and Bluff St. to the west. The Jackson Park Historic District was added to National Register of Historic Places in 1986.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1400 Main St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Upper Main Street Historic District",
            "lat": "42.503194",
            "lon": "-90.668443",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-uppermainhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Upper Main Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.503194,-90.668443\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Upper Main Historic District is locally significant for its historical associations with commercial architecture and the commercial history and development of Dubuque. The Upper Main Historic District was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 - 1100 Main St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Washington Park",
            "lat": "42.499038",
            "lon": "-90.668108",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-washingtonparkhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Washington Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.499038,-90.668108\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Washington Park has a long history as a center of community activity in Dubuque. In the 1830s a log building was constructed there, which served as a Methodist meeting house, school, and courthouse. In the latter half of the 19th century, the park became a popular site for art exhibits, musical performances, political events, and dog shows. Washington Park was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6th St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "J. H. Thedinga House",
            "lat": "42.497720",
            "lon": "-90.667690",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-thedingahouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J. H. Thedinga House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.497720,-90.667690\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Thedinga House is significant because of the contributions of its builder, John Sullivan and of its first owner Mr. Thedinga who was one of the early settlers in Dubuque and was a leading citizen during the city’s early years. The J. H. Thedinga House was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t340 W 5th St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Luke&#039;s Methodist Episcopal Church",
            "lat": "42.503778",
            "lon": "-90.669131",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-stlukesunitedmethodisttiffanyglass.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Luke&#039;s Methodist Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.503778,-90.669131\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Luke&#039;s United Methodist Church was the first church in Iowa (1833) with the 5th largest collection of Lewis Comfort Tiffany windows in the United States and a beautiful pipe organ dated back to 1897. The church is a unique example in Dubuque of the Romanesque Revival architectural design. The Church was built by George W. Kramer, a New York City architect with a national reputation as a church designer. The St. Luke&#039;s Methodist Episcopal Church was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1199 Main St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://stlukesumcdbq.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "German Bank",
            "lat": "42.497169",
            "lon": "-90.664960",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-gemanbank.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">German Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.497169,-90.664960\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The bank’s historical significance lies in its association with Dubuque’s German community, which in the mid and late 19th century was the city’s most prominent ethnic group. The German Bank was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t342 Main St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Grand Opera House",
            "lat": "42.501104",
            "lon": "-90.666467",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-grandoperahouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.501104,-90.666467\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grand Opera House is Dubuque&#039;s only surviving grand opera house and it boasts the largest stage ever built in that city. The Grand is architecturally significant on the national level because it is one of the best designs of the national significant Chicago architect Willoughby James Edbrooke. The Grand Opera House was added to the National Register of Historic Places in 2002. The Grand Opera House Foundation, a non-profit corporation owns this magnificent facility. As 21st century audiences enjoy this beautiful theater it is a living tribute to the heritage and traditions of past generations of actors, musicians, choreographers, costumers, stage hands, set designers, managers and the visionary leaders of 1890 who created Dubuque&#039;s Grand Opera House.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t135 W 8th St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.588.4356</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thegrandoperahouse.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dubuque City Hall",
            "lat": "42.505271",
            "lon": "-90.667529",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-dubuquecityhall.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dubuque City Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.505271,-90.667529\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>State of Iowa Governor Stephen Hempstead recruited architect John F. Rague to design the building. Rague, who designed Dubuque’s City Hall after Boston’s Faneuil Hall and the Fulton Street Market in New York City, also designed the old Dubuque County Jail (now the Old Jail Museum), the “Octagon House” at 3rd and Alpine, as well as the State of Iowa capitol building (now at the University of Iowa). A gala held on January 8, 1858, celebrated the official opening of the building. The first floor of the building was intended to be used as a market with small stalls that were rented to vendors to display and sell their products. The 11 ft. windows were designed specific to the height of wagons so they were able to back up to unload their produce and goods. The second floor served as the main City offices, court room, and City Council chamber. The third floor was considered the “Town Hall” where the public had a place to gather. It was used for dances and later as an archery range, a pistol range for the police department, a bowling alley, and a horseshoe pitching area. And the basement of the building was the home of the City Jail, police offices, and two saloons. Rague’s design also included a belfry. The Dubuque City Hall was added to the National Register of Historic Places in 1972.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t50 W 13th St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.589.4100</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dubuque Young Men&#039;s Christian Association Building",
            "lat": "42.502099",
            "lon": "-90.666840",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-ymca.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dubuque Young Men&#039;s Christian Association Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.502099,-90.666840\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in two stages in 1894 and 1916, the Dubuque YMCA building is a locally prominent landmark that is significant for its involvement in the local community and for its architecture. The Dubuque YMCA was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t125 W 9th St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hollenfelz House",
            "lat": "42.508609",
            "lon": "-90.668120",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-hollenfelzhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hollenfelz House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.508609,-90.668120\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hollenfelz House is a handsome, slightly unorthodox example of Second Empire residential architecture. The home was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1651 White St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Interstate Power Company Building",
            "lat": "42.502711",
            "lon": "-90.667813",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-interstatepowerco.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Interstate Power Company Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.502711,-90.667813\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dubuque Electric Company acquired this building in 1924 and this was the first building to have a sustained connection with the energy service business, one that continues to the present day. The company was reorganized as the Interstate Power Company in 1925 and this building was headquarters for the emergence of a regional electrical utility that, at its height, would serve parts of four states. The Interstate Power Company Building was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 Main St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Security Building",
            "lat": "42.501210",
            "lon": "-90.667001",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-securitybuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Security Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.501210,-90.667001\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Security Building is locally significant as an excellently preserved Dubuque example of the Beaux Art style. The two successive parts of the building were designed by regionally notable architects, Fridolin Heer and Son and Thomas Carkeek. The Security Building was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t800 Main St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Town Clock Building",
            "lat": "42.501047",
            "lon": "-90.667566",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-townclockbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Town Clock Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.501047,-90.667566\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This commercial block represents a well-designed and well-preserved example of an early 1870s Italianate style commercial block. Dubuque&#039;s Town Clock resides in Town Clock Plaza on Main Street in downtown Dubuque. The Town Clock building was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t823 Main St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.589.4263</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ziepprecht and John Bell Block",
            "lat": "42.505806",
            "lon": "-90.667579",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-zipperechtblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ziepprecht and John Bell Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.505806,-90.667579\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Architecturally this block building is a well-preserved example of a transitional Italianate commercial style with both Second Empire and Queen Anne influences. The John Bell Block (south two-thirds of the block) gains its significance for its architectural merit and for its history relating to commerce and its association with German-American settlers from the area. The Ziepprecht building (north one-third of the block) represents one of a small number of surviving commercial double storefront blocks. The blocks were added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1301 Central Ave.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Five Flags Theatre Co. (Orpheum Theatre)",
            "lat": "42.497648",
            "lon": "-90.665768",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-theater-5flagsorpheum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Five Flags Theatre Co. (Orpheum Theatre)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.497648,-90.665768\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Orpheum Theatre maintains a 132-year tradition of theater in Dubuque beginning in 1859. Many famous stars have walked the entertained the community of Dubuque for generations. The theater has undergone several name changes over the years and has been known as the City Hotel, Peosta House, Athenaeum Theater, Duncan-Waller Opera House, Coates Opera House, Main Street Opera House, and Bartell&#039;s Dramatic Vaudeville Theater, just to name a few. The theater is also home to the Five Flags Theatre Co. The Orpheum Theatre was added to the National Register of Historic Places in 1972.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t405 Main St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.589.4254</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://fiveflagscenter.com/default.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Buffalo High School",
            "lat": "41.458625",
            "lon": "-90.721169",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-buffalohighschool.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buffalo High School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.458625,-90.721169\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1836, Buffalo became the first settlement in Scott County. Three years later the first school house in the county was built in Buffalo. As the town and school district grew, more schools were constructed and by 1900 an additional building was necessary. The new building, now known as Buffalo High School, was built as a one-story school for first through eighth grades. A second story was added in 1928 so the building could accommodate grades first through twelfth. During construction on August 7, 1900, a time capsule was placed in the cornerstone of the school, to be opened 100 years later. Opened in 2000, the rusted metal box contained letterhead from Davenport Paving Brick and Tile Company, letterhead from F. E. Frank Contractor and Builder, a photograph of the school, a list of the school board, a list of pupils, the Buffalo Band roster, a cigar, and some newspaper clippings. The high school is the oldest brick building in Buffalo and was added to the National Register of Historic Places in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t326 E 4th St.<br />Buffalo, IA 52728<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Old Main Street Historic District",
            "lat": "42.496437",
            "lon": "-90.664751",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-oldmainhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Main Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496437,-90.664751\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old Main Street Historic District represents the largest concentration of significant nineteenth century commercial architecture in the City of Dubuque and is composed of the 100 - 300 blocks of Main Street. The district was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 Main St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Upper Central Avenue Commercial Historic District",
            "lat": "42.508243",
            "lon": "-90.668742",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-uppercentralhistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Upper Central Avenue Commercial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.508243,-90.668742\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Upper Central Avenue Commercial District is locally historically significant on the basis of its architecture and its association with the economic and commercial history of Dubuque . The district is a well preserved example of Dubuque&#039;s commercial architecture, dating from the latter half of the 19th and the first decade of the 20th century. The district was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1368 Central Ave.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Four Mounds Inn and Conference Center",
            "lat": "42.554027",
            "lon": "-90.679011",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Four Mounds Inn and Conference Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.554027,-90.679011\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Four Mounds Estate, a National Register District and a City of Dubuque Landmark Site, is a remarkably intact 1908 gentleman&#039;s farm along the Mississippi River bluff line. The site features the farm and grounds, riverview hiking trails, arts and crafts style and colonial Bed and Breakfasts, small conference center, challenge ropes course and more, including house rentals.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4900 Peru Rd.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.556.1908</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"www.fourmounds.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-hotels.png",
            "title": "Hotel Julien Dubuque",
            "lat": "42.496228",
            "lon": "-90.664393",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-hoteljulien.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-hotels.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Julien Dubuque</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496228,-90.664393\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>In 1839, travelers&#039; first sight as they crossed the Mississippi River into Dubuque was a hotel building on the corner of 2nd and Main. This old &quot;Julien Hotel&quot; survived a fire, hosted famous guests such as Abraham Lincoln, &quot;Buffalo Bill&quot; Cody and Mark Twain, gained notoriety thanks to Chicago gangster Al Capone who would hide out from the cops at the hotel during prohibition. After a $30 million interior renovation and exterior restoration in the early 2010s, the Hotel Julien Dubuque has redefined elegance through the blending of its rich history with modern luxury and style.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 Main St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.798.7098</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://hoteljuliendubuque.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dubuque County Jail Museum",
            "lat": "42.501287",
            "lon": "-90.664557",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-dubuquecountyjailmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dubuque County Jail Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.501287,-90.664557\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Completed in 1858 this massive stone edifice is an outstanding example of Egyptian Revival architecture, perhaps the rarest of American architectural styles. The museum features artifacts from the Dubuque County Historical Society collection. The Dubuque County Jail was added to the National Register of Historic Places in 1972.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t721 Central Ave.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.557.9545</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.rivermuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Smokestack",
            "lat": "42.500674",
            "lon": "-90.664323",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nha-smokestack.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Smokestack</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.500674,-90.664323\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Before Dubuque was established, the area surrounding the property of the Smokestack building was home to a diversity of Native American cultures. Today, Smokestack is an historic, arts, culture and nightlife venue founded in 2015 in the heart of downtown Dubuque. Visitors can enjoy the casual restaurant with two public rooftops, a public garden and art gallery. The building&#039;s 60-foot-tall smokestack and interiors reflect nearly 200 years of a changing Iowa through its past and present uses. Built in 1856, by Swiss-German immigrant Joseph Gerhig as the Jefferson House Hotel (then 4 stories tall), it was a resting place for many German immigrants traveling west. In 1921, the building housed the Sanitary Milk Company, which produced milk, ice cream and cottage cheese free of milk-borne diseases. The Sanitary Milk Company added the smokestack to the building in 1930 for power and ventilation. From 1943 to 1980, Farley &amp; Loetscher, the world&#039;s largest mill working company, leased the building for light industrial use. The building is used by Feye Brothers Auto Body and C&amp;T Motorcycles from the 1970s to 2000s. The Smokestack is a Silos and Smokestacks National Heritage Area.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t62 E 7th St<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.smokestackdbq.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bishop&#039;s Block",
            "lat": "42.494931",
            "lon": "-90.663612",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-bishopsblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bishop&#039;s Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.494931,-90.663612\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bishop&#039;s Block is locally significant as a prominent example of the work of Franklin D. Hyde, a prolific architect in late 19th century Dubuque. Hyde received major residential and commercial commissions from wealthy industrialists engaged in building the city of Dubuque. The Bishop&#039;s Block was added to the National Register of Historic Places in 1994.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t90 Main St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dubuque County Courthouse",
            "lat": "42.500959",
            "lon": "-90.664464",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-dubuquecountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dubuque County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.500959,-90.664464\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1891-1893 by Fridolin Heer and Son, the Dubuque County Courthouse is a building of majestic scale and dignity. The building can be seen towering above the city as a symbol of security and consolidation within the community. The Dubuque County Courthouse was added to the National Register of Historic Places in 1973.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t720 Central Ave.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.dubuquecounty.org/Courthouse/tabid/95/Default.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Schroeder-Kleine Grocer Company Warehouse (M. M. Walker Company Warehouse)",
            "lat": "42.493527",
            "lon": "-90.662937",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-schroederkleingrocery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Schroeder-Kleine Grocer Company Warehouse (M. M. Walker Company Warehouse)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.493527,-90.662937\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Schroeder-Kleine Grocer Company Warehouse (M.M. Walker Company Warehouse) is significant architecturally as a strong example of a late 19th century Romanesque Revival warehouse. It was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t40 Main St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Delmar Depot Railroad and Military Museum",
            "lat": "42.000905",
            "lon": "-90.608165",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Delmar Depot Railroad and Military Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.000905,-90.608165\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Originally called the Chicago, Milwaukee, St. Paul, and Pacific Depot, this building was built in 1905. It is a rectangular, single story, wood frame building built of a standard design for rural railroad stations. The depot remained in use until 1977. It was later purchased by the City of Delmar and became the Delmar Depot Railroad and Military Museum. The building was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tRailroad St.<br />Delmar, IA 52037<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.574.4077</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.delmaria.org/attractions.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Sacred Heart School (Marquette Hall)",
            "lat": "42.516873",
            "lon": "-90.667146",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://iowacultureapp.com/images/dubuque-nrhp-sacredheart-4-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sacred Heart School (Marquette Hall)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.516873,-90.667146\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sacred Heart Parish in Dubuque was formed in 1880 and in the years following the parish had built a two-story brick building that served as the church and school, rectory, Sisters of St. Francis residence. As the parish rapidly expanded the construction of a new church was undertaken and building commenced in 1885. Designed by Fridolin Heer, Sr., the new Romanesque Revival style church was completed in 1888 and could hold 1,200 congregants. The architectural firm of Frid. Heer &amp; Son entered into business about 1870 and continued for 70 years, designing churches, residences and commercial buildings. In November of 1891 a new school was dedicated and named Marquette Hall for the French missionary, Jacques Marquette who studied and taught in Jesuit colleges of France before being assigned mission work in America. In 1915, following in the footsteps of his father, Fridolin Heer, Jr. undertook the design for a new school building on the site of Marquette Hall. The new school was dedicated on March 19, 1916 and more than 640 students moved into the new school. The parochial school educated students from kindergarten through eighth grade with the Sisters of St. Francis teaching the majority of the classes. As of 2018, the 1888 church, 1882 rectory, in addition to the Sacred Heart School building all remain extant on the parish property that was purchased 1880.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2238 Queen St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-historic-landmarks.png",
            "title": "William M. Black Dredge Steamboat",
            "lat": "42.495526",
            "lon": "-90.662200",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhl-williamblack-7-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-historic-landmarks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William M. Black Dredge Steamboat</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.495526,-90.662200\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The William M. Black Dredge Steamboat was constructed in 1934 by Marietta Manufacturing Company of Point Pleasant, West Virginia. The vessel was listed on the National Register of Historic Places on April 12, 1982 and designated as a National Historic Landmark on April 27, 1992. It is permanently moored in the Dubuque Harbor where it can be toured with admission to the National Mississippi River Museum &amp; Aquarium.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t350 3rd St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.226.3369</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.rivermuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Historic Limestone Insane Asylum",
            "lat": "42.199004",
            "lon": "-90.610432",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Historic Limestone Insane Asylum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.199004,-90.610432\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jackson County Insane Asylum is located on what was once known as the Jackson County Poor Farm. From the road, the building looks like many other stone houses in the county that have a gable end entry. The 1879 Jackson County history says that the Insane Asylum was built for the incurably insane who returned from the State Asylum. Each floor was divided into rooms (cells), with doors of iron grating, opening into the halls, by which means the cells were heated in the winter from stoves in the halls.  Nineteen insane persons were housed at the Insane Asylum. The Insane Asylum was built in 1872 by Strasser and Schlect, contractors, builders and lumber dealers from Bellevue who were involved with the construction of most major buildings in the area. The Insane Asylum was constructed with local limestone. It was listed on the National Register of Historic Places in 1992 and also has an Iowa Great Places designation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t16819 250th Ave.<br />Jackson County Poor Farm<br />Andrew, IA 52060<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.652.3181</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://jacksoncountyiowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Heritage Hill Historic District",
            "lat": "40.812950",
            "lon": "-91.106036",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/admin/content/photos/view/?id=78\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Heritage Hill Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.812950,-91.106036\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Heritage Hill Historic District is located immediately north of Hawkeye Creek Valley, where the nineteenth-century business district developed. Heritage Hill became a focus of residential development, especially for wealthy businessmen. It was an attractive location for prospective home builders, due to its proximity to the business district, the C.B. and Q Railroad lines, and the Mississippi River. It was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3rd St. to Central Ave., High St. to Washington St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Downtown Historic Millwork District",
            "lat": "42.502840",
            "lon": "-90.663560",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-millworkingdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Downtown Historic Millwork District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.502840,-90.663560\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This district is the core of Dubuque’s only concentrated cluster of industrial buildings. It had been a lumber town, but by the turn of the 20th century, Dubuque was changing. Lumber from the West Coast was replacing lumber from the Upper Mississippi River and Dubuque became a millworking center. This district represents that time, when the most notable buildings and firms in the district were the largest of their trades in the world. \r\n\r\nThe former Caradco Manufacturing Company (now the CARADCO Lofts) building was used in the 1978 Sylvester Stallone film &quot;F.I.S.T.&quot; In the film, the windows of the building were blown out.\r\n\r\nThe Dubuque Millworking Historic District was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t299 E 9th St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Stephen Hempstead Gravesite",
            "lat": "42.524912",
            "lon": "-90.668662",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-govgravesite-stephenhempstead.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Stephen Hempstead Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.524912,-90.668662\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Stephen P. Hempstead (October 1, 1812 - February 16, 1883) served as the 2nd Governor of Iowa from 1850 to 1854. His gravesite is located at Linwood Cemetery in Dubuque.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2735 Windsor Ave.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Augustus Caesar Dodge House",
            "lat": "40.815951",
            "lon": "-91.103378",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Augustus Caesar Dodge House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.815951,-91.103378\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Augustus Caesar Dodge represented Iowa Territory in Congress as its delegate to the U.S. House of Representatives from 1840-1846 and was one of the first set of U.S. Senators to represent the state of Iowa after it was admitted to the union, serving from 1848-1855. He built this house in Burlington in 1865, and later served as mayor of Burlington from 1874-1875. The house was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t829 N 5th St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "William Salter House",
            "lat": "40.808761",
            "lon": "-91.110044",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William Salter House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.808761,-91.110044\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The former home of William Salter and his family was built in 1875 on a high bluff overlooking the city of Burlington. William Salter (1821-1910) was a preacher and circuit rider who came to Iowa after graduating from Andover Theological Seminary in 1843. Upon graduation he entered the missionary field and was assigned to Jackson County in the Iowa Territory. In 1846, he was asked to fill the vacancy of the pastor of the Congressional Church in Burlington, who had recently resigned due to illness. He remained pastor of the congregation for more than sixty years. Salter&#039;s views on slavery were developed early, when a youth in New York City, when he came under the influence of an anti-slavery preacher, Dr. Cox. He became an active abolitionist in the 1850s arguing for emancipation and assisting fugitive slaves.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t111 S 8th St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dubuque Casket Company",
            "lat": "42.510303",
            "lon": "-90.666140",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-dubuquecasketco.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dubuque Casket Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.510303,-90.666140\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dubuque Casket Company building is locally significant for its role in Dubuque’s casket making industry. The Dubuque Casket Company was the most successful of three casket manufacturers in Dubuque, operating from 1877 to 1987. The building is one of the key buildings in Dubuque’s potential Old Town district, and the only remaining casket manufacturing building in the city. The Dubuque Casket Company was added to the National Register of Historic Places on Feb. 9, 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1798 Washington St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Delmar Calaboose",
            "lat": "41.999474",
            "lon": "-90.606041",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Delmar Calaboose</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.999474,-90.606041\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Delmar Calaboose is the town&#039;s oldest extant public building. It was built in 1878 and its walls and roof are composed of limestone and mortar. The word &quot;calaboose&quot; comes from the Spanish word &quot;calabozo,&quot; which means dungeon, suggesting that this building was originally used as a jail. It was listed on the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tVane St.<br />Delmar, IA 52037<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Paul&#039;s German Methodist Church",
            "lat": "40.811883",
            "lon": "-91.106693",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Paul&#039;s German Methodist Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.811883,-91.106693\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Paul&#039;s German Methodist Church was the second of 8 German churches of varying denominations established in Burlington from 1841-1879. It is a significant local example of vernacular Gothic architecture. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t620 Washington St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dubuque Freight House",
            "lat": "42.496644",
            "lon": "-90.660883",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-cbnfreighthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dubuque Freight House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496644,-90.660883\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1902 this building is significant for its association with Dubuque’s railroad history. The Dubuque Freight House was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 E 3rd St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Harris Wagon and Carriage Shop",
            "lat": "42.295457",
            "lon": "-90.621342",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Harris Wagon and Carriage Shop</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.295457,-90.621342\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Harris Wagon and Carriage Shop was built in 1871. This building is significant as an example of a limestone commercial building from the late 19th century. The Harris Wagon and Carriage Shop was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 N Main St.<br />La Motte, IA 52054<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-centers.png",
            "title": "Voices From The Warehouse District",
            "lat": "42.503586",
            "lon": "-90.664236",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-artperforming-voicesfromwarehousedistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Voices From The Warehouse District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.503586,-90.664236\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Voices is a month-long art exhibit and cultural event located in the re-purposed 15,000 square foot gallery space within Dubuque’s Historic Millwork District.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t275 E 10th St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.690.0320</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.voicesgallery.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Miss Effies Country Flowers &amp; Garden",
            "lat": "41.703211",
            "lon": "-90.645437",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Miss Effies Country Flowers &amp; Garden</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.703211,-90.645437\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This U-Pick flower farm encourages guests to relax and enjoy the beautiful Grand Wood landscapes in the shade of an 1892 Classic L Victorian Farmhouse. Chickens and ducks accompany you as you select and create a beautiful boquet from a variety of 90 different flowers.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t27387 130th Ave.<br />Donahue, IA 52746<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Thomas Reburn Polygonal Barn",
            "lat": "43.491798",
            "lon": "-91.303638",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thomas Reburn Polygonal Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.491798,-91.303638\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 12-sided barn is one of four known Iowa round barns to be built with a flat or nearly flat roof, and has a distinguishing silo in the center that extends through the roof. The Reburn family has owned the barn since its construction in 1914, and it was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2999 Cemetery Rd.<br />New Albin, IA 52160<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "science-centers.png",
            "title": "National Mississippi River Museum and Aquarium",
            "lat": "42.496003",
            "lon": "-90.660075",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-historymuseum-nationalmississippirivermuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/science-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">National Mississippi River Museum and Aquarium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496003,-90.660075\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156mi.</span></div>\n\t\t</div>\n\n\t\t<p>The highly interactive museum and aquarium includes the Mississippi River Center and the National River Center. Experience dynamic state-of-the-art exhibits, a 3D/4D theater, animal programs, a National Landmark vessel, and more. The National Mississippi River Museum and Aquarium is a Smithsonian Institution Affiliate and is accredited by the American Association of Museums and the Association of Zoos and Aquariums. The William M. Black Dredge Steamboat was constructed in 1934 by Marietta Manufacturing Company of Point Pleasant, West Virginia. The vessel was listed on the National Register of Historic Places on April 12, 1982 and designated as a National Historic Landmark on April 27, 1992.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t350 E 3rd St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.226.3369</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.rivermuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "West Jefferson Historic District",
            "lat": "40.810689",
            "lon": "-91.106599",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West Jefferson Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.810689,-91.106599\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156mi.</span></div>\n\t\t</div>\n\n\t\t<p>The buildings of the West Jefferson Historic District trace the development of commercial and retail architecture in Burlington from the Civil War through the turn of the century, illustrating the growth of the town&#039;s business district between 1865 and 1936. The district was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t608 W Jefferson St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Abiathar and Nancy (Corey) White House",
            "lat": "40.815129",
            "lon": "-91.103213",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-nhr-abintharnancywhitehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Abiathar and Nancy (Corey) White House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.815129,-91.103213\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156mi.</span></div>\n\t\t</div>\n\n\t\t<p>The White family moved to Burlington in 1838, before Iowa had become a state. Their home was added to the National Register of Historic Places in 2014.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t713 N Main St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Church of St. John the Baptist",
            "lat": "40.807711",
            "lon": "-91.108899",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Church of St. John the Baptist</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.807711,-91.108899\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Church of Saint John the Baptist is a noteworthy example of late 19th century Gothic Revival ecclesiastical architecture. It stands as a symbol of the solidarity and longevity of the German Catholic community of Burlington. The church was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t712 Division St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mary Darwin House",
            "lat": "40.801698",
            "lon": "-91.114257",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mary Darwin House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.801698,-91.114257\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156mi.</span></div>\n\t\t</div>\n\n\t\t<p>From 1866 to 1886, this house was the residence of Mary Abigail Platt Darwin, a major figure in the women&#039;s suffrage movement of the late 19th century. It was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t537 Summer St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Diamond Jo Boat Store and Office",
            "lat": "42.493063",
            "lon": "-90.659139",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Diamond Jo Boat Store and Office</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.493063,-90.659139\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1885 and designed by Joseph Reynolds, the Diamond Jo Boat Store and Office building is the last remaining structure in Dubuque which can be directly linked to the steamboat era on the Mississippi River. This building is also significant because it served as the headquarters of Joseph Reynolds’ “Diamond Jo Packet Line” from the mid-1880s until the demise of the company in 1911. During the last quarter of the 19th century, the Diamond Jo Packet Line was one of the most active on the upper Mississippi. The Diamond Jo Boat Store was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5 Jones St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Snake Alley",
            "lat": "40.811935",
            "lon": "-91.105674",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-nhr-snakealley.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Snake Alley</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.811935,-91.105674\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156mi.</span></div>\n\t\t</div>\n\n\t\t<p>Snake Alley is a brick-paved street in a serpentine shape, built in 1894 by German immigrants. The brick was made locally and the curved limestone curbing was all hand-chiseled. The bricks were set at a slight uphill angle to allow better footing for horses. It was created as an experimental street design, that would make a more direct route between the business and shopping districts. It was named by Ripley&#039;s Believe It Or Not as &quot;The Crookedest Street in the World&quot;. This unique feature in downtown Burlington was added to the National Register of Historic Places in 1975.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t600 Washington St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://visitburlingtoniowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Phelps House Museum",
            "lat": "40.812016",
            "lon": "-91.105357",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Phelps House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.812016,-91.105357\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Phelps House was built in 1851 by William Garrett. The house was later remodeled and enlarged in 1870. The interior of the house holds artifacts from over 100 years of family life, like clothing, furniture, and a medical exhibit dedicated to workers of the First Presbyterian Church.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t521 Columbia St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://dmchs.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Des Moines County Heritage Center",
            "lat": "40.812222",
            "lon": "-91.103495",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-historumuseum-desmoinescountyheritagecenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines County Heritage Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.812222,-91.103495\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Des Moines County Heritage Center opened in 2009 in the former Burlington Public Library. Completed in 1898, the original Burlington Public Library building is a well-preserved structure of an eclectic style, showing Classical, Renaissance, and pre-Prairie School influences. Its unusual red color and prominent profile make it a visual landmark in Burlington. The building now houses the Des Moines County Historical Society&#039;s Heritage Center museum. It was added to the National Register of Historic Places in 1975. There are nine galleries in the Heritage Center, each one addressing a different aspect of county history. You&#039;ll find militaria from the American Civil War to the present and multiple bas-relief wall sculptures depicting Civil War battles. Catfish Corners is an interactive space for children in the museum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t501 N 4th St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.753.2449</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://dmchs.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First Congregational Church",
            "lat": "40.810649",
            "lon": "-91.103957",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-nhr-firstcongregationalchurchofburlington.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Congregational Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.810649,-91.103957\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First Congregational Church was built from 1867-1870, designed in the Gothic Revival style by C.A. Dunham. The church&#039;s pastor, William Salter, was a determined social activist a champion for the abolition of slavery, operating an underground railroad station in his home. The church was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t313 N 4th St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hedge Block",
            "lat": "40.810082",
            "lon": "-91.104103",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-nhr-hedgeblock.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hedge Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.810082,-91.104103\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Thomas Hedge, E.H. Carpenter, John M. Gregg, and Wesley Bonar joined together to build the Hedge Block in 1880 as an investment opportunity. The building housed the Naudain Brothers Dry Goods Store and the Perking Silverware, China, and Glass Shop; as well as law offices and the office of the District of Congress. The second and third floors were occupied by a business college until 1913. The building was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 Jefferson St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jagger-Churchill House",
            "lat": "40.815356",
            "lon": "-91.100033",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jagger-Churchill House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.815356,-91.100033\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1850, the Jagger-Churchill House is located on a bluff overlooking the Mississippi River. This 2 1/2 story house exhibits a combined influence of Gothic, Italianate, Queen Anne, and Eastlake styles of architecture. It was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 Spring St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Burlington and Missouri River Railroad: Burlington Passenger Station",
            "lat": "40.806028",
            "lon": "-91.105027",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Burlington and Missouri River Railroad: Burlington Passenger Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.806028,-91.105027\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Burlington and Missouri River Railroad Passenger Station, built in 1856, is an example of early railroad architecture, and is the oldest standing depot in the upper Midwest west of the Mississippi River. Railroad transportation played a major role in Burlington&#039;s development, making it more easily accessible and bringing new people and business to the town. The passenger station was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t237 S 4th St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Burlington, Cedar Rapids, and Northern Freight House",
            "lat": "40.814069",
            "lon": "-91.099163",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Burlington, Cedar Rapids, and Northern Freight House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.814069,-91.099163\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Burlington, Cedar Rapids, and Northern Freight House is one of the few remaining buildings from the transportation complex that once dominated the Burlington riverfront. Built in 1898, this is the only remaining physical evidence of this rail line the operated in Burlington from 1879 to 1903. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t710 N Front St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Des Moines County Courthouse",
            "lat": "40.812049",
            "lon": "-91.101174",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-nhr-desmoinescountycourthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Des Moines County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.812049,-91.101174\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Des Moines County Courthouse is one of ten county courthouses built in Iowa during the New Deal Era as part of the federal Public Works Administration and its successor agencies. It is an example of the PWA Moderne style of public building architecture developed during the 1930s and early 1940s, blending elements of Art Deco and Moderne styles. It was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t513 N Main St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Schramm Building",
            "lat": "40.810009",
            "lon": "-91.102066",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-nhr-schrammbuilding.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Schramm Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.810009,-91.102066\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Schramm Building was constructed in 1878 and is an excellent example of Late Victorian Gothic commercial design. Prevalent from the 1850s to the 1950s, the two-part commercial block emerged as a distinct type used for small and moderate-sized commercial buildings, with retail stores on the first floor and offices and storage space on the floors above. The Schramm Building was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t212 Jefferson St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Thomas Slye House",
            "lat": "42.191694",
            "lon": "-90.604510",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thomas Slye House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.191694,-90.604510\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Thomas Slye House was built in 1860 and is a good example of vernacular limestone architecture in Jackson County. It was added to the National Register of Historic Places in 1992. Depending on the time of year and the height of surrounding crops, the Thomas Slye House may not be visible from 184th Street - but may be visible from the Historic Limestone Insane Asylum.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t26099 184th St.<br />Andrew, IA 52030<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Capitol Theater",
            "lat": "40.809575",
            "lon": "-91.103001",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-nhr-capitoltheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Capitol Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.809575,-91.103001\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Capitol Theater is one of the best examples of Art Deco and Art Moderne design in Burlington. It is a textbook example of the application of these styles to movie theater design and is the only one locally or regionally that retains a high degree of structural integrity. It was designed by Roland &quot;Tip&quot; Harrison and was one of eight theaters designed for the Central States Theater Corporation between 1936 and 1939. It opened on July 1, 1937, with a showing of The Prince and The Pauper starring Errol Flynn. The Capitol Theater was added to the National Register of Historic Places in 1996.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t211 N 3rd St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.237.1099</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.burlingtoncapitoltheater.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Thole Barn",
            "lat": "42.272085",
            "lon": "-90.611705",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-barn-tholebarn-2.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thole Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.272085,-90.611705\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The bank barn was built with wooden pegs, limestone foundation and double cupolas.  Inside are triple grainery stalls.  Enthusiasts believe this barn is more than 100 years old.  The farm was originally owned by Earl and Archie Felderman, Dave McAndrew sold off the current 5 acre lot to Bruce and Sally Thole in 1980.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t24191 274th St.<br />LaMotte, IA 52054<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Historic Dubuque Historic Marker",
            "lat": "42.468790",
            "lon": "-90.648110",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/5fe0eb149ca266c7c98d.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Historic Dubuque Historic Marker</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.468790,-90.648110\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Historic Dubuque -- the Key City of Iowa -- formed a part of what became French Louisiana when Joliet and Marquette paddled by in 1673. Perrot taught the Miami Indians how to mine lead here in 1690. France ceded Louisiana west of the Mississippi to Spain in 1762, placing this area under Spain. Frenchmen mined lead here during the American Revolution. The Fox Indians granted Julien Dubuque the right to work the lead mines in 1788 and this right was confirmed by a Spanish Land Grant in 1796. Dubuque, the first permanent settler in Iowa, died in 1810. His tomb is on a bluff overlooking the Mississippi below Dubuque. Sturdy lead miners drew up the Miner’s Compact (the first code of laws in Iowa) on this site in 1830. Permanent white settlement began here in 1833 following the withdrawal of the Fox Indians. The first survey of the city limits was made that fall. Dubuque is a city of many firsts -- the first church and the first murder and public hanging (1834), the first newspaper and the first bank (1836). The town was incorporated in 1836. Dubuque, city and county, had 31,164 inhabitants in 1860.\r\n\r\nThis official State Historical Society of Iowa Historic Marker was installed in 1975.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMonument Dr.<br />Mines of Spain State Recreation Area<br />Dubuque, IA 52001\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Clasen Barn",
            "lat": "42.207349",
            "lon": "-90.605597",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-barn-clasenbarn-2.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clasen Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.207349,-90.605597\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This barn was built in 1948 by cattleman Leo Clancy, a charter member of Charolais Association, who raised cattle on this farm. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t25219 200th St.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Manufacturing and Wholesale Historic District",
            "lat": "40.807693",
            "lon": "-91.103395",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-nhr-manufacturingwholesaledistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Manufacturing and Wholesale Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.807693,-91.103395\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Manufacturing and Wholesale Historic District in Burlington illustrates the history of the city&#039;s industry and commerce. The first building in the district was a furniture manufacture and warehouse building that was constructed in 1876 and the district includes 32 buildings along North 3rd Street, Valley Street and Market Street. The district continued to develop over the next 50 years, with the majority of the structures built between 1900 and 1926. It was added to the National Register of Historic Places in 2012.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN 3rd St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hotel Burlington",
            "lat": "40.809229",
            "lon": "-91.102514",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-nhr-hotelburlington.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Burlington</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.809229,-91.102514\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hotel Burlington, completed in 1911, stands in the heart of the central business district located in the Hawkeye Creek Valley. It was the tallest building in town, and with its electric sign and new system of street lights it was visible from miles away. Burlington was a crossroads of transportation, with its proximity to railroad lines and the Mississippi River, and it its early years it served as a gateway to the West. The Hotel Burlington played an important role in providing lodging for those passing through, and temporary housing for those settling in the town. It was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 N 3rd St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dubuque Shot Tower",
            "lat": "42.500067",
            "lon": "-90.653986",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-shottower.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dubuque Shot Tower</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.500067,-90.653986\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dubuque Shot Tower is one of the last remaining shot towers in the United States and the only tower west of the Mississippi River. A shot towers were used to produce musket ammunition during the Civil War, however most primarily produced ammunition for hunting. The 120-foot tall Dubuque Shot Tower was built in 1856 by George W. Rogers in a rare Egyptian style using Galena dolomite stone and soft red brick. At its location near the Mississippi River, the tower can be seen from the river walk. The Dubuque Shot Tower was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE 4th St. Extension<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.589.4210</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofdubuque.org/shottower\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "DeEdwin and Gladys White House",
            "lat": "40.804590",
            "lon": "-91.104900",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a8803ad5c2428a1f1.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">DeEdwin and Gladys White House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.804590,-91.104900\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Gladys Downing White (1910-1989) and DeEdwin White (1910-1995) were married in Burlington in 1933. They moved to this home in 1957.\r\n\r\nEven though African Americans accounted for only 1% of the city&#039;s population, Burlington practiced open segregation in public pools and private entertainment venues. In 1937, Gladys White was expelled from the Avon Theater for refusing to relocate to the &quot;colored section.&quot; She lost the suit, but it was not the end of the Whites’ involvement in the fight for civil rights.\r\n\r\nIn 1948, the Whites were part of a committee established to conduct a community survey - the Burlington Self-Survey Committee. Over two years, more than 800 of Burlington&#039;s residents participated in the survey. The report of survey results helped civil rights activists to gain allies.\r\n\r\nAfter the Burlington Self-Survey, housing discrimination practices dramatically decreased. This development may have led to the Whites&#039; purchase of this home.\r\n\r\nThe Whites continued their activism in the local NAACP. DeEdwin White was appointed to the Iowa Civil Rights Commission and in 1972, became the first African American elected to Burlington City Council. \r\n\r\nIn 1997, the city renamed Maple Hills Park (one block south) the Edwin and Gladys White Memorial Park.\r\n\r\nThis home is also known as the Christian Blaesi House. Blaesi was a carpenter and may have constructed this home in the 1890s.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t409 S 4th St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Julien Dubuque Bridge",
            "lat": "42.491686",
            "lon": "-90.653052",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-bridge-nhr-juliendubuquebridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Julien Dubuque Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.491686,-90.653052\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Julien Dubuque Bridge was built in 1943, as a replacement for the long standing High Bridge. The bridge connects Iowa to Illinois, and provides access to Wisconsin. The Julien Dubuque Bridge was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDodge St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dubuque Star Brewery",
            "lat": "42.499350",
            "lon": "-90.654165",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-starbrewery.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dubuque Star Brewery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.499350,-90.654165\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dubuque Star Brewery is a visually dominant, five-story brick brew house located in the Port of Dubuque. Typical of other breweries built in its era, it is designed in Romanesque style. Iowa&#039;s oldest brewery was founded by the Rhomberg family in 1898. It was forced to close along with other breweries with the beginning of Prohibition and it reopened in 1933 with its repeal. It is one of just two Iowa breweries built in the pre-Prohibition era that survived Prohibition in the United States. It was Iowa’s only brewery from 1961 until 1985. The Dubuque Star Brewery was added to the National Register of Historic Places in 2007.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t600 Star Brewery Dr.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.583.6100</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.stonecliffwinery.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Julien Dubuque Monument",
            "lat": "42.468840",
            "lon": "-90.646422",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhr-juliendubuquemonument.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Julien Dubuque Monument</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.468840,-90.646422\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Julien Dubuque Monument is dedicated to the life of the founder of the Dubuque area, Julien Dubuque. Julien founded the city in 1796 after receiving a land grant from the Spaniards that owned the area. Dubuque&#039;s resting place and memorial lie on a cliff facing the Mississippi River at the Julien Dubuque Monument at the Mines of Spain Park. The Julien Dubuque Monument was added to the National Register of Historic Places in 1988.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t8991 Bellevue Heights<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.556.0620</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.minesofspain.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Port of Burlington Welcome Center",
            "lat": "40.810612",
            "lon": "-91.099342",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-historymuseum-portofburlington.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Port of Burlington Welcome Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.810612,-91.099342\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Port of Burlington was dedicated in October 1928 as Burlington&#039;s Municipal River Terminal. At this terminal, barges were loaded with coal by conveyor belts. The building was set to be razed, but an adaptive re-use plan was devised. The condemned building was repurposed to be the Welcome Center and opened in 1988 as a hub for tourists and sightseers. This building features a scenic plaza with a beautiful view of the Mississippi River, and a large stage for events</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 N Front St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.752.8731</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://visitburlingtoniowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Campbell Barn",
            "lat": "41.825045",
            "lon": "-90.615789",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Campbell Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.825045,-90.615789\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Campbell barn was built in the early 1900s. Earl Campbell purchased the site in 1952 and with friends used a dragline and dynamite to dig out adjoining feed lot and a large basement. Each summer Earl and neighbors bought a load of sheep from the west. The western sheep were not familiar with corn and were turned loose in early fall to eat the foxtail and lower corn leaves prior to corn harvest. This helped farmers because there was little &quot;trash&quot; to plug the corn picker. A fourth generation of Campbell&#039;s are farming the land. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2457 Hwy. 30<br />DeWitt, IA 52742<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chicago, Burlington and Quincy Railroad: Burlington Station",
            "lat": "40.805742",
            "lon": "-91.101748",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-nhr-chicagoburlingtonquincystation.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago, Burlington and Quincy Railroad: Burlington Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.805742,-91.101748\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chicago, Burlington, and Quincy Station was built in 1944 and is one of the few known buildings in Iowa designed by the prominent Chicago architectural firm Holabird and Root. Railroad travel had a major influence on Burlington&#039;s development, bringing business and new residents to the city. The station is still in use as the Burlington Amtrak station. It was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 S Main St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Nathaniel Butterworth House",
            "lat": "42.163005",
            "lon": "-90.597785",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nathaniel Butterworth House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.163005,-90.597785\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Butterworth House is one of the outstanding limestone residences in Jackson County. It was built by Nathaniel Butterworth in 1852. He had arrived in Jackson County in 1837, and became the postmaster of the town of Andrew and a prominent businessman. His house served as a stagecoach stop and inn during its early years. The territorial road from Dubuque to Davenport ran through the Butterworth farm. Iowa’s first governor, Ansel Briggs, was a frequent guest when he was the stage driver, and from 1866-1871 he resided at the Butterworth Inn. The Nathaniel Butterworth House was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t14929 Ansel Briggs Hwy.<br />Andrew, IA 52030<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "James M. Forney House",
            "lat": "40.800645",
            "lon": "-91.103683",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James M. Forney House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.800645,-91.103683\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The James M. Forney House was constructed in 1864 of red brick in the Gothic Revival and Italianate styles. The house, carriage house, patterned brick walkways, and general landscape are very well preserved. The house itself is believed to be the only extant domestic example of its type in Burlington. It was added to the National Historic Register in 1976.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 Cedar St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-historic-landmarks.png",
            "title": "Mines of Spain State Recreation Area and E.B. Lyons Interpretive and Nature Center",
            "lat": "42.462370",
            "lon": "-90.638634",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhl-minesofspain.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-historic-landmarks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mines of Spain State Recreation Area and E.B. Lyons Interpretive and Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.462370,-90.638634\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mines of Spain Recreation Area and E. B. Lyons Interpretive and Nature Center are located on 1380 acres of beautiful wooded and prairie land just south of Dubuque, IA. The area has been designated as a National Historic Landmark and includes Julien Dubuque&#039;s Monument at a point just above where Catfish Creek meets the Mississippi. One of Iowa&#039;s &quot;Watchable Wildlife Areas,&quot; it features the E.B. Lyons Interpretive Center which serves as the Visitor Center and the Park Office. Come see the Horseshoe Bluff Interpretive Trail, the 15 acre wetland, creeks, forest, prairies, cropland, meadows and the Mississippi River from a bald eagle&#039;s view. Picnic with us, go for a hike or cross country ski on one of our many trails and maybe you will capture a glimpse of a song bird, bobcat, red-shouldered hawk, flying squirrel, white-tailed deer, wild turkey or various butterflies along the Mississippi River Bluffland.\r\n\r\nMetalsmith Joe Muench will be working at Mines of Spain State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t8991 Bellevue Heights<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.556.0620</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/ParkDetails/parkid/9\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jackson County Jail",
            "lat": "42.153545",
            "lon": "-90.591770",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jackson County Jail</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.153545,-90.591770\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building, which served as the county jail from 1871 to 1879, is the town of Andrew’s only reminder of the community’s history as Jackson County’s County seat. The Jackson County Jail was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t98 E Emmett St.<br />Andrew, IA 52030<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Veterans Memorial Plaza",
            "lat": "42.514002",
            "lon": "-90.650618",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Veterans Memorial Plaza</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.514002,-90.650618\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Veterans Memorial Plaza recognizes all wars the United States has been in since 1775 and lists 11 Medal of Honor veterans that are buried in Dubuque.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1801 Admiral Sheehy Dr.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.583.6318</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.vetsmemorialplaza.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "iowa-governor-gravesites.png",
            "title": "Gov. Ansel Briggs Gravesite",
            "lat": "42.151940",
            "lon": "-90.589530",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-govgravesite-anselbriggs.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/iowa-governor-gravesites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gov. Ansel Briggs Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.151940,-90.589530\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Vermont native Ansel Briggs (February 3, 1806 – May 5, 1881) was the first Governor of Iowa, serving from 1846 to 1850. Early in life he established successful careers as a mail carrier and stagecoach driver. He first entered politics in 1842, serving in the Iowa Territorial House of Representatives, a position he held until he was elected governor in 1846. During his term as governor, the formation of the state government was initiated, a state school system was organized, and the Missouri-Iowa boundary dispute was resolved in 1848. Governor Ansel Briggs was buried in Omaha, Nebraska where he died on May 5, 1881 and was later re-interred at the Andrew Cemetery in Andrew, Iowa.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE Madison St.<br />Andrew Cemetery<br />Andrew, IA 52230<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Mathias Ham House Historic Site",
            "lat": "42.531382",
            "lon": "-90.650607",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mathias Ham House Historic Site</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.531382,-90.650607\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 1856 Italianate mansion was the home of entrepreneur Mathias Ham, one of Dubuque&#039;s earliest lead mining entrepreneurs. Living history demonstrators and interpreters share the rich history of Mathias Ham and lead mining in Dubuque. Venture the grounds to explore the one-room Humke Schoolhouse, an original 1833 log cabin, a windlass, a miner&#039;s &quot;badger hole&quot; and a new lead mine structure. The home was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2241 Lincoln Ave.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.557.9545</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.rivermuseum.com/features_historicsites.cfm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Donahue Barn",
            "lat": "41.833454",
            "lon": "-90.600322",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Donahue Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.833454,-90.600322\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">157mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Donahue Barn is a well-kept barn off Highway 30 between Dewitt and Grand Mound. The barn has glass bowl fire extinguishers and was named for maple grove that surrounded log cabin before barn was built.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2538 238th St.<br />DeWitt, IA 52742<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Starker-Leopold Historic District",
            "lat": "40.794931",
            "lon": "-91.096509",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-nhr-starkerleopoldhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Starker-Leopold Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.794931,-91.096509\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">157mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Starker-Leopold Historic District is composed of a group of three houses (101 and 111 Clay St., 110 Grand St.) and their surrounding grounds. The Charles Starker House was built from 1868 to 1874. Charles Starker was a German immigrant who was educated in engineering and architecture. Starker&#039;s daughter Clara married Carl Leopold, and the Leopold House was built nearby in 1893. The district was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 Clay St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Iowa-Minnesota State Boundary Marker",
            "lat": "43.500862",
            "lon": "-91.284662",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa-Minnesota State Boundary Marker</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.500862,-91.284662\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">157.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Placed in 1849; 600-pound cast-iron post; marked &quot;Minnesota&quot; on the north, &quot;Iowa&quot; on the south, and &quot;1849&quot; and &quot;43-30&quot; (latitude) on the sides. For many years, the border between Iowa and Minnesota was hotly disputed. Iowans urged the government to use the Minnesota River as the dividing line, giving Iowa a good portion of what is now southern Minnesota. Minnesotans wanted to use the 42nd parallel as the border, giving them the city of Dubuque and northern Iowa. In 1849, Captain Thomas J. Lee settled the matter by establishing the border at 43 degrees and 30 minutes north latitude. To solidify his mark, Lee purchased a cast-iron monument on October 19, 1849, and had it installed on the border. The Iron Post, located near New Albin, is the only original marker remaining on the northern boundary line of the State of Iowa. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t655 Main St.<br />New Albin, IA 52160<br />Allamakee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Crystal Lake Cave",
            "lat": "42.433827",
            "lon": "-90.621121",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Crystal Lake Cave</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.433827,-90.621121\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">157.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Discovered by lead miners in 1868, the Crystal Lake Cave is filled with amazing natural geological wonders and gemstones. In 1932 the caves were opened to the public for exploration. Today, Crystal Lake Cave is considered to be the longest &quot;living&quot; show cavern in the state.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6684 Crystal Lake Cave Rd.<br />Dubuque, IA 52003<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.556.6451</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://crystallakecave.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Cascade Bridge",
            "lat": "40.781889",
            "lon": "-91.098631",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-nhr-cascadebridge.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cascade Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.781889,-91.098631\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">157.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cascade Bridge is on S. Main Street in Burlington, over Cascade Ravine. It was built in 1896. Boynton and Warriner of Cedar Rapids designed the bridge and Milwaukee Bridge and Iron Works served as the contractor for its construction. This is one of Iowa&#039;s most significant and unusual urban bridges and it retains a high degree of structural and historical integrity. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Main St.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Crapo Park and Arboretum Historic District",
            "lat": "40.776676",
            "lon": "-91.102545",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-nhr-crapoparkhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Crapo Park and Arboretum Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.776676,-91.102545\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">157.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The site of Crapo Park was discovered by Lt. Zebulon Pike during his 1805 expedition to explore the Mississippi River to its source. It was here that Pike raised the U.S. flag for the first time on what is now Iowa soil. Philip Crapo led a successful funding campaign in 1896 to create the park itself. It was among the earliest designed arboretums in the Upper Mississippi River Valley. The park has the first equestrian statue in Iowa and a coliseum large enough for 10,000 people. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Main Dr.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Hawkeye Log Cabin",
            "lat": "40.775656",
            "lon": "-91.102177",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hawkeye Log Cabin</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.775656,-91.102177\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">157.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hawkeye Log Cabin was built in 1910 by the Hawkeye Club. The Hawkeye Club was a collection of Iowans that had lived in the state for over 50 years. The cabin is used today as a museum depicting life as it was for early frontier settlers.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Main Dr.<br />Crapo Park<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.752.7449</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://dmchs.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Hickory Grove No. 3 School",
            "lat": "40.452374",
            "lon": "-91.444151",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-historicschool-hickorygroveschoolcemetery.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hickory Grove No. 3 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.452374,-91.444151\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">157.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>In use from the 1870s through the 1940s, the Hickory Grove No. 3 School has been maintained as a museum for local school groups and visitors. Tours are available by appointment only.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t243rd Ave.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Joseph S. McHarg House",
            "lat": "41.490616",
            "lon": "-90.660406",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-josephsmcharghouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Joseph S. McHarg House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.490616,-90.660406\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">158.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This example of mid-19th century rural architecture is now located within the Davenport city limits due to the city&#039;s expansion. The house features both Greek Revival and Italianate design elements. It was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5905 Chapel Hill Rd.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Galland School",
            "lat": "40.491534",
            "lon": "-91.376980",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-historicschool-gallandschool.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Galland School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.491534,-91.376980\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">158.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>In use during the 1830s, the Galland School is considered to be the first schoolhouse in Iowa. The original site of the school was flooded was submerged by the Mississippi when the Keokuk Lock and Dam was built in 1913. The school is a reproduction and is maintained as a history museum for local school groups and visitors. Tours of the school are available by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3160 Mississippi River Rd.<br />Montrose, IA 52639<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.463.7673</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John Schricker House",
            "lat": "41.489402",
            "lon": "-90.652495",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-johncschrickerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Schricker House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.489402,-90.652495\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">158.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John Schricker House is a Villa-style residence on a hilltop, a common type of property in Davenport’s architectural history. This phenomenon occurred principally in the 1870’s and 1880’s, when Italian styles were most popular, and when more than a few adventurous businessmen had at last realized their fortunes. This house was built in 1909-10 for John C. Schricker and was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5418 Chapel Hill Rd.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "John Lucken Barn",
            "lat": "42.806657",
            "lon": "-96.566477",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-barn-johnluckenbarn.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Lucken Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.806657,-96.566477\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">158.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John Lucken Barn was built in 1954.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t17108 Bluebird Ave.<br />Akron, IA 51001<br />Plymouth County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Akron Opera House",
            "lat": "42.828835",
            "lon": "-96.559737",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/plymouth-theater-akronoperahouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Akron Opera House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.828835,-96.559737\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">158.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Akron Opera House, which opened in 1906, is a focal point in downtown Akron. Soaring 48 feet into the air, it is the tallest building in town. Upon opening, the Akron Opera House was the center of cultural activity in town. Many opera houses featured traveling troupes of musicians and actors, who rode the railway trunk lines on their way to performances in San Francisco, Denver, Minneapolis, Chicago, Omaha and other large cities. Small towns along the way offered a source of revenue, and opera houses were built to bring culture to these communities. Akron was one of the small, rural communities located on the Pembina-Sioux Railroad, which ran between Pembina, North Dakota, and Sioux City, Iowa. Store fronts on the first floor have nearly always been used for commercial space, and since 1974 the Akron Opera House has owned it and presented dozens of plays and musicals there. The Akron Opera House was added to the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t141 Reed<br />Akron, IA 51001<br />Plymouth County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://akronoperahouse.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Alexander Brownlie House",
            "lat": "41.700774",
            "lon": "-90.584882",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alexander Brownlie House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.700774,-90.584882\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Brownlie House is an interesting example of rural architecture as it developed over time. Originally built in 1839 by Alexander Brownlie, and altered in 1846, the house has a simple, functional structure made of local materials put to an unusual use. The significance of this house is the several construction methods and materials used over a 60-year period. The three sections demonstrate historical changes in local building materials: in 1839, manufactured bricks were scarce in Iowa, if not nonexistent, so locally-obtainable sod and clay was used. The first addition occurred around 1846, when manufactured bricks were more readily available, and a big improvement over making sod bricks by hand. The last addition occurred around 1890 and used sawed lumber which by then, was a common, relatively inexpensive and simple-to-use building material. The Brownlie House was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 Pine St.<br />Long Grove, IA 52756<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Davenport Crematorium and Fairmount Cemetery",
            "lat": "41.509496",
            "lon": "-90.634527",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-davenportcrematoriumandfairmountcemetery.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Davenport Crematorium and Fairmount Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.509496,-90.634527\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Completed in 1890, and still in use today, the Davenport Crematorium was built by F.G. Claussen and not only has the distinction of being the first crematorium in the state of Iowa, but also only the thirteenth established in the United States. It is the ninth oldest establishment of its type still in existence today, and was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3902 Rockingham Rd.<br />Davenport, IA 52802<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.322.8663</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Westphal-Schmidt House",
            "lat": "41.515082",
            "lon": "-90.630788",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-westphalschmidthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Westphal-Schmidt House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.515082,-90.630788\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This brick house is believed to have originally been used as part of a wine-making operation. Although modified somewhat, this structure remains an interesting example of early brick and stone construction in Davenport. This is one of only two surviving summer houses built in this area, and it was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t432 S Fairmount St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles M. and Emma M. Fleshman House",
            "lat": "42.995813",
            "lon": "-96.481227",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-nhr-charlesmandemmamfleshmanhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles M. and Emma M. Fleshman House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.995813,-96.481227\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fleshman House is an unusually well-preserved and well-executed example of the influence of Greek Revival, Italianate, vernacular and Queen Anne architectural styles. Charles M. Fleshman was a leading merchant in Hawarden from his arrival in the mid-1880s until his death in 1926. The Fleshman House was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t919 9th St.<br />Hawarden, IA 51023<br />Sioux County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Old School House No.9",
            "lat": "41.536618",
            "lon": "-90.618295",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-historicschool-oldschoolhouse9.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old School House No.9</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.536618,-90.618295\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Old School House No.9 has been maintained as a museum at the Mississippi Valley Fairgrounds. The schoolhouse is open for tours during fair season.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2815 W Locust St.<br />Davenport, IA 52804<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Hawarden City Hall, Fire Station and Auditorium",
            "lat": "42.994231",
            "lon": "-96.485510",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-nhr-hawardencityhallfirestationandauditorium.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hawarden City Hall, Fire Station and Auditorium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.994231,-96.485510\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hawarden City Hall, Fire Station and Auditorium building was built in 1918 and formally opened on February 27, 1919. Designed by Sioux City architect, William L. Steele, the project was one of the finest civic improvements in the city between 1910 and 1920. The building housed the city hall, fire department, jail, and community room, and became a center for community activities. It was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t715 Central Ave.<br />Hawarden, IA 51023<br />Sioux County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Thomas C. Wilkinson House",
            "lat": "41.520678",
            "lon": "-90.619652",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thomas C. Wilkinson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.520678,-90.619652\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 1860 Italian Villa style home is one of a limited number of gabled Villa-style houses in the Davenport area. Noteworthy features include fine windows, porch roof cresting, porch millwork, and large round windows in the basement which appear to be original. Also, the “public” front is covered with matched, beveled siding, as though to suggest ashlar construction, while the rest of the house is clad in the more common narrow clapboarding. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t117 McManus St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John Littig House",
            "lat": "41.583116",
            "lon": "-90.597645",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-johnlittighouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Littig House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.583116,-90.597645\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John Littig House features the Gothic Revival style that was extensively used in 19th-century church architecture, but not commonly used for dwellings. It was built around 1887 and added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6035 Northwest Blvd.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Robb House and Spring House",
            "lat": "42.281074",
            "lon": "-90.542430",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Robb House and Spring House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.281074,-90.542430\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Robb House and Spring House are good examples of vernacular limestone architecture from around 1855, and are representative of the most common plan used for stone houses in Jackson County. The Robb House and Spring House were added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t30602 Mill Creek Rd.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Sioux County",
            "lat": "43.001189",
            "lon": "-96.487668",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-monument-hawardenfreedomrock-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Sioux County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.001189,-96.487668\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sioux County Freedom Rock® in Hawarden honors modern-era veterans and branches from World War II, Korea, Vietnam, Gulf and wars in the Middle East. The ashes of a World War II veteran and Vietnam veteran are mixed in some of the paint in the artwork. The other side depicts a prison wall with a Prisoner of War looking out through the prison bars. He is looking down at a ribbon that he&#039;s holding that reads &quot;Not Forgotten&quot;. The Sioux County (Hawarden) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1301 Avenue E<br />Hawarden, IA 51032<br />Sioux County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Kaufman Barn",
            "lat": "42.385576",
            "lon": "-90.558471",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kaufman Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.385576,-90.558471\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 30 x 80 foot bank barn is an early Iowa barn. The barn features long beam wood construction and has a table roof. Many original elements remain, including the rolling doors, milk stanchions, and horse stalls.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6206 Streff Rd.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "McManus House",
            "lat": "41.524083",
            "lon": "-90.613606",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-mcmanushouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McManus House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.524083,-90.613606\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house is an excellent example of the blending of Greek Revival and Italianate styles in early Davenport residential architecture. The house was built around 1855 and the veranda was added 40 or 50 years later. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2320 Telegraph Rd.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Alvord I. Smith House",
            "lat": "41.522446",
            "lon": "-90.613844",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-alvordsmithhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alvord I. Smith House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522446,-90.613844\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built about 1868 and was home to Alvord I. Smith, a farmer who later became a general agent for the Charter Oak Life Insurance Company. Smith resided in the home for six years and then removed to Crawford County and once again took up farming. The house was purchased by prominent Davenport resident, Hermann H. Steffen about 1880. Steffen, a native of Germany, first arrived in Davenport on December 3, 1855 and secured work on a steamboat. He was a member of Company B, 10th Iowa Infantry during the Civil War and marched with Sherman to the sea. At the close of the war he returned to Davenport and operated a café on Brady Street for 13 years, after which he became proprietor of the St. Louis Hotel for four years. The house is one of a number of mid-19th Century houses in Davenport built in a simplified Italianate and Greek Revival style. It has a boxy, nearly square plan, a shallow hipped roof with wide eaves, and cast iron lintels shaped as shallow triangular pediments. The Alvord I. Smith House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2318 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Alden Bryan House",
            "lat": "41.522507",
            "lon": "-90.612467",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-aldenbryanhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alden Bryan House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522507,-90.612467\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built starting in 1875, the Alden Bryan House is one of the better-preserved wood frame homes of the “McClelland” or “German” house type found throughout older sections of Davenport. It is rare to find a house of this style with its original clapboards, window detail, and porch posts and brackets. Alden P. Bryan, who is assumed to have built the house, worked for the Chicago, Rock Island and Pacific Railroad as well as intermittently as a farmer. The Alden Bryan House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2236 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "August F. Martzahn House",
            "lat": "41.522072",
            "lon": "-90.613350",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-augustmartzahnhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">August F. Martzahn House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522072,-90.613350\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160mi.</span></div>\n\t\t</div>\n\n\t\t<p>The August Martzahn House was constructed in 1911 for August F. Martzahn, president and manager of Davenport Slaughter and Rendering Company. At that time, Davenport Slaughter and Rendering was the oldest company of its kind in the city and one of the largest firms in eastern Iowa. The home is one of several houses in the Davenport area that combines a Neo-Georgian Revival design with Craftsman/Prairie style elements. This architecture reflects the variety of stylistic influences present in pre-World War I Davenport homes and how the popular tradition of combining elements from several styles continued to thrive into the 20th Century. The August Martzahn House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2303 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Calliope Village",
            "lat": "43.007417",
            "lon": "-96.488132",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/sioux-historymuseum-calliopevillage.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Calliope Village</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.007417,-96.488132\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160mi.</span></div>\n\t\t</div>\n\n\t\t<p>Calliope Village is a museum dedicated to the small province of Calliope. In 1869, Calliope consisted of a courthouse, three log homes and about 10 residents. The infant town was driven back to the safety of Sioux City by Native Americans. In 1871, a few rugged individuals who were willing to brave the wilderness returned to the settlement to find the original courthouse standing. By 1872 Moses Lewis bought out the remaining initial investors and used the office to issue fraudulent bonds. It wasn’t until 1874 that the settlement of Calliope was actually home to the earliest settlers. Progress came with a hotel, cabins and finally viability was enhanced greatly by the formation of a stage coach line to transport people to and from Sioux City. Calliope was briefly the county seat, until a battle ensued with Hawarden. Hawarden became the county seat, and Calliope faded in to history. The Calliope Village gives people an opportunity to step back into the 19th Century settlement.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t19th St. and IA Hwy. 10<br />Hawarden, IA 51023<br />Sioux County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.551.2403</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First Bible Missionary Church",
            "lat": "41.523633",
            "lon": "-90.611286",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-firstbiblemissionarychurch.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Bible Missionary Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.523633,-90.611286\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1902, this building is associated with a small protestant congregation in the community. Berea Congregational Church was organized in 1909 as the result of the merger of two other congregational churches – German Congregational Church and Bethlehem Congregational Mission. Berea remained a small west end, neighborhood church. It was renamed First Bible Missionary Church in the mid-20th century. The church was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2202 W 4th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Gustov C. Lerch House",
            "lat": "41.523557",
            "lon": "-90.612508",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-gustovlerchhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gustov C. Lerch House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.523557,-90.612508\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1904-05, this house was originally owned and occupied by Gustov C. Lerch and his wife, Mamie. Lerch was employed as Clerk of the District Court office and later worked as bookkeeper for the A.J. Lerch Company, hardware dealers. This site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2222 W 4th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Severin Miller House",
            "lat": "41.525848",
            "lon": "-90.610979",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-severinmillerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Severin Miller House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.525848,-90.610979\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Severin Miller House and Barn are relics remaining from Davenport’s settlement period. The house and barn are characterized by the use of local materials, simple form, and interesting construction details. The inspiration for the house design may have been influenced by styles from Miller’s native Prussia. Miller was a prominent metal worker and foundry operator in Davenport from the 1850s through 1875. This site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2200 Telegraph Rd.<br />Davenport, IA 52804<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John Lippincott House",
            "lat": "41.522455",
            "lon": "-90.609994",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-johnlippincotthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Lippincott House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522455,-90.609994\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John Lippincott House was built in 1870, after the conclusion of the Civil War. Lippincott was not formally employed but rather listed his occupation as “capitalist”. The house itself is one of the plainest examples of an important local house form. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2122 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ranzow-Sander House",
            "lat": "41.522473",
            "lon": "-90.610255",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-ranzowsanderhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ranzow-Sander House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522473,-90.610255\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This is a well-kept local example of small-scale housing in the Eastlake style. C.F. Ranzow built this house in 1881, several years after erecting the C.F. Ranzow Building downtown. Ranzow operated a paint store under the name “C.F. Ranzow and Son.” Julius Sander bought the house in 1885; Sander was employed in the hardware trade and established his own store in 1890. The house was added to National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2128 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Richard Benton House",
            "lat": "41.522461",
            "lon": "-90.611544",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-richardbentonhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Richard Benton House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522461,-90.611544\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1855 in the Greek Revival and Italianate styles, this was the home of Richard Benton. Benton owned a local livery and stable which he operated on his own until his son, Charles, joined him as a partner. The house was added to the National Historic Register in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2204 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rudolph Sitz Building",
            "lat": "41.522429",
            "lon": "-90.611265",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-rudolphsitzbuilding.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rudolph Sitz Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522429,-90.611265\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building is one of Davenport’s few examples of the early 20th-century Mission Revival style of commercial architecture. Rudolph H. Sitz opened a grocery store in this building in 1913. This site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2202 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Schroeder Brothers Meat Market",
            "lat": "41.522426",
            "lon": "-90.610938",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-schroederbrothersmeatmarket.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Schroeder Brothers Meat Market</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522426,-90.610938\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Schroeder Meat Market is a charming and unusual commercial block that retains a high degree of integrity. It was probably built around 1905 for Henry and John Schroeder to house the “Schroeder Bros. Meatmarket.” The building was added to the National Historic Register in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2146 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Buchanan School",
            "lat": "41.525906",
            "lon": "-90.608876",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-buchananschool.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buchanan School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.525906,-90.608876\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Buchanan School, designed by Davenport architects Clausen &amp; Burrows, was built in 1903-1904, at a time when Davenport’s local public school system was expanding. In 1919, when Davenport schools were reorganized into elementary (grades 1-6), junior high (grades 7-9) and high schools (grades 10-12), Buchanan was used as an elementary school serving west end neighborhoods. The school closed in 1940 and was empty until 1951. From 1951 to 1978, it was used as a U.S. Naval Training Center. Since then, it has been used as storage for an auto parts business and fallen in to disrepair. Buchanan School was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2104 W 6th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "F. Jacob Schmidt House",
            "lat": "41.524265",
            "lon": "-90.610864",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-jacobschmidthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">F. Jacob Schmidt House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.524265,-90.610864\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Schmidt House is a well-preserved Queen Anne cottage that appears to have been ordered right out of a Victorian pattern book. It has a very nice Eastlake veranda and attractive sunburst designs in the main gable end, and takes full advantage of its corner location. F. Jacob Schmidt probably built this house around 1892. Schmidt was a cooper at the time, but little else is known about him. This house was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2143 W 5th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Clarissa Cook House",
            "lat": "41.520953",
            "lon": "-90.610058",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-clarissacookhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clarissa Cook House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.520953,-90.610058\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1855, this well-preserved house is a very good example of Davenport’s early residential architecture, built in the locally rare saltbox form. Prior to 1871, this property was owned by Clarissa C. Cook and her husband. The original Cook family estate was located in the west end. This house was added to National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2123 W 2nd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Samuel Hoffman Jr. House",
            "lat": "41.522459",
            "lon": "-90.609606",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-samuelhoffmanhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Samuel Hoffman Jr. House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522459,-90.609606\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built by Samuel Hoffman, Jr. in 1888 in the west end German-American neighborhood, the house remains an excellent example of Stick Style/Eastlake influence on popular architecture in Davenport. Hoffman worked as a bookkeeper for the German Savings Bank, the predecessor of the American Commercial and Savings Bank. The house was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2108 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Clarissa Cook Home for the Friendless",
            "lat": "41.519614",
            "lon": "-90.610435",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-clarissacookhomeforfriendless.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clarissa Cook Home for the Friendless</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.519614,-90.610435\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clarissa Cook Home for the Friendless opened in 1882. It is named for Clarissa Cook who was born in New York in 1811 and married Ebenezer Cook in 1833. Ebenezer was an attorney and the mayor of Davenport from 1858-1859. Upon her death in 1879, Clarissa willed funds to build a housing facility for &quot;destitute and indigent&quot; women aged 60 years and older. As time went on, the house served a more general purpose of housing elderly woman regardless of their economic situation. The home was later changed to the Clarissa C. Cook Home and in 2012, it was announced that the home would close. In 2013, the home was donated to the Evangelical Lutheran Good Samaritan Society and in 2015, it reopened as the Cook Legacy Village, a retirement community with nine remodeled apartments with historical features and modern amenities blended together. The Clarissa Cook Home for the Friendless was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2223 W 1st St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "DeWitt Opera House Theatre (Majestic Theater)",
            "lat": "41.822976",
            "lon": "-90.538771",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">DeWitt Opera House Theatre (Majestic Theater)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.822976,-90.538771\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Majestic Theater opened in 1874 as the DeWitt Opera House. The building operated as an opera house until it was remodeled into a movie theater in 1926. The theater changed its name to the Majestic Theater in 1935 and continues to operate today. The theater closed briefly in the 1960&#039;s but was sold to the DeWitt Theater Company and in 1978 the DeWitt Area Restoration of the Theater Committee formed to renovate and reopen the theater. The Majestic Theater reopened in 1982 in its current location and building.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t712 6th Ave.<br />De Witt, IA 52742<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.659.8213</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.dewitt-operahouse.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Central Community Historical Society Museum",
            "lat": "41.822022",
            "lon": "-90.538804",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Central Community Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.822022,-90.538804\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Established in 1977, the goals of the Central Community Historical Society are to promote an interest in the history of Clinton County, especially the history of the Dewitt area, and to preserve that history for future generations through the museum. The museum holds exhibits covering tools of the Sauk and Meskwaki Native American tribes to military history from the American Civil War to the present, including a diary of a Civil War soldier. They also have an extensive genealogy catalog index and research area.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t628 6th Ave.<br />De Witt, IA 52742<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.659.3686</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.centralcommhistsoc-museum.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry Pahl House",
            "lat": "41.522533",
            "lon": "-90.606913",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-henrypahlhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry Pahl House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522533,-90.606913\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house is a good example of local 19th century Davenport residential architecture. Its simple style retians the original features, including the gable-end oculus, molded window heads, and the double-leaf door with recessed, round arched panels. The house was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1946 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lambert Tevoet House",
            "lat": "41.521011",
            "lon": "-90.607899",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-lamberttevoethouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lambert Tevoet House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.521011,-90.607899\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house is an excellent example of Davenport’s most distinctive 19th-century middle-class house style. This basic form was popularized by T.W. McClelland, and appears throughout the area in many variations. The Lambert Tevoet House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2017 W 2nd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Melan Bridge",
            "lat": "43.432607",
            "lon": "-96.154325",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lyon-nhr-bridge-melanbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Melan Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.432607,-96.154325\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1894, the Melan Arch Bridge marks the first experiment in using the innovative concrete-steel system developed by Austrian Josef Melan. At the urging of a Midwestern contractor, Frederick von Emperger, Melan&#039;s representative in America, designed a 30 foot concrete arch reinforced with structural steel to span a seasonal stream outside of Rock Rapids. Von Emperger went on to design several more arches in the United States, all with dimensions more impressive than this first modest venture. However, the Rock Rapids bridge remains his most significant work, and the Melan system he introduced there, was adopted widely during the first part of the 20th Century for highway bridges and pedestrian spans. The Melan Bridge was built in 1894 and relocated to Emma Sater Park in 1964. While visible from Iowa Highway 9, it is best accesed from First Avenue East. The Melan Bridge was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA Hwy. 9<br />Emma Sater Park<br />Rock Rapids, IA 51246<br />Lyon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Putnam Museum &amp; Giant Screen Theater",
            "lat": "41.530947",
            "lon": "-90.601751",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-historymuseum-putnammuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Putnam Museum &amp; Giant Screen Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530947,-90.601751\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Putnam Museum features several permanet natural history exhibits, including exhibits on the ocean, mammals, and Egyptian history. The musuem also includes a Giant Screen movie theater, for an immersive experience in natural history.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1717 W 12th St.<br />Davenport, IA 52804<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.435.3701</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.putnam.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Gehlen House and Barn",
            "lat": "42.360681",
            "lon": "-90.539886",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-barn-gehlenbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gehlen House and Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.360681,-90.539886\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Gehlen Barn is one of the oldest barns in Iowa and one of few stone agricultural structures in the state. The barn was built by Peter Gehlen, who came to the area in 1846 and built a flour mill in 1848. He owned the property where the barn sits from 1857 to 1870 and built the barn and home during that time period. During the 1850s, immigrants from Luxembourg flowed into St. Donatus. When they prospered in their new home, they built houses from readily accessible local stone. Gehlen’s large barn likely functioned as a community center for the village. The Gehlen House and Barn was added to the National Register of Historic Places in 1979.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 N Main St.<br />Saint Donatus, IA 52071<br />Jackson County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dr. Kuno Struck House",
            "lat": "41.530857",
            "lon": "-90.600457",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-drkunostruckhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dr. Kuno Struck House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530857,-90.600457\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kuno Struck house is one of Davenport’s few examples of large-scale local architecture of the early 20th century. In the Jacobean Revival style, the Struck house presents a formality and massiveness characteristic of late Tudor country houses. The Struck house incorporates features such as parapet gables, tall narrow windows beneath label moldings, and a full-height projecting window bay of stone. This site was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1645 W 12th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Marie Clare Dessaint House",
            "lat": "41.569757",
            "lon": "-90.587374",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-marieclaredessainthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marie Clare Dessaint House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.569757,-90.587374\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built between 1865-70, the Marie Clare Dessaint House is an outstanding example of the Italian Villa style and perhaps the finest of its kind within the city of Davenport. Its owner, Marie Clare Dessaint, was a member of the Dessaint lumber milling family. The house was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4808 Northwest Blvd.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Max Petersen House",
            "lat": "41.530803",
            "lon": "-90.599295",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-maxpetersenhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Max Petersen House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530803,-90.599295\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1888, the Petersen house is a great example of a monumental residence in the Queen Anne style. Like many of the brick houses in this style, it is somber and dignified, rather than playful or exuberant. The house was designed by F.G. Clausen, a Davenport architect, for Max Petersen. Max was the eldest son of J.H.C. Petersen, owner of J.H.C. Petersen and Son’s department store. The house was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1607 W 12th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Zoeller Brothers-Independent Malting Company",
            "lat": "41.522114",
            "lon": "-90.603311",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-zoellerbrothers-independentmaltingcompany.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Zoeller Brothers-Independent Malting Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522114,-90.603311\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Ernest Jr., Herman, and Charles Zoeller opened the Zoeller Brothers Malt House in the Black Hawk area of western Davenport in the mid-1880s. By 1890 the firm had reopened the Black Hawk brewery which Ernest Zoeller Sr. had operated previously. In 1894, the Zoeller interests were combined with three other breweries to form the “Davenport Malting Co.”. Less than two years later, the Zoeller Brothers went on to organize another competing malting company. This building is associated with the prosperous brewing industry that was established in Davenport between the Civil War and 1900. This firm established late in the period and survived the longest of any of the local brewing businesses. This site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1801 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry Ebeling House",
            "lat": "41.525575",
            "lon": "-90.599511",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-henryebelinghouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry Ebeling House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.525575,-90.599511\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1888, this house belonged to Henry J. Ebeling, a local carpenter. It is likely that Ebeling was involved in the house&#039;s construction, possibly serving as the contractor. The house was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1623 W 6th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "House at 1646 W 2nd St",
            "lat": "41.521387",
            "lon": "-90.600723",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-houseat1646w2ndst.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">House at 1646 W 2nd St</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.521387,-90.600723\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1865, this little house is a good example of the saltbox form. It is difficult to determine the original owners of this building, but its early owners included Johann Putzier and Sophie Sass. The house was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1646 W 2nd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John Lueschen House",
            "lat": "41.536664",
            "lon": "-90.596499",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-johnlueschenhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Lueschen House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.536664,-90.596499\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house is a good local example of small-scale domestic architecture in the Greek Revival style. Its simple form is enriched only by shallow triangular window heads. Although the date of this house has not been confirmed through documentary research, the house is probably representative of construction in this style in Davenport during the decades just before and after the Civil War. This site was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1628 Washington St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Northwest Davenport Savings Bank",
            "lat": "41.535709",
            "lon": "-90.596113",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-northwestdavenportsavingsbank.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Northwest Davenport Savings Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.535709,-90.596113\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>During the years 1900-1915 Davenport banking enjoyed significant growth, which was expressed architecturally expressed in new buildings like this one. Northwest Davenport Savings Bank was established in 1912-1913 in a German-American neighborhood of northwestern Davenport. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1529 Washington St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Northwest Davenport Turner Society Hall",
            "lat": "41.536009",
            "lon": "-90.596498",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-northwestdavenportturnersocietyhall.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Northwest Davenport Turner Society Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.536009,-90.596498\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Northwest Davenport Turner Society Hall was built in 1882, and enlarged in 1904 with a brick gymnasium added to the west at this time. The Hall was also remodeled again in 1926, giving the building essentially its present appearance. he Turner Society, a voluntary German educational, cultural, and athletic organization, was the social center of a the German community in Davenport from the late 1880s into the present century. Iowa&#039;s eastern river cities were favored by German settlers, and the local Turner Societies often played a central role in these communities. This site was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1602 Washington St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Washington Flats",
            "lat": "41.534502",
            "lon": "-90.596115",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-washingtonflats.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Washington Flats</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.534502,-90.596115\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Washington Flats is a local example of urban rowhouse construction in Davenport. It displays a simplified Neoclassical style common to many building types in turn-of-the-century Davenport. An interesting feature is the use of cut-out wood “screens” between adjacent entrances, which afford some privacy to residents and visitors. The building was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1415 Washington St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Brammer Grocery Store",
            "lat": "41.522214",
            "lon": "-90.601084",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-brammergrocerystore.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brammer Grocery Store</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522214,-90.601084\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>John Brammer opened a grocery store, “Brammer and Son,” in this building in 1885. In 1890 Brammer entered into a partnership with Louis Ott and together they operated “Brammer and Ott” for nine years. In addition to groceries they sold hardware and paint. The building itself shows how the traditional local house form was adapted for small-scale commercial use. As is common with this type of architecture, the facade is quite plain with small embellishments – neat keystones, a diamond-shaped light and narrow molded cornice frieze. The Brammer Grocery Store was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1649 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Clifton",
            "lat": "41.530492",
            "lon": "-90.597444",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-clifton.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clifton</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530492,-90.597444\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located on a high bluff overlooking the city, Clifton was built in the early 1850s as the home of J. M. D. Burrows. Burrows was a prominent merchant and wholesaler who came to Davenport in 1838. His firm, Burrows and Prettyman, advertised up and down the Mississippi River and along the Missouri River in the Midwest. The majority of the firm&#039;s profits came from government contracts from Fort Snelling (St. Paul, Minnesota) and Fort Crawford (Prairie du Chien, Wisconsin). During the Financial Panic of 1857, Burrows lost his firm and was forced to mortgage this home to Antoine LeClaire to pay off his debts. Burrows was never able to get the house back and it was eventually passed into the hands of George Davenport and his heirs. LeClaire and Davenport were both founders of Davenport. Clifton was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1533 Clay St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Village of Saint Donatus Historic District",
            "lat": "42.362289",
            "lon": "-90.538427",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Village of Saint Donatus Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.362289,-90.538427\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Donatus is a small village known for its status as a Luxembourger village. It features a great deal of historic architecture that reflects the local culture. Specifically, it is the home to a historic Catholic church dedicated to Saint Donatus of Muenstereifel, the town&#039;s namesake. The historic district was added to the National Register of Historic Places in 1989.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t30453 High Bridge Rd.<br />Saint Donatus, IA 52071<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Credit Island and Natural Historic Preserve",
            "lat": "41.501442",
            "lon": "-90.608073",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-historicsite-creditislandandnaturalhistoricpreserve.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Credit Island and Natural Historic Preserve</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.501442,-90.608073\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Credit Island Park and Natural Historic Preserve is the largest of Davenport&#039;s parks and covers 450 acres. The site was named for the trading post that served Native American tribes and fur companies at the location. The park is also the site of the last battle for control of the Upper Mississippi River during the War of 1812. The battle occurred on September 4-5, 1814 and a historic marker commemorating the Battle of Credit Island was placed on the 200th anniversary by the City of Davenport. The city also commissioned a national battlefield study with financial support from the National Park Service.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2200 West River Dr.<br />2200 Credit Island Rd.<br />Davenport, IA 52802<br />Scott County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofdavenportiowa.com/department/division.php?structureid=196\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Marycrest College Historic District",
            "lat": "41.531196",
            "lon": "-90.598221",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-marycrestcollegehistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marycrest College Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.531196,-90.598221\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Marycrest College Historic District is the site a Roman Catholic women’s college that was founded just prior to WWII. The college was established by the Sisters of the Congregation of Humility of Mary in 1938 as a liberal arts college for women students. This historic district contains an important collection of buildings associated with the founding and growth of Marycrest College. Several of these are good examples of the blending of the Late Gothic Revival and Jacobethan Revival architectural styles, and the works of several prominent Davenport architects are showcased throughout the area. This district was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW 12th St.<br />Davenport, IA 52804<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lyon County Courthouse",
            "lat": "43.430024",
            "lon": "-96.167501",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lyon-nhr-lyoncountycourthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lyon County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.430024,-96.167501\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lyon County was organized in 1872 and the first courthouse erected in 1874. This courthouse, a three-story frame structure with hipped roof and bracketed eaves, was later moved a few blocks, stuccoed, painted green and converted to an apartment house. The present courthouse was begun in 1916 and dedicated the following year. The Lyon County Courthouse was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 S 2nd Ave<br />Rock Rapids, IA 51246<br />Lyon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Claus Untiedt House",
            "lat": "41.533580",
            "lon": "-90.595190",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-clausuntiedthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Claus Untiedt House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.533580,-90.595190\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built with the upright-and-wing form developed out of the local Greek Revival style, this home displays the three-bay front gable also characteristic of Davenport’s “McClelland” houses. Set on relatively spacious lots within a residential area of smaller, more closely-spaced dwellings, the house is quite noticeable. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1429 W 14th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "F.J. Raible House",
            "lat": "41.522158",
            "lon": "-90.598310",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-fjraiblehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">F.J. Raible House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522158,-90.598310\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The F.J. Raible house was built prior to 1882 and was occupied by Raible beginning in 1884. The house is an example of an important local house type displaying an unusual front treatment in which the windows and entrance are set back. This house was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1537 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Joachim Plambeck House",
            "lat": "41.533557",
            "lon": "-90.594826",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-joachimplambeckhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Joachim Plambeck House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.533557,-90.594826\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Joachim Plambeck, German immigrant and woodworker, was the first occupant of this house. It was was built around 1888 and was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1421 W 14th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John C. Schricker House",
            "lat": "41.530713",
            "lon": "-90.595816",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-johnschrickerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John C. Schricker House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530713,-90.595816\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Schricker house is a distinguished local example of Georgian Revival design by local architect Gustav Hanssen. This was the residence of John C. Schricker, a partner in the only local pearl button factory for many years. The house was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1446 Clay St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Jackson School No. 6",
            "lat": "41.536109",
            "lon": "-90.594841",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-jacksonschoolno6.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jackson School No. 6</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.536109,-90.594841\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jackson School No.6 is a very well-preserved example of the Late Victorian style, executed as a grammar school design in the original and expanded form. It was added to the National Register of Historic Places in 2011.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1420 W 16th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William V. Carr House",
            "lat": "41.522181",
            "lon": "-90.598156",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-williamcarrhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William V. Carr House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522181,-90.598156\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>William V. Carr built by this house around 1860. It is a good example of Davenport architecture from the Civil War period. The house was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1531 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wolters Filling Station",
            "lat": "41.532552",
            "lon": "-90.596153",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-woltersfillingstation.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wolters Filling Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.532552,-90.596153\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Period revival of the 1920s and 1930s found expression in buildings other than houses. Alfred Wolters chose the English “cottage” style for his small filling station, complete with half-timbered gables and rustic posts on the drive-through. The polychrome brick, metal casement windows, and stone-edged round-arched doorway were features common to other examples of this style in Davenport. The “domestic” character of the Wolters station was a typical feature of early gas station architecture, but has been largely replaced by more commercial design. The Wolters station is thus locally significant not only for its attractive utilization of a popular domestic style, but also as one of the fast-disappearing reminders of the earlier automobile era. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1229 Washington St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "J.C. Peters House",
            "lat": "41.532524",
            "lon": "-90.593149",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-jcpetershouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J.C. Peters House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.532524,-90.593149\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The J.C. Peters House is a well-preserved example of one of Davenport’s first major architectural styles, the front-gable Greek Revival. J.C. Peters, a farmer, moved to this location in 1884. Though probably not the original occupants, members of the Peters family resided here into the 1890’s. The house was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1339 W 13th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Meadly House",
            "lat": "41.529284",
            "lon": "-90.595342",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-meadleyhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Meadly House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529284,-90.595342\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Meadly House is a unique example of the Second Empire style. While the mansard roof and gabled dormers are typical of the style, the house was built as a single story dwelling, rather than the common two story. The house is a successful attempt to “scale down” the usually large and grand Second Empire style. It is believed to have been built in 1881 for the Meadly family and was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1425 W 10th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Robert Henne House",
            "lat": "41.522126",
            "lon": "-90.596158",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-roberthennehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Robert Henne House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522126,-90.596158\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1874, the Robert Henne House is an example of an important locally-designed house. It was probably built around 1874 for Robert Henne and his wife, Henrietta. Henne operated a cigar stand at the post office and his wife continued at this location after his death in 1885. This house was added to the National Register of Historic places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1445 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "St. Mary&#039;s Academy",
            "lat": "41.528081",
            "lon": "-90.594044",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-stmarysacademy.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Mary&#039;s Academy</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.528081,-90.594044\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Mary’s Academy was opened by the Sisters of Mercy in 1889 as a Roman Catholic school. Designed in the Victorian Romanesque Revival style, the building features polychrome brick-and-stone sides, judicious use of the round arch, and prominent parapetted gables marking the corners and main entrance. The Academy was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1334 W 8th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Werthmann Grocery",
            "lat": "41.526889",
            "lon": "-90.594497",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-werthmanngrocery.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Werthmann Grocery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.526889,-90.594497\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This turn-of-the-century example of a neighborhood saloon. It was originally built as a grocery store, which opened in 1900 and remained in operation until 1910, when when was converted into a tavern. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1402 W 7th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cottage at 1514 and 1516 W Second Street",
            "lat": "41.521391",
            "lon": "-90.597472",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-cottageat1514and1516secondst.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cottage at 1514 and 1516 W Second Street</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.521391,-90.597472\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cottage at 1514-1516 W 2nd St. is one of the earliest in Davenport, with a long porch derived from the Galerie of Mississippi Valley French tradition, and a symmetrical, 5-bay façade from the colonial Georgian/Greek Revival style. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1514 W 2nd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Elizabeth Pohlman House",
            "lat": "41.532513",
            "lon": "-90.594214",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-elizabethpohlmanhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Elizabeth Pohlman House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.532513,-90.594214\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Elizabeth Pohlman House is an example of the transition in popular domestic architectural styles that occurred in Davenport at the turn of the century. The “pinwheel” form – a hipped-roof mass with gabled projections – is from the 19th-century Queen Anne style. The house was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1403 W 13th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Riverview Terrace Historic District",
            "lat": "41.530202",
            "lon": "-90.595047",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-riverviewterracehistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Riverview Terrace Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530202,-90.595047\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Riverview Terrace district is one of several residential districts in Davenport that developed around the turn of the century with public parks as focal points. It contains a number of architecturally distinguished dwellings, including some of the city’s finest examples of Italianate and Georgian/Federal Revival. Several residents were members of entrepreneurial families who originally lived in the Hamburg area during most of the 19th century. The district was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDavenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Lyon County Historical Society Museum Complex",
            "lat": "43.433675",
            "lon": "-96.167694",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lyon-historymuseum-lyoncountyhistoricalsocietymuseumcomplex.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lyon County Historical Society Museum Complex</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.433675,-96.167694\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lyon County Historical Society Museum Complex is a collection of buildings and artifacts that display the history of Lyon County, as well as a genealogical library. The Howe House built in 1867 by Richard Howe, a Welsh immigrant stonemason, is at the site. The house, its furnishings and its decor appear much as it has through the years. More than 130 years after construction, it retains its near original appearance and historical integrity. Part of the museum is in the Rock Rapids Depot. The railroad was significant to the development of Rock Rapids and Northwest Iowa. Northwest Iowa was not settled extensively until after the Civil War and the settlers were solely dependent on getting supplies by barge on the Big Sioux River. On September 10, 1886, the first train arrived in Rock Rapids. The railroad bridge was constructed in 1886 and designed on a horizontal circular curve. Since 1973, the depot has been owned by the Lyon County Historical Society. The Burlington, Cedar Rapids, and Northern Railroad - Rock Rapids Station, Railroad Track and Bridge were added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 N Story St.<br />Rock Rapids, IA 51246<br />Lyon County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.472.2962</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Rapids Theatre",
            "lat": "43.431717",
            "lon": "-96.168996",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lyon-theater-rapidstheater.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rapids Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.431717,-96.168996\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lyon Theatre opened in January 1919 with 750 seats and a large ballroom. By the early 1940s it had been renamed Rapids Theatre, with seating listed at 530. It was operated by Pioneer Theatres during the early 1940s and then by Berger Amusement Co. until it closed in the late-1970s. The theater operated as a restaurant until 2011, and as of 2014 plans were in place to renovate and reopen the theater.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t316 1st Ave.<br />Rock Rapids, IA 51246<br />Lyon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Way of the Cross",
            "lat": "42.363163",
            "lon": "-90.535272",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Way of the Cross</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.363163,-90.535272\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Way of the Cross is an outdoor religious site built in 1861, believed to be the first of its kind. The chapel is a collection of 14 brick alcoves, each with a lithographic print detailing a piece of Christ’s journey to his crucifixion. At the end of the path is the Pietà Chapel, which was built in 1885, and is modeled after a similar building in Luxembourg. It features a model of the famous Pietà, the sculpture of Mary cradling Jesus Christ after his death.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t97 E 1st St.<br />Saint Donatus, IA 52071<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.583.0092</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "St. Mary&#039;s Roman Catholic Church Complex",
            "lat": "41.525426",
            "lon": "-90.594718",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-stmarysromancatholicchurchcomplex.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Mary&#039;s Roman Catholic Church Complex</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.525426,-90.594718\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Mary’s Roman Catholic Church Complex consists of St. Mary’s Parish School (1901), St. Mary’s Roman Catholic Church (1867), St. Mary’s Convent (1901), and St. Mary’s Rectory (1877). The four buildings are located adjacent and across the street from one another. Dark red brick and fairly straight forward rectangular plans were used for all four buildings. St. Mary’s church served the English speaking Irish Catholic community in Davenport. The original pipe organ and the historic Guido Reni painting donated by an early organist serving the parish are featured inside the church. This area was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t516 Fillmore St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.322.3383</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First Methodist Church",
            "lat": "43.429610",
            "lon": "-96.172219",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lyon-nhr-firstunitedmethodistchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Methodist Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.429610,-96.172219\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Methodist Church was built with an interesting combination of blue-gray and red granite. The building was constructed in 1895. Blue-gray granite came from a quarry in Sioux Falls, South Dakota, the red trimming stone obtained from a stone building in Sioux Falls that went bankrupt. The implication of the exterior is of a Greek Cross plan and particularly suited for a corner lot and can be viewed obliquely from a distance. The First Methodist Church was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t302 S Carroll St.<br />Rock Rapids, IA 51246<br />Lyon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Albert Kiene House",
            "lat": "41.527633",
            "lon": "-90.593477",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-albertkienehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Albert Kiene House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.527633,-90.593477\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1881, the Albert Kiene House is one of two unusual examples of the Second Empire style in Davenport. Albert Kiene joined the Ferdinand Haak Company on September 29, 1875, one of the four largest cigar manufacturers in the city after the Civil War. After one year of learning the cigar making trade he was promoted to foreman, a position he held for more than 25 years. Kiene was recognized for his 25 years of service to the company in the Davenport Daily Leader on Sept. 30, 1900. The mention details the celebration that was held in his honor which included the gift of a solid gold watch inscribed in the German language, &quot;In recognition of Twenty-five years of faithful service to Albert Kiene from Ferd Haak.&quot; The watch matched a gold medal watch charm made from a twenty dollar gold piece that Kiene receieved for this 20 year service anniversary. His former home and the nearby Meadly House, are unique in that they are single story, brick residences with high pitched Mansard roofs that feature prominent gabled dormers. This style of house was meant to &quot;scale down&quot; what was typically a large and rather grandiose Victorian house style to meet a more modest budget but at the same time remain in fashion. The Albert Kiene House was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1321 W 8th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Frank Picklum House",
            "lat": "41.526904",
            "lon": "-90.593971",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-frankpicklumhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Frank Picklum House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.526904,-90.593971\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This “McClelland” style house is updated with an expansive veranda in the Colonial Revival style – a common local response to changing architectural trends at the turn of the century. Frank Picklum was probably the original occupant of this house, beginning in 1881. Picklum was a brick layer and eventually a brick contractor, so he may have built the house as well. The house was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1340 W 7th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Frick&#039;s Tavern",
            "lat": "41.522486",
            "lon": "-90.594564",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-frickstavern.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Frick&#039;s Tavern</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522486,-90.594564\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Frick’s Tavern has been a center of activity for the west end Davenport Germans since the early 1870s. The tavern opened in 1876 and has continues to operate today, a rare example of such a long-lasting bar in Eastern Iowa. The tavern is still owned by descandants of the original Frick family. It was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1402 W 3rd St.<br />Davenport, IA 52802<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.323.1528</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry P. Fennern House",
            "lat": "41.523588",
            "lon": "-90.593842",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-henryfennernhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry P. Fennern House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.523588,-90.593842\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Henry P. Fennern House has two highly unusual decorative features: the spindle screens at the corner in front of the deeply recessed entrance, and the gable end. The house was constructed in 1902 by Henry P. Fennern who was employed as a shipper by J.F. Kelly and Company, a wholesale grocer. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1457 W 4th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry Pohlman House",
            "lat": "41.533140",
            "lon": "-90.590503",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-henrypohlmanhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry Pohlman House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.533140,-90.590503\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house illustrates the “McClelland” house form, found in Davenport during the mid-19th century. In this design, the typical three-bay front-gable form is distinguished from other examples by the large parlor window at the front. The house was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1204 W 13th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hose Station No.6",
            "lat": "41.534177",
            "lon": "-90.591673",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-hosestation6.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hose Station No.6</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.534177,-90.591673\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building is one of a handful of neighborhood fire stations still remaining in Davenport. It was built starting in 1910 and is an intact representation of the city’s early 20th century fire protection program and a good example of small firehouse design. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1410 Marquette St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hose Station No.7",
            "lat": "41.523626",
            "lon": "-90.594206",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-hosestation7.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hose Station No.7</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.523626,-90.594206\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1908, Hose Station No.7 is one of several hose stations erected throughout the city. This is the newest station, one of seven hose companies and two ladder companies in the City’s professional fire department. It was added to the National Register of Historic Places in 1983</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1354 W 4th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Nicholas Koester Building",
            "lat": "41.522218",
            "lon": "-90.594228",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-nicholaskoesterbuilding.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nicholas Koester Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522218,-90.594228\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1890, this attractive and well-kept commercial block is a pivotal structure in a small neighborhood district at 3rd and Fillmore. Nicholas Koester was a dealer in stoves and tin ware and began working out of this building in 1890. This site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1353 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Patrick F. McCarthy House",
            "lat": "41.529552",
            "lon": "-90.591923",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-patrickmccarthyhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Patrick F. McCarthy House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529552,-90.591923\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Patrick F. McCarthy House was built in 1905 in the Tudor Revival Style. Prominent stylistic features include the half-timbering on the upper floors and the way in which each floor is jettied out from the one below on the prominent front-gable end pavilion. The house was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t942 Marquette St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Peters&#039; Barber Shop",
            "lat": "41.522474",
            "lon": "-90.594129",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-petersbarbershop.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Peters&#039; Barber Shop</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522474,-90.594129\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Peter&#039;s Barber Shop is a relatively well-preserved example of small-scale commercial architecture from the 1900s. The building was probably constructed in 1904-05, and opened as a barber shop in 1906. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1352 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Washington Gardens",
            "lat": "41.532506",
            "lon": "-90.591715",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-washingtongardens.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Washington Gardens</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.532506,-90.591715\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>One of Davenport’s oldest taverns, the Garden retains a significant measure of its Victorian character. Reflecting several stylistic influences, the bracketed front-gable structure can be read as a commercial version of the Italianate, while the pairs of round-arched gable-end windows are a feature often associated locally with German immigrant tradition. Originally combining a tavern, social hall, and beer garden, the establishment was a center for leisure activities among northwest Davenport’s German community for many years. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1301 W 13th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.323.1503</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George Klindt House",
            "lat": "41.528876",
            "lon": "-90.591593",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-georgeklindthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Klindt House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.528876,-90.591593\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161mi.</span></div>\n\t\t</div>\n\n\t\t<p>This was the residence of George Klindt, a partner in a locally prominent brewery at the turn of the century. This was the third of three houses along this street built for partners of the brewery company – 826 Marquette for George Mengel and 834 for Henry Klindt. This site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t902 Marquette St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry Klindt House",
            "lat": "41.528690",
            "lon": "-90.591480",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-henryklindthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry Klindt House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.528690,-90.591480\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1890 for Henry Klindt, a partner at a locally prominent brewery at the turn of the century, this rather typical late Victorian house is given prominence by its impressive setting on a terraced hill above Marquette Street. The house was added to the national Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t834 Marquette St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry Paustian House",
            "lat": "41.525818",
            "lon": "-90.591962",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-henrypaustianhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry Paustian House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.525818,-90.591962\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Paustian House is a good example of local architecture in the early decades of Davenport&#039;s history. Constructed of local materials, the only presence of “style” lies in the careful symmetry of the 5-bay front elevation and molded cornices above the windows and doors. Because so few of these houses remain, they deserve recognition as rare artifacts from the city’s formative years. The Paustian House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1226 W 6th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Littig Brothers/Mengel and Klindt/Eagle Brewery",
            "lat": "41.524296",
            "lon": "-90.592224",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-littigbrothers-mengelklindt-eaglebrewery.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Littig Brothers/Mengel and Klindt/Eagle Brewery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.524296,-90.592224\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building is a product of the prosperous brewing industry in Davenport after the Civil War. Like the other firms, this brewery was operated by several successive owners and was eventually associated with the Davenport Malting Company. This building was in use from 1866 until 1898, and was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1235 W 5th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Richard Schebler House",
            "lat": "41.526651",
            "lon": "-90.591675",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-richardscheblerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Richard Schebler House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.526651,-90.591675\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Schebler House illustrates the influence of the Stick and Shingle styles on a traditional Davenport house type. The 2-story, 3-bay gable front is enriched with a band of scalloped shingles between stories and the gable end is finished in vertical board and an intricately-cut apron. The house was probably built in 1876 by Richard Schebler, a local grain buyer. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1217 W 7th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Joseph&#039;s Catholic Church",
            "lat": "41.525864",
            "lon": "-90.590662",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-stjosephcatholicchurch.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Joseph&#039;s Catholic Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.525864,-90.590662\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Joseph’s Catholic Church was opened in the early 1880s to fill the needs of a great influx of German immigrants to the north-west side of Davenport. The church is in the Gothic style, made of brick with stone trimmings. This church was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tW 6th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.322.3473</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Walter-Gimbel House",
            "lat": "41.525788",
            "lon": "-90.592243",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-waltergimbelhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Walter-Gimbel House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.525788,-90.592243\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Walter-Gimbel House is a brick home articulating the Midwestern style of compact family dwellings. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1232 W 6th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Arthur Ebeling House",
            "lat": "41.535266",
            "lon": "-90.589274",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-arthurebelinghouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Arthur Ebeling House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.535266,-90.589274\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Arthur Ebeling House was built in 1912-1913 and was the long-time residence of Arthur H. Ebeling, an important 20th-century Davenport architect. At the time this house was built, Ebeling was working with the firm of Temple and Burrows as supervising architect on the Black Hawk Hotel in downtown Davenport. He began his own architectural business in 1908 and his major works include the Henry Kahl House (1920), Kahl Building (1925), and Scott County Courthouse (1958). The Arthur Ebeling House was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1106 W 15th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-ballrooms.png",
            "title": "Fairyland Park",
            "lat": "41.764572",
            "lon": "-90.533635",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-ballrooms.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fairyland Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.764572,-90.533635\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161mi.</span></div>\n\t\t</div>\n\n\t\t<p>&quot;Where friends &amp; families meet to eat,&quot; the Fairyland Park Ballroom is available to be used as a rental facility. It also serves as a venue for annual celebrations, such as a Mother&#039;s Day Brunch, and weekly dinner specials for the surrounding community.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t18800 315th St.<br />Long Grove, IA 52756<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Big Mill Homestead",
            "lat": "42.270774",
            "lon": "-90.517464",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Big Mill Homestead</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.270774,-90.517464\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161mi.</span></div>\n\t\t</div>\n\n\t\t<p>The house on the Big Mill Homestead is an interesting example of an uncommon residential design (the hip roof cube) executed in limestone from the 1850&#039;s. The Big Mill Homestead was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t32575 Mill Creek Rd.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bonaventura Heinz House",
            "lat": "41.524742",
            "lon": "-90.590303",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-bonaventureheizhouseII.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bonaventura Heinz House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.524742,-90.590303\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in the early 1860s, this home was owned by Bonaventura and Margaret Heinz, both natives of Germany. Mr. Heinz immigrated to America in 1845 and settled in St. Louis where he enlisted in the U.S. Army and fought in the Mexican-American War. He married Margaret Traenkenschuh in St. Louis and together they located at Davenport in 1855. They established the commission house (boarding house) of Haupt &amp; Heinz and continued in business until 1870 when they retired. The Heinz family had three sons and three daughters, one son, Frederich Heinz held many city offices and was elected mayor of Davenport in 1900. Bonaventura Heinz died at age 75 in 1899, having celebrated his 50th golden wedding anniversary six months previous. Margaret died at 88 years old and they are interred at Oakdale Cemetery. The Bonaventura Heinz House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1128 W 5th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Edward Edinger House",
            "lat": "41.529039",
            "lon": "-90.588107",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-edwardedingerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Edward Edinger House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529039,-90.588107\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1890 for Edward Edinger, this residence was designed by Davenport architect Edward S. Hammatt. It is not in his usual style of Romanesque Revival, but instead features a Victorian Picturesque design. The house not only functioned as a dwelling but as a remarkable advertisement for its owner’s business as a local stonemason. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1018 W 9th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hauschild&#039;s Hall",
            "lat": "41.522495",
            "lon": "-90.590764",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-hauschildshall.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hauschild&#039;s Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522495,-90.590764\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building was the headquarters of the German Knights of Labor, an important union that formed out of the labor agitation of the 1880s. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1136 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry Kahl House",
            "lat": "41.528165",
            "lon": "-90.589343",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-henrykahlhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry Kahl House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.528165,-90.589343\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This was the residence of Henry C. Kahl, built in 1920. Kahl was a partner in Davenport’s most important contracting firm, the Walsh-Kahl Company, which was involved in projects all across the country. This site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1101 W 9th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Marquette Street Rowhouse",
            "lat": "41.523086",
            "lon": "-90.591079",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-marquettestreetrowhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Marquette Street Rowhouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.523086,-90.591079\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 1870 rowhouse was probably built by Lorenz Wahle, a grocery merchant in the west end. The building was occupied by a series of short term tenants through the years and continues as apartments today. This site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t318 Marquette St.<br />Davenport, IA 52802<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Meisner Drug Store",
            "lat": "41.522231",
            "lon": "-90.589872",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-meisnerdrugstore.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Meisner Drug Store</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522231,-90.589872\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Amielius Meisner operated a drug store out of this building beginning in 1888, while living in an apartment on the second floor. This is a nicely preserved commercial block and a good example of its type. The shop was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1115 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Taylor School",
            "lat": "41.534816",
            "lon": "-90.586311",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-taylorschool.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Taylor School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.534816,-90.586311\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Taylor School is a former grade school building, constructed in 1897 as part of the developing local public school system. The building was designed by Clausen &amp; Burrows and features a hipped roof with bracketed eaves and an arched main entrance covered by a columned canopy. This site was added to the National Register of Historic Places in 1983, and was later converted into senior housing and renamed the Taylor Renaissance.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1400 Warren St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Theodore Jansen House",
            "lat": "41.529546",
            "lon": "-90.589409",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-theodorejansenhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Theodore Jansen House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529546,-90.589409\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This pleasantly small home is in the Queen Anne residential style, without the usual luxurious flares. The Theodore Jansen House was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t922 Myrtle St.<br />Davenport, IA 52804<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John Hoersch House",
            "lat": "41.527165",
            "lon": "-90.587797",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Hoersch House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.527165,-90.587797\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1879, the John Hoersch house is a wood frame “farmhouse”, a common form in Iowa and throughout the Midwest. Hoersch came to the Scott County area in the 1860s. He moved to this location in 1880 and remained at this address until the 1890s. The house was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t716 Vine St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-ballrooms.png",
            "title": "Col Ballroom (Saengerfest Halle)",
            "lat": "41.523781",
            "lon": "-90.588129",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-saengerfesthalle-colballroom.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-ballrooms.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Col Ballroom (Saengerfest Halle)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.523781,-90.588129\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Col is one of lowa&#039;s oldest operating ballrooms, built in 1914 by the late Leo Kerker as a replacement for an earlier ballroom that was destroyed by fire. The original structure, known as the &quot;Coliseum&quot; was built specifically for the German-American Saengerfest of 1898 and was located across the street from the present day Col Ballroom. The Northwestern Saengerbund, a German musical organization in the upper Midwest, met in Davenport for a three day festival July 28-30, 1898. Around 11:00 p.m. on October 22, 1913 a fire started in the Coliseum and by the time the fire department arrived the building, built entirely of wood, was beyond saving. At the time of the fire the building was used for conventions, concerts and a dance hall on the second floor with wood-working and paint shops for the Keding-Henke Company on the first floor. The new Coliseum was built in 1914 and opened for the first time on October 27, 1914 to a crowd of three thousand people for a Madame Schumann-Heink concert. In 1991, the ballroom underwent a major renovation that included extensive brick cleaning and new carpeting and drapes. The ornate balcony also underwent extensive renovations. Don Wachel of Davenport owned the Col Ballroom during much of its history. Wachel was one of the most highly regarded professionals in the ballroom industry and was a past president of the National Ballrooms Operators Association. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1012 W 4th St.<br />Davenport, IA 52802<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Columbia Avenue Historic District",
            "lat": "41.546962",
            "lon": "-90.578430",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-columbiaavenuehistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Columbia Avenue Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.546962,-90.578430\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Columbia Avenue Historic District is composed of 19 apartment buildings that were built between 1930 and 1939. It&#039;s one of the earliest examples of apartment complexes in Davenport. While each building uses the same theme and they all look very similar, they are all different in some way and have their own personalities whether it be the roof, shape or decorative detail. The Columbia Avenue Historic District was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tColumbia Ave.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ambrose Hall",
            "lat": "41.538802",
            "lon": "-90.581136",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-ambrosehall.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ambrose Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.538802,-90.581136\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Ambrose University was founded in 1882 by the first bishop of Davenport, Rt. Rev. John McMullen as a seminary and school of commerce for young men. Originally, St. Ambrose included courses in the humanities, sciences and business as well as theological studies. In a sense, this liberal arts curriculum was a pioneer in its day, allowing future priests to live and work with young men who might one day be their parishioners, rather than cloistering them away from the people and ideas with which they would have to deal as priests.  The university located on its current grounds in 1885 at which time Ambrose Hall was built in 1885 by Victor Huot of Davenport. Additions to Ambrose Hall were made in 1893, 1901, 1908, 1910 and 1912 with each addition designed to match the original construction of a pragmatic adaptation of the Second Empire style. On the south side of the hall you&#039;ll find a statue of St. Ambrose (patron saint of learning) that came from Europe in 1895 and on the north side a small grotto made from the altar taken from the crypt chapels. Ambrose Hall was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t518 E Locust St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.333.6000</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.sau.edu/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hamburg Historic District",
            "lat": "41.526771",
            "lon": "-90.582950",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-hamburghistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hamburg Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.526771,-90.582950\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hamburg Historic District contains the largest concentration of historically significant houses in Davenport and displays some of the most outstanding examples of 19th-century architectural styles in the city. The district also represents the geographical hub of the middle and upper income German settlement of the late 19th and early 20th century. The large German population had a dominating influence on 19th century Davenport, and Hamburg was the home of many prominent German business and political leaders. The district was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDavenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "West 3rd Street Historic District",
            "lat": "41.522374",
            "lon": "-90.585510",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-west3rdstreethistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">West 3rd Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522374,-90.585510\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in the 1870s, the West Third Street Historic District is a series of Greek Revival style buildings that include commercial and domestic properties. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDavenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Dan Nagle Walnut Grove Pioneer Village",
            "lat": "41.727291",
            "lon": "-90.532345",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dan Nagle Walnut Grove Pioneer Village</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.727291,-90.532345\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Dan Nagle Walnut Grove Pioneer Village is a educational site full of family fun and exploring. The village is made up of eighteen different buildings, including the 1890 Walnut Grove Bank, the Butler No. 2 School on the National Register of Historic Places, and the Walnut Grove Boardwalk, which features an apothecary, a saloon, a barber, and many other shops. The village allows you to step back in time and explore the everyday life of nineteenth-century Americans. It also hosts summer day camps for kids and annual festivals.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t18817 290th St.<br />Long Grove, IA 52756<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "D. Julius Gaspard House",
            "lat": "41.530337",
            "lon": "-90.580434",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-djuliusgaspardhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">D. Julius Gaspard House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530337,-90.580434\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The D. Julius Gaspard House was built around 1880 by D. Julius Gaspard. Gaspard was a stone-cutter by trade and built the house in the vernacular Greek Revival style. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t510 W 10th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George McLelland Middleton House and Garage",
            "lat": "41.532705",
            "lon": "-90.579637",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-georgemclellandmiddletonhouseandgarage.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George McLelland Middleton House and Garage</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.532705,-90.579637\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house combines Neoclassical details such as symmetrical arrangement and plain columns with the ample proportions, large windows and narrow clapboard-covered porch columns associated with later designs. There have been some changes to the house&#039;s structure, most associated with its conversion to a duplex in 1940. It has since been returned to a single family home and was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1221 Scott St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hiller Building",
            "lat": "41.522816",
            "lon": "-90.583202",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-hillerbuilding-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hiller Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522816,-90.583202\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hiller Building is believed to be one of the oldest, if not the oldest, remaining building in Davenport. It is certainly one of the earliest multiple dwelling units in the city and one of the few remaining structures built of locally quarried stone. It was originally built in 1852 with additions in 1856 and 1859. The Hiller Building was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310 Gaines St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "German American Heritage Center (Standard Hotel)",
            "lat": "41.521506",
            "lon": "-90.583625",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-germanamericanheritagecenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">German American Heritage Center (Standard Hotel)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.521506,-90.583625\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built sometime during the 1860s, the German American Heritage Center was originally called the Germania House and served as a hotel to the many immigrants pouring into region, and later served area farmers during trips to Davenport. The hotel changed hands many times and was renamed each time until 1924, when it became the Standard Hotel. The building was purchased by the German American Heritage Center in 1995 and was subsequently converted into a museum. Visitors to the museum will enjoy an interactive experience while learning about immigrants’ journey by sea, train and foot, to their final destination at the Germania House (now German American Heritage Center building). The museum includes a large permanent exhibit and two rotating special exhibits. Within the permanent exhibit, visitors enjoy an orientation theater, six education stations, and two restored hotel rooms. The museum also provides several programs, classes, and workshops throughout the year. \r\nThe building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t712 W 2nd St.<br />Davenport, IA 52802<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.322.8844</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.gahc.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Ames Creek Bridge",
            "lat": "41.850419",
            "lon": "-90.510018",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ames Creek Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.850419,-90.510018\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This concrete girder bridge over Ames Creek near DeWitt, Iowa was constructed in 1912. It has remained unchanged and well-preserved since it was built and is still in use. The bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300th Ave.<br />De Witt, IA 52742<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Lambrite-Iles-Petersen House",
            "lat": "41.526086",
            "lon": "-90.582581",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lambrite-Iles-Petersen House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.526086,-90.582581\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lambrite-Iles-Petersen House was built for Joseph Lambrite, c. 1857.  John Petersen, owner of the J.H.C. Petersen and Sons department store, bought the property in the mid-1880s and lived there until his death in 1910. This house is a unique surviving example of an Italianate villa with its asymmetrical composition, brackets eaves and decorative window hoods. Note the wood quoins on the corner and rustication that imitate dressed stone.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t510 W 6th St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowa Reform Building",
            "lat": "41.521471",
            "lon": "-90.581106",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-iowareformbuilding-4.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Reform Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.521471,-90.581106\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building was home to the German-language press which thrived in Davenport’s German-American community from the Civil War until World War II. This building was used for more than 50 years as the publishing house for the Iowa Reform, a Democratic and later, independent, German newspaper. Publisher and editor Adolph Petersen lived above the print shop. It is the one of two buildings associated with the foreign press, and the only one associated with the Iowa Reform, still standing. It was built in 1892 in the 19th-century Commercial style and was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t526 W 2nd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John W. Ballard House",
            "lat": "41.535769",
            "lon": "-90.575786",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-johnwballardhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John W. Ballard House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.535769,-90.575786\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was occupied by John W. Ballard beginning in 1884, but he was most likely not the original builder. The house was built around 1870 and was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t205 W 16th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Koch Drug Store",
            "lat": "41.535019",
            "lon": "-90.577093",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-kochdrugstore.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Koch Drug Store</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.535019,-90.577093\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Koch Drug Store is locally significant as a good example of Davenport’s small-scale commercial architecture form the later 19th century, being built in 1881. It was owned and run by Francis J. Koch, druggist, who operated his drugstore from this site for more than a decade, living on the second floor. This site was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1501 Harrison St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Scott County Jail",
            "lat": "41.524425",
            "lon": "-90.579256",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-scottcountyjail.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Scott County Jail</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.524425,-90.579256\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Scott County Jail is a late example of the Italianate architectural style in Davenport. The jail is very well-preserved and stands out as a noteworthy feature in an otherwise undistinguished area. The jail is still in operation, housing over 200 inmates a year. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t428 Ripley St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bethel African Methodist Episcopal (AME) Church",
            "lat": "41.530779",
            "lon": "-90.578329",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-bethelafricanmethodistepiscopalchurch.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bethel African Methodist Episcopal (AME) Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530779,-90.578329\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Bethel African Methodist Episcopal Church was established in 1875 after the Civil War to provide a separate worship facility for Methodists of the African American community. It was the first church of its type in the State of Iowa. After construction was completed in 1909, this building became the church&#039;s new home. William W. Williams was pastor at the time and resided in the church parsonage next door. Bethel African Methodist Episcopal Church was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t325 W 11th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.322.6622</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Central Fire Station",
            "lat": "41.523323",
            "lon": "-90.579730",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-centralfirestation-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Central Fire Station</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.523323,-90.579730\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Central Fire Station was constructed in 1901 at a time when professional firefighting was just becoming an occupation in Davenport. Davenport&#039;s early fire control was accomplished with volunteer hook, ladder and hose companies located throughout the city. These volunteers were fitted with poor equipment and their heroic efforts often ended in failure. After the city&#039;s population topped 21,000 in 1880, the city council authorized formation of a city-sponsored fire department. The department was officially organized in 1882 and in 1901 the Central Fire Station was constructed. The Central Fire Station was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t331 Scott St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.326.7906</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles Grilk House",
            "lat": "41.540274",
            "lon": "-90.575828",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-charlesgrilkhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles Grilk House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.540274,-90.575828\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Charles Grilk House, designed by the early 20th century Davenport architectural firm of Temple, Burrows &amp; McLane, which was best known for designing local landarks such as the Outing Club, Central High School and a pair of fine tudor houses. However, the Grilk House, built in 1906, is one of few known modest works of the firm – showing that architects worked for clients on smaller budgets as well as wealthy clients on large budgets. Charles Grilk was born in Clinton, Iowa, in 1874 and attended Harvard in Boston, Massachusetts where he participated and led many Harvard debates and worked for the Boston Globe. He went on to earn a law degree from Harvard before returning to Iowa as a lawyer in Davenport. He died in 1928 while attending the Republican State Convention in Des Moines. The Charles Grilk House was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2026 Main St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "E. P. Adler House",
            "lat": "41.540844",
            "lon": "-90.575884",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-epadlerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">E. P. Adler House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.540844,-90.575884\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house is associated with E.P. Adler, a prominent newspaper publisher in early 20th century. It was built in 1910 and is one of two very similar dwellings located near each other in the Vander Veer Historic District. Adler would expand the local newspaper market of Davenport to include more publications and radio and television stations. Adler would also serve as a banking official. The house was added to the National Historic Register in 1983.</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2104 Main St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Upper Paradise",
            "lat": "42.273280",
            "lon": "-90.505531",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Upper Paradise</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.273280,-90.505531\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.6mi.</span></div>\n\t\t</div>\n\n\t\t\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t33618 Mill Creek Rd.<br />Paradise Valley Rd.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Vander Veer Park Historic District",
            "lat": "41.544659",
            "lon": "-90.574751",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-vandeveerpark.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Vander Veer Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.544659,-90.574751\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Vander Veer Park Historic District consists of the residential neighborhood surrounding Vander Veer Park. The homes in this area were built between 1895 and 1915, most in the Queen Anne and Tudor Revival styles. The development of this neighborhood was one of the first major beautification efforts in the city. The district was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDavenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Fairfield No. 2 School (North Bend School)",
            "lat": "42.090706",
            "lon": "-90.494956",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fairfield No. 2 School (North Bend School)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.090706,-90.494956\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>North Bend Fairfield #2 Schoolhouse is located near Spragueville, Iowa, a community of 89 people. The North Bend Community Center Association was formed to restore the Schoolhouse and the community surrounding it. The building and property were completely covered with weeds, brush, and small trees, and the ground was cluttered with an assortment of junk and cars. The inside of the building was used as a storage site for car parts, piles of scrap iron, and other trash. The Association held a variety of fundraising events. The property was cleaned up and volunteers documented the cemetery. Repairs were made to both the interior and exterior of the building. Electricity and security lighting were added and fencing was installed around the property. The roof was replaced, with new eaves and downspouts. An accessible door and ramp were installed. Original lighting fixtures were rewired and restored. This project was awarded the State Historical Society of Iowa Loren Horton Community History Award and a 2006 Preservation Iowa Award.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t34660 Iron Bridge Rd.<br />Spragueville, IA 52074<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "College Square Historic District",
            "lat": "41.532199",
            "lon": "-90.575639",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-collegesquarehistoricdistrict.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">College Square Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.532199,-90.575639\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The College Square Historic District received its name because a large part of the area once served as the campus for two different colleges, first Iowa College and then Griswold College. The Historic District includes Trinity Episcopal Cathedral, Central High School, a Civil War Monument, and a residential neighborhood made up of houses that are generally in the Queen Anne style. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDavenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Kahl Building (Capitol Theatre)",
            "lat": "41.522575",
            "lon": "-90.578181",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-kahlbuilding(capitoltheatre)-8.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kahl Building (Capitol Theatre)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522575,-90.578181\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kahl Building was built in 1920 by Henry “Hummer” C. Kahl, partner in Walsh-Kahl Construction Company. The building contains office space, retail shops, and the Capitol Theater on the interior. The Capitol was made part of the Radio-Keith-Orpheum (RKO) circuit in 1927. The Orpheum Capitol was a venue for vaudeville shows and movies. It still operates for theatrical performances occasionally and shows irregularly scheduled movies. The building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t326 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.326.8820</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Chicago, Milwaukee, St. Paul, and Pacific Freight House",
            "lat": "41.519978",
            "lon": "-90.579511",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-chicagomilwaukeestpaulandpacificfreighthouse-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chicago, Milwaukee, St. Paul, and Pacific Freight House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.519978,-90.579511\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Chicago, Milwaukee, St. Paul, and Pacific Railroad Freight House was built in 1917, at a time when freight traffic was increasing in Davenport before the country entered World War I. The freight house was strategically built between the railroad and the street so that incoming and outgoing freight could be easily transferred between the two transportation methods and it played a major role in developing the wholesale and commercial economy of Davenport. It was renovated in the 1990s and has been used as a comedy club, sports bar, piano bar and restaurant. As of 2016, it housed several local businesses including a deli, grocery hub and a local brewery. The Chicago, Milwaukee, St. Paul, and Pacific Railroad Freight Station was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 W River Dr.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "F. H. Miller House",
            "lat": "41.535897",
            "lon": "-90.573758",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-fhmillerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">F. H. Miller House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.535897,-90.573758\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built by John Dahms in 1871. He lost his fortune and was forced to sell the house in a sheriff&#039;s sale in 1880 to Frank H. Miller, a wholesale grocer. In 1907 the house was purchased by the Catholic Diocese of Davenport for $26,500 and it became the residence and headquarters for the diocese’s bishop. During the years of the Great Depression, until WWII began, the house was the site for the novitiate for the Sisters of St. Francis. The house was designed by W.L. Carroll in the Italianate style. It is made of red brick and features a wrap-around porch. The three-story structure has elaborate bracketed cornices, and was originally topped with a belvedere. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1527 Brady St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jacob Raphael Building",
            "lat": "41.526534",
            "lon": "-90.577528",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-jacobraphaelbuilding-5.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jacob Raphael Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.526534,-90.577528\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This small commercial block, probably built by Jacob H. Raphael, displays an exceedingly fine ground-floor arcade featuring fluted cast-iron columns. Working first as a peddler, Raphael became the proprietor of his own junk shop at this address in 1876. His business was operated as a tin-shop, rag warehouse, rag and iron dealership, and junk dealership. The building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t628 Harrison St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Linograph Company Building",
            "lat": "41.520493",
            "lon": "-90.579552",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-linographcompanybuilding-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Linograph Company Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.520493,-90.579552\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Linograph Company Building was designed in 1919 by the Davenport architectural firm of Clausen &amp; Kruse, the same firm that designed several other historic buildings in downtown Davenport. The building was an industrial facility for the company, which made typesetting machines. The company occupied the building until at least 1940, and the building was later converted into apartments called the RiverWalk Lofts. It was added to the National Register of Historic Places in 2009.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t420 W River Dr.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Louis P. and Clara K. Best Residence and Auto House",
            "lat": "41.526593",
            "lon": "-90.578137",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-louisp.andclarak.bestresidenceandautohouse-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Louis P. and Clara K. Best Residence and Auto House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.526593,-90.578137\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Louis P. and Clara K. Best residence and auto house was built in 1909 at the top of the bluff at 627 Ripley Street in Davenport. Designed by the prominent Davenport firm of Clausen and Clausen, the house is a prominent example of the Spanish Mission Revival style of domestic architecture, and is one of the first examples of &quot;fireproof residential construction&quot; in the area. It was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t627 Ripley St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://grandviewdavenport.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Outing Club",
            "lat": "41.540968",
            "lon": "-90.572914",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-outingclub.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Outing Club</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.540968,-90.572914\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Two buildings are included in this site, the main clubhouse and a bowling alley. The clubhouse is a square, two-story building with a high hipped roof. The bowling alley was probably built in the 1890s and originally had two stories, but it was struck by lightning in 1916 and remodeled to a one-story design. The Outing Club was a club for Davenport’s social elite, supported through stock purchases by 300 families, started in the early 1890s by Rev. A.M. Judy of First Unitarian Church to offer young adults a secure place to enjoy each other’s company. This site was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2109 Brady St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.324.5284</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://theoutingclub.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Union Electric Telephone and Telegraph",
            "lat": "41.525903",
            "lon": "-90.577313",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-unionelectrictelephoneandtelegraph-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Union Electric Telephone and Telegraph</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.525903,-90.577313\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building illustrates several aspects of turn of the century telephone service - the competitive nature of local telephone franchises and the limited but growing scale of local service. The building&#039;s façade, designed in a style popularly associated with government buildings, was meant to project an air of public service that would reassure and encourage local residents to subscribe to Union’s telephone system. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t602 Harrison St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "W. D. Petersen Memorial Music Pavilion",
            "lat": "41.518796",
            "lon": "-90.579693",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-wdpetersenmemorialmusicpavilion-6.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">W. D. Petersen Memorial Music Pavilion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.518796,-90.579693\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The W.D. Petersen Memorial Music Pavilion, built in 1924 and patterned after the Spreckles Music Pavilion in San Diego, is one of few Iowa examples of Spanish Renaissance Revival style. It is one of the many improvement made to the riverfront by the Davenport Levee Improvement Commission, a group that worked to create a beautiful, multi-use riverfront beginning in 1911. Commission member W. D. Petersen funded the pavilion and it was dedicated to his late daughter, Wilma H. Petersen. The pavilion is the only one remaining in the City of Davenport, though band shells were once located in Fejervary, VanderVeer and Schuetzen parks. Davenport’s large, musically inclined German population is usually credited for the presence of so many public music facilities. The W.D. Petersen Memorial Music Pavilion was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBeiderbecke Dr.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First National Bank of Davenport",
            "lat": "41.536203",
            "lon": "-90.575332",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-firstnationalbankdavenport-3-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First National Bank of Davenport</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.536203,-90.575332\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First National Bank of Davenport was established in 1963 and while it was new to Davenport, it was the 14th bank in the Brenton Bank Group that was established in Dallas Center, Iowa in 1881. The First National Bank of Davenport moved from its temporary location in the Professional Arts Building on Locust Street to the newly built bank building on August 23, 1967. The First National Bank of Davenport is a three-story, poured concrete and steel girder building in the Modern style. The building was designed by Stewart, Robison and Laffan and Associates of Davenport and was completed at a cost of more than $1,000,000. Between 1958 and 1980, the architecture firm of Stewart-Robison-Laffan completed a wide range of projects, the majority of which reflected the prevailing influence of mid-century modern design. The construction of the bank building, along with increased automobile traffic, made a significant impact on the shift from a historically residential neighborhood to one dominated by commercial interests. The First National Bank of Davenport was added to the National Register of Historic Places in 2018.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1606 Brady St.<br />Davenport, IA 52806<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Keokuk National Cemetery",
            "lat": "40.398307",
            "lon": "-91.407212",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-keokuknationalcemetery.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Keokuk National Cemetery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.398307,-91.407212\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Keokuk National Cemetery is one of 134 national cemeteries across the United States and includes remains of veterans from every war and branch of service since it was established, in 1862. During the Civil War, Keokuk was used as a base for treating wounded soldiers because of the proximity of the College of Physicians and Surgeons. Wounded soldiers from both the North and South were transported up the Mississippi River to be treated at the five different Army general hospitals in Keokuk. Along with the hospitals came the development of the Keokuk National Cemetery. It is the resting place of more than 4,000 soldiers, some of whom were reinterred here from Fort Des Moines and Fort Yates, North Dakota. In 1997, the Keokuk National Cemetery was added to the National Register of Historic Places.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1701 J St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.524.1304</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cem.va.gov/cems/nchp/keokuk.asp\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Palmer College of Chiropractic Heritage Court",
            "lat": "41.529042",
            "lon": "-90.574311",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-monument-palmerheritagecircle-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Palmer College of Chiropractic Heritage Court</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529042,-90.574311\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Heritage Court is home to the large bronze busts of three generations of Palmers; Daniel David Palmer, usually called D.D.; his son, Bartlett Joshua Palmer, D.C., called B.J., and B.J.’s wife, Mabel Heath Palmer, D.C.; B.J. and Mabel’s son, David D. Palmer, D.C., often called Dr. Dave.  The Heritage Wall was built from bricks taken from the Ryan Building, which was the location of D.D. Palmer’s first adjustment in downtown Davenport.  The remains of B.J. and D.D. are kept within the wall.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 Brady St.<br />Palmer College of Chiropractic Campus<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Palmer College of Chiropractic Museum",
            "lat": "41.526732",
            "lon": "-90.574770",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-historymuseum-palmerchiro-2-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Palmer College of Chiropractic Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.526732,-90.574770\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Palmer Foundation for Chiropractic History has created historical displays located throughout the Davenport campus. Many of the exhibits on Palmer College of Chiropractic’s main campus are located throughout Vickie Anne Palmer Hall, 115 W. 7th Street, Davenport, Iowa. Use Main Street to access 7th Street. Parking is available on both sides of the building, and there is a handicapped accessible ramp. Self-guided tour brochures for the Davenport campus are available from the Welcome Center in the Academic Health Center building as well as in the lobby of Vickie Ann Palmer Hall. The locations of all other exhibits are listed in this brochure.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 W. 7th St.<br />Palmer College of Chiropractic Campus<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "American Commercial and Savings Bank",
            "lat": "41.522288",
            "lon": "-90.575930",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-americancommercialandsavingsbank.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">American Commercial and Savings Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522288,-90.575930\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Henry Lischer and H.H. Anderson founded the German Savings Bank of Davenport in 1869 to serve Davenport&#039;s large German community. In 1906, it absorbed Citizen&#039;s National Bank and by 1916 it had become the largest bank in Iowa. Because of anti-German sentiments during World War I, the bank was renamed American Commercial and Savings Bank. As a result of the Great Depression in the 1930s, it absorbed Iowa National Bank, Citizens Trust &amp; Savings Bank and Farmers and Merchants Bank. By the time President Roosevelt signed the Emergency Banking Act in 1933, the American Commercial and Savings Bank was one of only five banks still operating in Davenport and was one of only two banks to reopen after the depression as the Davenport Bank and Trust Company. The bank was sold to Norwest Bank of Minneapolis in 1992 and became a part of Wells Fargo Bank in 1998. The American Commercial Savings Bank was the tallest building in Davenport when it was built in 1927. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Argyle Flats",
            "lat": "41.527735",
            "lon": "-90.574476",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-argyleflats.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Argyle Flats</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.527735,-90.574476\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Argyle is an excellent example of apartment house design in the early 20th century. It was designed by Claussen &amp; Burrows and constructed in 1900. It is unique because it was built on a slope and the hyphen, the middle section which connects the two sides, shows how the north and south sides of the building are at different heights. The hyphen was designed to minimize the fact that the building is really two separate blocks. Palmer College now owns the building and the site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t732 Brady St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Building at 202 W 3rd St",
            "lat": "41.522639",
            "lon": "-90.575853",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-buildingat202w3rdst-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Building at 202 W 3rd St</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522639,-90.575853\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building, constructed in 1916, is among the few examples of the use of architectural terracotta recorded in Davenport. The building features a unique design, with two street facades of large plate glass windows. The prime commercial location has been home to a cigar store, shoe shop, optical shop, and candy business over the years. It also served as the offices of the Quad City Steamwheelers, an arena football team that played in Moline, Illinois from 2000-2009. The Building at 202 West Third Street was added to the National Historic Register in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t202 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Calvary Baptist Church/First Baptist Church",
            "lat": "41.534322",
            "lon": "-90.572255",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-calvarybaptistchurch-firstbaptistchurch.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Calvary Baptist Church/First Baptist Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.534322,-90.572255\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This church is home to a small protestant congregation in Davenport. Although it played no statewide religious role and had no prominent religious leaders associated with it, it holds great local importance as a place of worship and community. The church was organized in 1851 after a split with another Baptist Church. A new church building was erected in 1857 and at the end of the Civil War in 1864, the two congregations united as Calvary Regular Baptist Church. The building is still in use as a church today and was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1401 Perry St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.323.2765</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.fbc-davenport.org/Site/Welcome.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Central Office Building",
            "lat": "41.522616",
            "lon": "-90.576465",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-centralofficebuilding-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Central Office Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522616,-90.576465\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Central Office Building was constructed in 1906 and housed retail shops on the first floor and professional offices on the upper floors. It was designed for the Petersen family by the local firm Clausen &amp; Clausen. The building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t230 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "City Market",
            "lat": "41.524844",
            "lon": "-90.575215",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-citymarket-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">City Market</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.524844,-90.575215\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The City Market was constructed in 1872 as a public market to bring the city&#039;s merchants and their goods together in a single location. Unfortunately, merchants needed to close their regular shops to operate a stand at the market, which was an unprofitable situation and many merchants were not interested in participating. The building later became the headquarters of the Davenport Police Department, Armory Company B, the Bridewell House of Detention and the city ambulance station. The City Market was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t120 W 5th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Daniel T. Newcome Double House",
            "lat": "41.527489",
            "lon": "-90.574353",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-danieltnewcomedoublehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Daniel T. Newcome Double House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.527489,-90.574353\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located on the Brady St. Hill, this unusual double-entrance house was the residence of prosperous farmer Daniel Newcome and his wife Patience. After Daniel&#039;s death in 1870, his widow donated funding and this site for the Presbyterian Memorial Chapel and the Academy of Sciences. The style of the house is Second Empire, designed by noted local architect T.W. McClelland. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t722 Brady St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Davenport City Hall",
            "lat": "41.523736",
            "lon": "-90.576639",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-davenportcityhall-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Davenport City Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.523736,-90.576639\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Davenport City Hall was completed in 1895. It was designed by John W. Ross in the Romanesque Revival style and built by the Morrison Bros. The building was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t226 W 4th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.326.7711</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofdavenportiowa.com/eGov/apps/locations/facilities.egov?view=detail&amp;id=5\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Edward I. Templeton House",
            "lat": "41.533513",
            "lon": "-90.572355",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-edwardtempletonhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Edward I. Templeton House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.533513,-90.572355\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house is a highly representative example of late 19th-century local housing derived from the Queen Anne and Shingle styles. The house retains the rich variety of shingling, the Eastlake porch, and a number of stained glass elements. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1315 Perry St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ficke Block",
            "lat": "41.522758",
            "lon": "-90.576795",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-fickeblock-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ficke Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522758,-90.576795\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1899-1900 in a late commercial Italianate style, the Ficke Block was first occupied by the McCormick Division of the International Harvesting Company of America. The first floor was used as offices and the upper floors as residential flats. This site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t307 Harrison St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fred Finch House",
            "lat": "41.527440",
            "lon": "-90.575247",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-fredfinchhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fred Finch House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.527440,-90.575247\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Local architect Dietrich J. Harfst built this custom-designed double house in 1904-1905 in the locally popular Neo-Georgian Revival style for Fred Finch and his wife Anna. Finch was the City and County Assessor and had formerly been with the Farmers and Mechanics Savings Bank. St. Anthony’s Church currently owns the double house, which is used as a residence for nuns. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t719 Main St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry Berg Building",
            "lat": "41.522614",
            "lon": "-90.576776",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-henrybergbuilding-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry Berg Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522614,-90.576776\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built between 1875 and 1880, the Henry Berg Building was home to Berg&#039;s sporting goods store, which first opened in 1860. The building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t246 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Peter J. Paulsen House",
            "lat": "41.527078",
            "lon": "-90.575236",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-peterjpaulsenhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Peter J. Paulsen House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.527078,-90.575236\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This late 19th-Century Queen Anne style house features a wraparound veranda and among other decorative elements. It maintains its original surface textures. The house was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t705 Main St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Renwick House",
            "lat": "41.534936",
            "lon": "-90.573728",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-renwickhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Renwick House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.534936,-90.573728\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Renwick House is an interesting example of Georgian Colonial Revival Architecture in Davenport. The house, as it is now, is the result of a major remodeling plan around 1905 to what may have been an Italianate residence built in the mid-19th century. The house may have been built as early as 1867 since members of the Renwick family occupied the property from that date through the turn of the century. This site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1429 Brady St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. John Methodist Episcopal Church",
            "lat": "41.533797",
            "lon": "-90.573656",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-stjohnmethodistepiscopalchurch.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. John Methodist Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.533797,-90.573656\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. John’s Methodist Episcopal Church was built in 1903 and is a good example of turn-of-the-century Gothic Revival style. It was built of limestone and features a large, rectangular sanctuary and an imposing corner tower. The church was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t109 E 14th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.324.5278</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.stjohnsumc-dav.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Luke&#039;s Hospital",
            "lat": "41.527789",
            "lon": "-90.575022",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-stlukeshospital.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Luke&#039;s Hospital</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.527789,-90.575022\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building consists of an early 1850s Italianate house which was enlarged through additions of a T-plan wing that nearly tripled the available floor space. It was originally built as the private residence of Daniel Newcomb, a former Virginian scout who briefly lived in Iowa before moving on to serve Oregon in their Constitutional Convention and later as an Oregonian Territorial and Statehouse Representative. This building is more commonly associated with the middle years of the hospital movement in the city. It was later enlarged to become a nursing school, and then part of a larger college campus. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t121 W 8th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Trinity Episcopal Cathedral",
            "lat": "41.531577",
            "lon": "-90.574752",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-trinityepiscopalcathedral.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Trinity Episcopal Cathedral</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.531577,-90.574752\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This cathedral is a gracious Gothic Revival structure of native rock-faced random limestone, resting on a spacious five-acre area of green space in a largely urbanized area of Davenport. The building features a semicircular apse, a small vestry on the north side, and small vestibule on the southwest side. The Trinity Episcopal Cathedral was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t121 W 12th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.323.9989</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.qctrinity.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Union Station and Burlington Freight House and Visitor&#039;s Center",
            "lat": "41.519805",
            "lon": "-90.577773",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-unionstationburlingtonfreighthousevisitorscenter-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Union Station and Burlington Freight House and Visitor&#039;s Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.519805,-90.577773\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Union Station and Burlington Freight House are important products of Davenport&#039;s railroad history. Rail service came to the city after the first railroad bridge across the Mississippi River was constructed between Davenport and Rock Island, Illinois in 1856. By 1895, several rail lines passed through Davenport, making buildings like these increasingly important. Union Station and the Burlington Freight House were built in 1924. The station is a two-story Classical Revival brick building on a concrete foundation. It features stylized Greek temple fronts on both the north and south sides, emphasizing the building&#039;s entrances. The freight house is a single story brick building, featuring loading docks and oversized doors on both the north and south sides to facilitate the transfer of cargo. Passenger service to Union Station was discontinued in the 1950s, and the building has since become a visitor&#039;s center. This site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 S Harrison St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "B. J. Palmer House",
            "lat": "41.528494",
            "lon": "-90.574196",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-bjpalmerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">B. J. Palmer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.528494,-90.574196\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Louis C. Dessaint was a local lumber mill owner who occupied this house from the time it was built in 1874 until 1912. In 1912, Bartlett Joseph “B.J.” Palmer (1882-1961) and his wife, Mabel, moved into the house. B.J. Palmer’s father, Daniel David “D.D.” Palmer (1845-1913) discovered the chiropractic philosophy and treatment, and founded The Palmer School and Cure in 1897. The school later became the Palmer College of Chiropractic and is the field’s largest education institution in the country. B.J. Palmer assumed responsibility of the school in 1906 and his contributions included extensive research and developing higher standards for chiropractic education. He also fought numerous legal and legislative battles to secure a place for chiropractic treatment in the health sciences. His wife, Mabel Palmer became a Doctor of Chiropractic and was an instructor at the school for more than 30 years. B.J. and Mabel’s son, David D. Palmer followed in the family’s footsteps and became the president of the school in 1961 and made many improvements to the facility and worked toward the accreditation of the school. The B. J. Palmer House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t808 Brady St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hiram Price/Henry Vollmer House",
            "lat": "41.527567",
            "lon": "-90.573328",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-hirampricehenryvollmerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hiram Price/Henry Vollmer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.527567,-90.573328\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This large Italian Villa style house is handsomely sited, allowing full appreciation of its fine cornice, tower, and unusual bow-fronted wing. This residence has been home to two important Davenport residents: Hiram Price and Henry Vollmer. Vollmer, an attorney, political leader, and vocal German-American spokesman, would serve as Mayor of Davenport before serving in the US Congress for one year, in 1914 (Democrat). Hiram Price resigned as Paymaster General for Iowa’s troops during the Civil War after being elected to Congress. He served several terms in Congress, and also worked as a leading banking officer. The house was added to the National Register of HIstoric Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t723 Brady St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Davenport Hose Station No.3",
            "lat": "41.538410",
            "lon": "-90.570121",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-davenporthosestation3.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Davenport Hose Station No.3</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.538410,-90.570121\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1921, this former fire station continues a local tradition of using a “Mediterranean” theme for fire prevention architecture. It was built to house the Hose Company No. 3 of the Davenport Fire Department and was discontinued by 1966. This site was added to the National Historic Register in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t326 E Locust St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Democrat Building",
            "lat": "41.523898",
            "lon": "-90.573868",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-democratbuilding-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Democrat Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.523898,-90.573868\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Democrat Building is associated with the post-1900 success of the Davenport Democrat Company. A short time after this building was constructed, the Democrat was purchased by the Lee Newspaper Syndicate. The Democrat’s evolution was typical of the trend to merge small, independent newspapers under larger corporations. The Democrat Building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t407 Brady St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Donahue Building",
            "lat": "41.522589",
            "lon": "-90.574764",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-donahuebuilding-4.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Donahue Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522589,-90.574764\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in the 1890s by James P. Donahue, the Donahue Building is particularly noteworthy for the basement-level shops that are reached by steps down from the sidewalk level. Donahue was the head of the Davenport Water Company and held the company’s offices in the Donahue Building. The building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t114 W 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Finley Guy Building",
            "lat": "41.538377",
            "lon": "-90.570287",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-finleyguybuilding.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Finley Guy Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.538377,-90.570287\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Finley M. Guy had this structure built in 1928 to house his drug store. A second shop space on the ground floor was occupied by the Lorenzen grocery and meat market. Guy lived in an apartment on the second floor of the building. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310 E Locust St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Cork Hill Historic District",
            "lat": "41.531979",
            "lon": "-90.571141",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-corkhillhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cork Hill Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.531979,-90.571141\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cork Hill District is a part of the historical and architectural development that characterizes much of the larger LeClaire Reserve. The district lies in the heart of Davenport’s non-German neighborhood and holds the traditional boundary between the Germans on the west and the Irish and Yankee families on the east. The district was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDavenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "St. Anthony&#039;s Catholic Church Complex",
            "lat": "41.523823",
            "lon": "-90.574885",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-stanthonyscatholicchurchcomplex.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Anthony&#039;s Catholic Church Complex</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.523823,-90.574885\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The original stone portion of St. Anthony’s (now the nave) excellently portrays early efforts to build monumental structures in pioneer Davenport. It is the earliest and best preserved church, typifying the efforts of other churches established in the 1840’s and 50’s. Many of these were built of local materials and were only partially finished. This was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t407 Main St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.322.3303</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.stanthonysdavenportiowa.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dillon Memorial",
            "lat": "41.519950",
            "lon": "-90.575593",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-dillonmemorial-4.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dillon Memorial</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.519950,-90.575593\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dillon Fountain is a product of the redevelopment of the downtown riverfront undertaken by the Davenport Levee Improvement Commission and the City of Davenport between 1911 and 1931. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Main St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-markers.png",
            "title": "Palmer College of Chiropractic Historic Marker",
            "lat": "41.529795",
            "lon": "-90.573407",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-historicmarker-palmerchiroschool-1-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-markers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Palmer College of Chiropractic Historic Marker</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529795,-90.573407\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Palmer College of Chiropractic is the first chiropractic school in the world.  In 1897, Daniel David Palmer founded the Palmer School and Infirmary in the Ryan Building on the corner of Second and Brady Streets in Davenport. By 1906, the rechartered Palmer School of Chiropractic had moved to its present location “atop the Brady Street Hill.&quot;</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1000 Brady St.<br />Palmer College of Chiropractic Campus<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First National Bank Building",
            "lat": "41.521161",
            "lon": "-90.575812",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-firstnationalbankbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First National Bank Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.521161,-90.575812\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building, the third on this site occupied by this firm, is associated with Davenport’s financial prominence in the decades preceding the Great Depression. The First National Bank was established in 1863 with Austin Corbin as President and was the first bank to open in the U.S. under the National Banking Act of 1863. This building was constructed in 1923, only a few years before the bank closed during the Great Depression. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 W 2nd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First Presbyterian Church",
            "lat": "41.536400",
            "lon": "-90.570015",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-firstpresbyterianchurch.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Presbyterian Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.536400,-90.570015\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First Presbyterian Church was one of the first protestant churches to organize in 1839. It constructed buildings in 1844, 1854, and 1864, before this building, which was completed in 1899. The church&#039;s membership continued to grow during the early 20th century, reaching its height in 1936 with 1500 people. The church was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t316 E Kirkwood Blvd.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.326.1691</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.fpcdavenport.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hibernia Hall",
            "lat": "41.524076",
            "lon": "-90.573888",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-hiberniahall-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hibernia Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.524076,-90.573888\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Hibernia Hall was a product of Davenport’s Irish community and their fraternal organization during the 1880s. Because of the hall’s downtown location and half-century association with the Ancient Order of Hibernians, this building remains a prominent example of local Irish immigrant culture. This site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t421 Brady St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "J. H. C. Petersen and Sons Store",
            "lat": "41.521122",
            "lon": "-90.575262",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-j.h.c.petersenandsonsstore-6.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J. H. C. Petersen and Sons Store</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.521122,-90.575262\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The J.H.C. Petersen and Sons Store is an important local example of the late 19th-century development of the “department store,” built for the city’s leading retail firm. Clearly modeled on Burnham &amp; Root’s Rookery Building, it illustrates the impact of Chicago architecture on Iowan designers and businessmen. Built in 1892 and operated under the name J.H.C. Petersen and Sons, the store was designed according to the newest marketing principles of the day with a number of specialized departments under one roof. The building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t123 W 2nd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John Forrest Block Building",
            "lat": "41.523704",
            "lon": "-90.573823",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-johnforrestblockbuilding-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Forrest Block Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.523704,-90.573823\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Forrest Block was built in 1875 for John Forrest. Forrest was a capitalist, investing his resources in several downtown buildings which housed a variety of services including a doctor’s office, a billiards parlor, a YMCA meeting plac,e and a series of flats on second and third floors. It was designed by F.G. Clausen and built by John Whitaker. The Forrest Block was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 Brady St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Kimball-Stevenson House",
            "lat": "41.525909",
            "lon": "-90.573376",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-kimballstevensonhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kimball-Stevenson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.525909,-90.573376\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kimball-Stevenson House was built between 1871 and 1873 and is a representative example of Davenport’s Italianate residential architecture. Abel Kimball, Superintendent of the Iowa division of the Chicago, Rock Island and Pacific Railroad, occupied this house until 1873. The house was then purchased by Dr. John Stevenson, who stayed until 1890. Since Thomas W. McClelland, a prominent local architect, owned the property briefly in 1873, it is possible that he designed the house. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t116 E 6th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Nicholas J. Kuhnen House",
            "lat": "41.527126",
            "lon": "-90.573107",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-nicholasjkuhnenhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nicholas J. Kuhnen House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.527126,-90.573107\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This was the residence of Nicholas J. Kuhnen, an important cigar manufacturer and wholesale jobber in Davenport from before the Civil War through the early 20th century. The house was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t702 Perry St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Old City Hall",
            "lat": "41.525091",
            "lon": "-90.574275",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-oldcityhall-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old City Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.525091,-90.574275\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Old City Hall was built in 1857 as an engine house for the Davenport fire department. It became the City Council&#039;s chambers in 1858 and remained the center of municipal government until a new building was constructed in 1895. This site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t514 Brady St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Philip Worley House",
            "lat": "41.524205",
            "lon": "-90.573846",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-philipworleyhouse-4.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Philip Worley House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.524205,-90.573846\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1860, the Philip Worley House is a good example of Davenport’s Greek Revival domestic architecture. It was probably built by Dr. Philip A. Worley, a homeopathic physician. He had his office and residence at this location. This site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t425 Brady St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Putnam-Parker Block",
            "lat": "41.521504",
            "lon": "-90.574897",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-putnamparkerblock.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Putnam-Parker Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.521504,-90.574897\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Putnam-Parker Block is made up of commercial buildings in downtown Davenport. The Putnam Building was completed in 1910. W.C. Putnam bought the property in 1895 and planned to place the original hotel building with a modern office building, a plan that was carried out after his death in 1906. Since its completion, the Putnam Building has housed a variety of retail and professional offices. The M.L. Parker Building was built in 1922 and housed a department store until 1972. The building was then converted into office space. Both buildings were designed by Chicago architect Daniel Burnham. The Putnam-Parker Block was added to the National Registrer of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDavenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Renwick Building",
            "lat": "41.523220",
            "lon": "-90.574369",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-renwickbuilding.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Renwick Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.523220,-90.574369\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Renwick Building is one of many Davenport buildings inspired by the work of Chicago Architects during the 1890s. The front of the building is opened up by large window expanses within a pier-and-spandrel frame. This building was erected in 1896-1897 by William Renwick. Henry Huebotter operated “Davenport Furniture &amp; Carpet Company” from this location when the building was first occupied. This site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t324 Brady St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Roslyn Flats",
            "lat": "41.528018",
            "lon": "-90.572335",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-roslynflats.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Roslyn Flats</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.528018,-90.572335\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Roslyn Flats is a very well preserved example of early 20th-century multi-family residential architecture in Davenport. Notable features are the 2-story porch tucked between projecting corner bays, brick pilasters, and small Adamesque oval windows. The building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t739 Perry St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wupperman Block/I.O.O.F. Hall",
            "lat": "41.524974",
            "lon": "-90.574342",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-wuppermanblockioofhall-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wupperman Block/I.O.O.F. Hall</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.524974,-90.574342\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wupperman Block is a relatively well-preserved remnant of Davenport’s pre-Civil War commercial architecture, and was occupied by the original tenant, the local chapter of the Independent Order of Odd Fellows, for over a century. The cast-iron shop fronts are largely intact, and although the cornice is not original, it does not detract from the building&#039;s historical integrity. The Wupperman Block was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t508 Brady St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "River Music Experience",
            "lat": "41.521031",
            "lon": "-90.575347",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-artsperforming-rivermusicexperience-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">River Music Experience</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.521031,-90.575347\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">161.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The River Music Experience allows visitors to more fully experience the music of the Mississippi River through live performances in a fun and hip atmosphere. Additionally, the RME also features exhibits, which detail the historical past and transformation of the Mississippi River music over time.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t129 Main St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.326.1333</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://rivermusicexperience.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-hotels.png",
            "title": "Adler Mississippi Hotel/RKO Orpheum Theatre",
            "lat": "41.522508",
            "lon": "-90.573767",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-adlermississippihotelrkoorpheumtheatre.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-hotels.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Adler Mississippi Hotel/RKO Orpheum Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522508,-90.573767\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mississippi is the last of the major downtown hotels built before World War II and is accompanied by the RKO Orpheum Theater. Conceived during the prosperous twenties, the Art Deco complex was completed in 1931, just as the Great Depression was taking hold. The theater’s 2,700 seats made it the largest in Iowa at the time. This site was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t106 E 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.326.8500</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.adlertheatre.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-hotels.png",
            "title": "Hotel Blackhawk",
            "lat": "41.522768",
            "lon": "-90.572192",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-historichotel-hotelblackhawk.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-hotels.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Blackhawk</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522768,-90.572192\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162mi.</span></div>\n\t\t</div>\n\n\t\t<p>Originally built in 1915, this downtown Davenport hotel has been restored to its former grandeur, transporting guests to a time when the world moved more slowly and life was less complex. Yet while the historic character has been maintained, the hotel has been updated to include modern conveniences. Hotel Blackhawk was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 E 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 888.525.4455</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://hotelblackhawk.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Alice French House",
            "lat": "41.529725",
            "lon": "-90.570197",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-alicefrenchhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alice French House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529725,-90.570197\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Alice French House was the residence of one of Davenport’s most important literary figures. Alice French, pen name Octave Thanet, was a regional fiction writer from 1878 to 1910 and was the principal author of a group of local writers known as the &quot;Davenport Writers Group&quot;. Her first novel was &quot;Knitters In The Sun&quot; which was a best seller in 1897. She was the first Iowa author to receive national recognition and her work was published nationally for several decades before she tired of writing and dedicated her later years to philanthropic work. This was one of several houses occupied by French and has the strongest association with her literary career. It was constructed in 1906 in the Queen Anne/Colonial Revival style and has since been divided into several apartment units. The Alice French House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t321 E 10th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "performing-arts-centers.png",
            "title": "Adler Theatre",
            "lat": "41.522567",
            "lon": "-90.572962",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-adlertheatre.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/performing-arts-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Adler Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522567,-90.572962\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162mi.</span></div>\n\t\t</div>\n\n\t\t<p>The beauty of the original Radio-Keith-Orpheum&#039;s Art Deco style was reflected in its gold leaf ceiling, crystal light fixtures, and black ebony, walnut, and marble detail. Much of the original movie theatre style remains and continues to recall the rich history of the Adler Theatre. Today, the beautifully restored theatre presents a diverse line-up of live, theatrical productions featuring celebrity headliners, first-rate Broadway shows, comedians, and more!</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t136 E 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.326.8500</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.adlertheatre.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Edward S. Barrows House",
            "lat": "41.525954",
            "lon": "-90.571630",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-edwardsbarrowshouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Edward S. Barrows House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.525954,-90.571630\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built beginning in 1850, the Edward S. Barrows house is an example of the Classic Revival residential style. Barrows was born in Virginia and may have chosen the house style, early for the period, by the enthusiasm for Grecian styles expressed by the 18th- and early 19th-century architecture in Virginia. He came to Davenport in 1836 after serving as a physician in the U.S. Army during the campaign against the Seminole Indians in Florida. He was one of the two earliest physicians in the Wisconsin Teritory. His house was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t224 E 6th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hose Station No.1",
            "lat": "41.520851",
            "lon": "-90.572433",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-hosestationno1-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hose Station No.1</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.520851,-90.572433\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building is associated with early fire prevention efforts in the Davenport, and is the oldest fire station in existence in this area. The transition from volunteer to paid fire fighting occurred shortly after the station was built, in 1877. This building has also served the community as a bell tower for the Catholic Church and as the Battery B First Artillery clubhouse for National Guard veterans of the Mexican 1916 campaign. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t117 Perry St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "J.W. Stewart House",
            "lat": "41.525920",
            "lon": "-90.572135",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-jwstewarthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">J.W. Stewart House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.525920,-90.572135\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Italianate style house was built in 1865. Of particular interest is the projecting frontispiece, with round-arched doorway and similarly-arched window above, framed by short columns on high pedestals. The J.W. Stewart House was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t212 E 6th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Lincoln Elementary School",
            "lat": "41.527133",
            "lon": "-90.570387",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-lincolnelementaryschool.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lincoln Elementary School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.527133,-90.570387\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162mi.</span></div>\n\t\t</div>\n\n\t\t<p>The school is an excellent example of modern elementary school architecture, featuring large kindergarten rooms and facilities for community use. This school was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t318 E 7th St.<br />Davenport, IA 52804<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Schmidt Block",
            "lat": "41.522285",
            "lon": "-90.573407",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-schmidtblock.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Schmidt Block</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522285,-90.573407\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162mi.</span></div>\n\t\t</div>\n\n\t\t<p>Fritz T. Schmidt built the Schmidt Block commercial building in 1896 to house the wholesale offices for the family’s wine and liquor business. The Schmidt Block is an excellent illustration of the adaptation of Richardsonian Romanesque design to a commercial structure. The use of rock-faced sandstone, particularly at the heavy window arches, is a typical feature of this style. The Schmidt Block is the only commercial building recorded in the Davenport area to use the Richardsonian style in stone. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115 E 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Union Savings Bank and Trust",
            "lat": "41.522183",
            "lon": "-90.573868",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-unionsavingsbankandtrust.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Union Savings Bank and Trust</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.522183,-90.573868\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Union Savings Bank and Trust building employs a simplified Neoclassicism in harmony with other early 20th-century office blocks in Davenport’s central business district. It is a product of the growth of Davenport&#039;s banking business between 1900 and 1930, and it was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t229 Brady St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "United States Post Office and Court House",
            "lat": "41.523279",
            "lon": "-90.573136",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-unitedstatespostofficeandcourthouse-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">United States Post Office and Court House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.523279,-90.573136\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in the mid-1930s, the United States Post Office and Court House is an excellent example of multiple-purpose federal architecture designed for a small city on the eve of the Great Depression. Its Art Moderne architectural styling blends a traditional and federal preference for classically-influenced government buildings with the progressive notions of streamlined, efficient, and modern government form and function. It was added to the National Register of Historic Places on 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t131 E 4th St.<br />Davenport, IA 52802<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Joseph Mallet House",
            "lat": "41.529762",
            "lon": "-90.569004",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Joseph Mallet House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529762,-90.569004\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was probably built by Joseph Mallet around 1865 and appears to have been occupied by a series of tenants rather than owners. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t415 E 10th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Joseph Motie House",
            "lat": "41.529753",
            "lon": "-90.568748",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-josephmotiehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Joseph Motie House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529753,-90.568748\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built around 1860, the Joseph Motie House is one of a number of brick houses built in a simplified Italianate style. Motie was a bricklayer and may have done the masonry work on the house. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t421 E 10th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "McBride-Hickey House",
            "lat": "41.526985",
            "lon": "-90.569417",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-mcbridehickeyhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McBride-Hickey House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.526985,-90.569417\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The McBride-Hickey House is an excellent example of a stylistic transition in Davenport&#039;s residential architecture during the 1900s. A variety of irregular corner treatments are indicative of Victorian asymmetry while the main block suggests the Georgian Revival style. The house was built in 1890 by Patrick McBride, an Irish immigrant who operated a grocery store. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t701 Iowa St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Thomas Murray House",
            "lat": "41.536407",
            "lon": "-90.565641",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-thomasmurrayhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Thomas Murray House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.536407,-90.565641\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Thomas Murray House is an example of post-Civil War Italianate style in Davenport. Characteristic features include the boxy form, hipped roof with deck, projecting side pavilions, and a prominent veranda. The house&#039;s design reflects the changes that transformed the earliest local versions of the style to a fully Victorian expression. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t628 Kirkwood Blvd.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "W. C. Cameron House",
            "lat": "41.535917",
            "lon": "-90.565869",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-wccameronhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">W. C. Cameron House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.535917,-90.565869\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cameron House is a good example of the “McClelland house”—one of Davenport’s most distinctive 19th-century house forms. It was built in 1880 and the Cameron family moved into the house in 1884. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t623 Kirkwood Blvd.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Crescent Warehouse Historic District",
            "lat": "41.524355",
            "lon": "-90.569688",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Crescent Warehouse Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.524355,-90.569688\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This area played an important part in the commercial and industrial development that occurred between 1900 and 1950 at the east end of Davenport&#039;s central business district. The multi-block area is located between the two &quot;crescents&quot; created by the elevated track beds of the former Chicago, Rock Island and Pacific Railroad as the main line passes through Davenport and connects to the railroad yards. Survival of an intact collection of multi-story warehouses, factories, and railroad structures makes the district locally unique and rare within the state of Iowa. This was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDavenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "East 14th Street Historic District",
            "lat": "41.534059",
            "lon": "-90.566904",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-east14sthistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">East 14th Street Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.534059,-90.566904\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The East 14th Street District presents an excellent illustration of trends in middle-class housing in Davenport during the late 19th and early 20th centuries. During this period, popular tastes turned gradually from the Victorian style to more regular, symmetrical forms of the turn-of-the-century Colonial Revival design. The district was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDavenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Sacred Heart Roman Catholic Cathedral Complex",
            "lat": "41.530261",
            "lon": "-90.569119",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-sacredheartromancatholiccathedralcomplex.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sacred Heart Roman Catholic Cathedral Complex</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530261,-90.569119\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Gothic Revival church was designed by Chicago architect J.J. Egan. With ground occupying a full block, the church is a distinctive feature amid closely spaced houses in a neighborhood built during the last half of the 19th century. Sacred Heart Cathedral was influential in the establishment of the Davenport Catholic Diocese in 1881. As the see city for the southern half of Iowa from 1881-1911, Davenport had an important statewide role. This site was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t406 E 10th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ball-Waterman House",
            "lat": "41.536371",
            "lon": "-90.566072",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-ballwatermanhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ball-Waterman House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.536371,-90.566072\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built around 1880 for J.W. Ball and was purchased by Judge C.M. Waterman in 1893. Waterman became an Iowa Supreme Court Justice five years after he bought the house and joined the local law firm of Lane and Waterman in 1902. The late Queen Anne style of architecture is reflected in the strongly vertical composition and picturesque tower. The Tudor influence, which began to appear in Davenport by the 1890s and achieved wide local popularity after World War I, is expressed in half-timberwork and the wide &quot;Tudor arches&quot; of the veranda. The Ball-Waterman House was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t616 Kirkwood Blvd.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Leon &quot;Bix&quot; Beiderbecke House",
            "lat": "41.539152",
            "lon": "-90.565037",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-leonbiederbeckehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Leon &quot;Bix&quot; Beiderbecke House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.539152,-90.565037\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1895, the Leon Bismarck “Bix” Beiderbecke House was home to the now-legendary cornet player and jazz composer of the 1920s. He was born in this house in 1903 and lived there until September 1921, when he left for Lake Forest Academy near Chicago. This was the beginning of his relatively brief but important musical career that took him to Chicago, New York, St. Louis, and elsewhere around the United States before dying prematurely in 1931 at age 28. His jazz music would directly influence Bing Crosby and Hoagy Carmichael, among others, and Beiderbecke was posthumously awarded many honors and inductions, including a special Grammy recognition and as the namesake of Asteroid 23457 Beiderbecke, in 1989. This site was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1934 Grand Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.324.7170</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.bixsociety.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Chief Keokuk&#039;s Grave",
            "lat": "40.411857",
            "lon": "-91.379640",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-monument-chiefkeokuk.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Chief Keokuk&#039;s Grave</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.411857,-91.379640\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Amidst rumors that the United States Army was coming to destroy the Native American Village of Peoria, along the Illinois River, Native Americans found themselves stricken with fear. Searching for answers, a young Sauk Native American was named war chief and offered hope and direction. The young leader later became known as Chief Keokuk. \r\n\r\nKeokuk was a talented diplomat and was used to negotiate treaties and balance the interests of authorities and the Sauk and Fox (Meskwaki) tribes. During his residence in Iowa, Keokuk made multiple trips to Washington, D.C. where he worked to negotiate tribal lands and keep peace among Indian tribes and white settlers. \r\n\r\nIn 1834, the city of Keokuk, Iowa was named for the chief. While there is no evidence that Chief Keokuk was connected to the town, about this time he began to be considered a notable American Indian by white Americans due to his diplomacy skills and accomplishments.\r\n\r\nChief Keokuk’s leadership was not without controversy. There was discord among the Sauk and Meskwaki tribes as his status and accommodations with the federal government increased. Federal agents allowed Keokuk to distribute tribal annuities and evidence suggests that Keokuk used his position for personal advantage. In 1842, Keokuk negotiated the sale of the last tribal land in Iowa and agreed to remove to Kansas. While the Meskwaki denounced the sale, Keokuk led other followers to Kansas in 1845 where he died in 1848 and was buried…the first time.\r\n\r\nIn the 1880s two prominent Keokuk citizens, Judges Caleb Davis, a Native American object collector who took a great interest in the chief’s life, set out on a mission to have the remains reinterred in Keokuk, Iowa. After securing the necessary permits and permissions the bones were removed from the Kansas resting place and it was discovered that the skull and one arm had gone missing. Judge Davis brought the bones back to Keokuk and was determined to retrieve the lost remains of the chief.\r\n\r\nThe story is told that Judge Davis returned to Ottawa, Kansas, in search of the skull, locating it at a “white man’s lodge” where it was reportedly used for ceremonial purposes. After much persuasion, Davis secured the skull from the lodge. At the time it wasn’t unusual for people to keep such curiosities and Davis brought the skull back to Iowa where it remained in his collection for many years.\r\n\r\nIn 1913, a monument was erected and the remains of Chief Keokuk were finally laid to rest once again at Rand Park in Keokuk. Built into the monument is the original marble grave marker brought back from Kansas. In 1925, Judge Davis’ daughter, Anne, donated the rest of the Judge Caleb Davis Collection to the State Historical Museum.\r\n\r\nChief Keokuk’s story picks up a century and a half after his death in Des Moines. It was 1987 and the State Historical Museum collection was being moved to the new historical building. Found in storage were some long forgotten artifacts from the judge’s collection. Included were human teeth with tags attached indicating that two were removed from Chief Keokuk’s skull in 1886 by C.F. Davis and two were removed by Anne Davis before the skull was reburied in 1913. The teeth were transferred to the Office of the State Archaeologist and in 1995 an osteological report was completed that determined that it was unlikely the teeth came from Chief Keokuk because the dental examination showed the teeth were that of a much younger person. \r\n\r\nWhich begs the question…who else is buried in Chief Keokuk’s grave?</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1401 Stripe St.<br />Rand Park<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles S. Simpson House",
            "lat": "41.535384",
            "lon": "-90.566490",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-charlessimpsonhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles S. Simpson House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.535384,-90.566490\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Charles S. Simpson was born in Miami County, Ohio, in 1856. Simpson’s father was one of the first settlers in the county and Simpson himself owned eighty acres of land there and had a parchment deed signed by James Monroe, the 5th President of the United States. Simpson relocated to Scott County in 1894 and was one of the first organizers of Le Claire Savings Bank, of which he was named president in 1901. In 1909, he became treasurer of the Midland Supply Company, a vending machine and cigar lighter dealership. He built this house in 1910 and it was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1503 Farnam St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Crescent Macaroni and Cracker Company Building",
            "lat": "41.524305",
            "lon": "-90.569431",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-crescentmacaroniandcrackercompanybuilding.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Crescent Macaroni and Cracker Company Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.524305,-90.569431\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Crescent Macaroni and Cracker Company building was constructed in 1915 and still stands today. It was hailed as “the largest macaroni factory in the world” in 1904 and was the only macaroni factory in Iowa at the time. The Crescent factory was a five story building with a basement for storage, and production areas on each floor. The factory was added to the National Register of Historic Places in 2003.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t427 Iowa St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Davenport Motor Row and Industrial Historic District",
            "lat": "41.521318",
            "lon": "-90.571154",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Davenport Motor Row and Industrial Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.521318,-90.571154\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Davenport Motor Row and Industrial Historic District is on the east end of the commercial business district, a triangular area from North Perry Street east to the railroad and north to East Third Street, in the shadow of the Government Bridge. Through the years, it has been a hardworking area, home to light industrial and automobile commerce.\r\n\r\nThe Rock Island Road railroad bridge, a subdivided Warren truss bridge built in 1928 over East Third and Iowa streets, provides a reminder that railroads made Davenport a gateway to the west and were an important part of commercial development.\r\n\r\nBased on information from the 1885 Iowa census, the 1885 city directory and 1886 Sanborn fire insurance maps, this area was a hot spot for local brothels. From 1893 to 1909, the city registered prostitutes and assessed a monthly license fee. According to the records, approximately one out of every 21 working women in Davenport worked in the profession at that time.\r\n\r\n\r\nThe surviving buildings in the district are especially important since the surrounding blocks have lost most of their historic buildings to river floods, fires, deterioration and newer development.\r\n\r\nThe Davenport Motor Row and Industrial Historic District was added to the National Register of Historic Places in 2019.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tE 2nd St. &amp; E 3rd St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First Church of Christ, Scientist",
            "lat": "41.536412",
            "lon": "-90.565268",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-firstchurchofchristscientist.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Church of Christ, Scientist</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.536412,-90.565268\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1912, the First Church of Christ, Scientist, was built from designs by the local architectural firm of Clausen &amp; Clausen, with Rudolph Clausen taking the lead. This congregation was the only Christian Science church in the city, having moved in the late 19th century from Boston and founded by 16 local practitioners. The church was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t636 Kirkwood Blvd.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Frank J. Von Ach House",
            "lat": "41.536810",
            "lon": "-90.564012",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-frankvonachhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Frank J. Von Ach House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.536810,-90.564012\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Von Ach house is a good example of the Queen Anne/Colonial Revival style combination that was popular in Davenport around the turn of the century. The pinwheel plan and variety of surface textures comes from the Queen Anne style, as does the irregular window placement which shows function rather than formalism in design. Von Ach was a traveling salesman for the August Steffen Co., dealers in wholesale dry goods. The house was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1618 Davenport Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George B. Swan House",
            "lat": "41.529053",
            "lon": "-90.566477",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-georgebswanhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George B. Swan House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529053,-90.566477\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house represents a variation on a distinctive Davenport house type, the two story, three-bay gable house. The house was built in 1881 by George B. Swan, the yardmaster for the Chicago, Rock Island and Pacific Railroad. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t909 Farnam St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry H. Smith/J. H. Murphy House",
            "lat": "41.525978",
            "lon": "-90.567719",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-henryhsmithjhmurphyhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry H. Smith/J. H. Murphy House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.525978,-90.567719\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Smith-Murphy house is one of the few remaining octagon houses in Iowa, and the earliest of those that survive built in the style of Orson Folwer, the octagon home&#039;s most influential proponent. It was also home one of the city’s earliest entrepreneurs – Henry H. Smith. The house site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t512 E 6th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Isaac Glaspell House",
            "lat": "41.526396",
            "lon": "-90.567934",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-isaacglaspellhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Isaac Glaspell House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.526396,-90.567934\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Isaac Glaspell was a local grocer during the 1870s-80s in partnership with his son as “Glasspell and Son.” The house was originally built by John Whitaker in 1875 and added onto by Glasspell a year later. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t621 Le Claire St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John Quickel House",
            "lat": "41.537209",
            "lon": "-90.563993",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-johnquickelhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Quickel House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.537209,-90.563993\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John Quickel House is an excellent example of a Gothic-inspired residential design from the Victorian period. Its defining elements include the extremely steep, narrow gables, the porch, and the window details. Jacob Quickel moved into the house in 1902 and is the earliest known occupant. The house was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1712 Davenport Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Louis Herbert House",
            "lat": "41.529295",
            "lon": "-90.567011",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-louisherberthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Louis Herbert House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529295,-90.567011\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed around 1865, this house was occupied by the Herbert family beginning in 1866. Louis Herbert was a bricklayer by trade and was probably involved in the house&#039;s construction. Members of the Herbert family lived in the house until 1898, and the house was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t914 Farnam St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "McKinney House",
            "lat": "41.527952",
            "lon": "-90.567646",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-mckinneyhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McKinney House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.527952,-90.567646\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The McKinney House is an example of local Greek Revival architecture in Davenport. Major features include form and front arrangement, simply-molded window surrounds, and a sunburst design in the porch pediment. The house was built in 1872 by William McKinney and the McKinney family continued to reside there until after 1900. This was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t512 E 8th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Oscar Woods House",
            "lat": "41.537981",
            "lon": "-90.564714",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-oscarwoodshouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oscar Woods House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.537981,-90.564714\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Oscar C. Woods was probably the original occupant of this house, built around 1880. Woods was a horse buyer and was also in the feed and stable business at the time. By the 1890s, the Woods was secretary-treasurer of Martin Woods Co., a fruits and grocery wholesale business. His home was added to the National Register of Historic Places in 1984</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1825 Grand Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rowhouse",
            "lat": "41.536406",
            "lon": "-90.564613",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-rowhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rowhouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.536406,-90.564613\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 1870 rowhouse was probably built by Lorenz Wahle, a grocery merchant in the west end. The building was occupied by a series of short term tenants through the years and continues to function as residential apartments today. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t702 Kirkwood Blvd.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William Holbrook House",
            "lat": "41.536465",
            "lon": "-90.563502",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-williamholbrookhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William Holbrook House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.536465,-90.563502\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1892, William S. Holbrook occupied this house beginning in 1892. A furniture and carpet dealer, Holbrook was probably the original owner of the house. Added to the National Historic Register in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t804 Kirkwood Blvd.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Oak Lane Historic District",
            "lat": "41.539649",
            "lon": "-90.562934",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-oaklanehistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oak Lane Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.539649,-90.562934\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Oak Lane district is a small residential development extending along both sides of the single block of Oak Lane. The Oak Lane Addition was developed between 1900 and 1910 by Amos Cutter, a local real estate entrepreneur. It is locally significant as an example of the speculative housing developments which appeared in Davenport in the first decades of the 20th century. The district was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tOak Ln.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Currier House",
            "lat": "41.534856",
            "lon": "-90.564700",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-currierhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Currier House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.534856,-90.564700\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1900-01, possibly by Frederick W. Currier, the Currier house is a good example of late Queen Anne architecture in Davenport. Currier resided here only briefly while he was employed by the Pittsburg Plate Glass Company. The house was later occupied by George M. Watts. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1421 Grand Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fred B. Sharon House",
            "lat": "41.527641",
            "lon": "-90.566974",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-fredbsharonhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fred B. Sharon House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.527641,-90.566974\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sharon House is an interesting expression of the Second Empire style. Its relatively late date may account for the overall symmetry of form, but the rich ornamented roofscape is clearly of the Victorian age. This was the home of Fred B. Sharon, a prominent Irish-American and the publisher of the Iowa Catholic Messenger. After working as a teacher in New York, Sharon and his brother became Irish-Catholic advocates in Iowa, where he also served as a bank official and was appointed Davenport&#039;s Postermaster General by President Wilson in 1913. Sharon was selected by Pope Pius XI to be conferred with the papal honor of the Knights of St. Gregory in recognition of his work advocating for the Catholic community. The Sharon house was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t728 Farnam St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "underground-railroad.png",
            "title": "First Mississippi River Railroad Bridge Historic Marker",
            "lat": "41.520570",
            "lon": "-90.569107",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-historicsite-seawall.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/underground-railroad.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First Mississippi River Railroad Bridge Historic Marker</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.520570,-90.569107\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The first railroad bridge across the Mississippi River was completed in April 1856 and connected the Chicago and Rock Island Railroad in Illinois with the Mississippi and Missouri Railroad in Iowa. The bridge spanned from the city of Rock Island, Illinois, to Davenport, Iowa, using Rock Island in the Mississippi as a stepping stone. This connection was important to the advancement of transportation across the country in general, and was especially significant in providing freedom seekers with a faster mode of travel as they made their way eastward out of Iowa. This is stop #16 on the Freedom Trail tour: The train carrying John Brown’s party passed through Davenport on March 10, 1859, and crossed the Chicago and Rock Island Railroad Bridge, which had been completed only 3 years earlier. Over the next two days, they passed through Chicago and traveled on to Detroit. There, the men, women, and children who had escaped from slavery in Missouri three months before boarded a ferry and crossed the border to freedom in Windsor, Canada. A sign commemorating this event is attached to the sea wall on the Davenport-Bettendorf bike trail, near the old bridge site.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t643 E River Dr.<br />Riverfront Trail<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Antoine LeClaire House &quot;Treaty House&quot;",
            "lat": "41.527202",
            "lon": "-90.565293",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-antoineleclairehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Antoine LeClaire House &quot;Treaty House&quot;</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.527202,-90.565293\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>Antoine LeClaire built this house in 1855. He was pioneer resident of Davenport, important in development of the Upper Mississippi Valley and U.S. Interpreter and Indian agent. He spoke three languages, 14 Indian dialects and negotiated 22 treaties with Native Americans in Iowa and Illinois. Well-liked by both Indians and settlers, he was given U. S. land grants at Indian requests. These included a square mile at what is now downtown Davenport, a square mile at what is now LeClaire, and two square miles at Moline, Illinois. Sauk chief, Black Hawk, also dictated his autobiography to LeClaire. LeClaire was the prime founder of Davenport and one of the city&#039;s leading citizens for 25 years. He established the first church, ferry service, hotel, foundry and more. He lived in a rather modest house until 1855 when he moved into this mansion. At his urging the first railroad bridge across the Mississippi was built directly below this house and the first locomotive to cross the Mississippi was appropriately named the Antoine LeClaire. The Antoine LeClaire House was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t630 E 7th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Edward C. Roberts House",
            "lat": "41.538463",
            "lon": "-90.561773",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-edwardrobertshouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Edward C. Roberts House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.538463,-90.561773\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house is among the limited number of dwellings in Davenport that feature a strong Prairie design. However, the symmetry and focus on the entry also suggest the influence of the Georgian/Federal Revival, which was particularly popular in the city. Edward C. Roberts had this house built in 1909. Roberts, the son of Uriah and Julia Roberts, was then President of the U.N. Roberts Co. and the Gordon-Van Tine Co. Both firms were local planning mills which eventually merged. The Roberts firm was the longest-lived, most successful planning mill in the city. The Edward Roberts House was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t918 E Locust St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Benjamin Nighswander House",
            "lat": "41.535915",
            "lon": "-90.560907",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-benjaminnighswander.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Benjamin Nighswander House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.535915,-90.560907\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Benjamin Nighswander, a contractor and builder, constructed this house from 1895-1896. Nighswander lived just south of the house while doing the construction work. In 1898, the house was occupied by William Bryson, which suggests the house was built on speculation by Nighswander, not as his own residence. The Nighswander House is noteworthy for its rather unusual roofscape, distinguished by the sweeping curve of the roof as it extends over the porch. It also features unusual gable-end shingling. The Benjamin Nighswander House was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1011 Kirkwood Blvd.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Collins House",
            "lat": "41.549416",
            "lon": "-90.557133",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-collinshouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Collins House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.549416,-90.557133\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Miles Collins was born in Blanford, Massachussets and arrived in Davenport with his father in 1838. His father, William Collins, organized the Temperance Society in Davenport. Miles entered into the livestock business and was active in the Temperance, Old Settlers Association and Historical Societies. He also started the first cheese factory in Scott County and became one of the first commercial cheese makers in Iowa. Miles purchased this house in 1860 and lived here until his death in 1908. In 1963, the Davenport Park Board purchased the house from Miles&#039; surviving daughters on the condition that they live there rent free for the rest of their lives. The house has served multiple purposes since 1977 and in 2015, it became the Southeast Iowa Senior Information Hub, a resource center for senior citizens and their families. The Collins House was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1234 E 29th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dils-Downer House",
            "lat": "41.535222",
            "lon": "-90.560528",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-dilsdownerhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dils-Downer House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.535222,-90.560528\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1900 by Thomas M. Dils, a local contractor and builder, the Dils-Downer House is a basic Craftsman cottage with a touch of sophistication achieved through borrowing from the eastern shingle style of Richardson, McKim, and others. Dils lived in the house until his death in 1902 and the house was sold to Harry E. and Alice Downer. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1020 E 15th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "James Smith House",
            "lat": "41.537332",
            "lon": "-90.559986",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-jamessmithhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James Smith House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.537332,-90.559986\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house is a good illustration of the prototype from which the local “McClelland” house of the post-Civil War period was likely derived. The basic form is the same, but in this house the proportions are wider and the roof pitch is lower than the later versions. James Smith, a laborer, lived at this address beginning in 1878 but was probably not the original occupant of the house. The house was added to the National Register of Historic Places in 1984</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1037 E 18th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lewis M. Fisher House",
            "lat": "41.530254",
            "lon": "-90.562173",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lewis M. Fisher House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530254,-90.562173\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was constructed in 1895 for Lewis M. Fisher, a partner in the firm Heinz &amp; Fisher. The firm provided legal services, loans, and real estate services. The house was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1003 Arlington Ct.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Swedish Baptist Church",
            "lat": "41.526584",
            "lon": "-90.564458",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-swedishbaptistchurch.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Swedish Baptist Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.526584,-90.564458\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The architectural character of this church is typical of many late 19th-century rural and small-town religious structures in Iowa, particularly those belonging to Protestant denominations. The building was originally connected with the community of Swedish settlers, before the church changed hands and became part of the larger Baptist denomination. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t700 E 6th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William Gabbert House",
            "lat": "41.532217",
            "lon": "-90.561392",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-williamgabberthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William Gabbert House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.532217,-90.561392\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built for William H. Gabbert, a Davenport attorney, in 1874. George S. Shaw, the previous owner of the property, worked as a carpenter and built the house for Gabbert. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1210 Tremont Ave.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Fritz Chapel",
            "lat": "42.294735",
            "lon": "-90.492809",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fritz Chapel</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.294735,-90.492809\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fritz Chapel is an excellent example of vernacular limestone design from the mid-19th century. Limestone was a common material for construction in Jackson County, and was utilized in religious structures to suggest a European style. The Fritz Chapel was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t34627 308th St.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Peter&#039;s Church",
            "lat": "40.397064",
            "lon": "-91.390107",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-stpeterschurch.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Peter&#039;s Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.397064,-91.390107\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Peter’s Church is an outstanding example of the late Gothic Revival style in Iowa. St. Peter’s Church in Keokuk replaced the original St. Peter’s Church built by Father William Emonds in 1856. With the secession of German Catholics to St. Mary’s Church in 1867, the St. Peter’s congregation served the English speaking Catholics in the area. Rev. Thomas O’Reilly (1843-1909), Irish-born pastor of St. Peter’s, supervised the present church construction, laying the corner stone on June 12, 1881. O’Rielly served the church as pastor until his death in 1909. St. Peter&#039;s Church was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t301 S 9th St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.524.8334</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.keokukallsaints.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Paradise Farm",
            "lat": "42.272500",
            "lon": "-90.488404",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Paradise Farm</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.272500,-90.488404\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The three buildings at Paradise Farm are the remains of an estate built by Elbridge Gerry Potter (1791-1875), an early settler whose remarkable career encompassed agriculture, river transport, and the milling industry. Artifacts found in the main house provided insight into Potter&#039;s life and the agricultural and commercial development of NE Iowa. The Paradise Farm was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t34981 Mill Creek Rd.<br />Paradise Valley Rd.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Louis C. and Amelia L. Schmidt House",
            "lat": "41.532173",
            "lon": "-90.559447",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-louisc.andamelial.schmidthouse-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Louis C. and Amelia L. Schmidt House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.532173,-90.559447\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Schmidt House retains excellent integrity, with historic features intact throughout the exterior and interior. It was added to the National Register of Historic Places in2007.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1138 Oneida Ave.<br />Davenport, IA 52802<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Oscar Nichols House",
            "lat": "41.530441",
            "lon": "-90.560756",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-oscarnicholshouse-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oscar Nichols House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530441,-90.560756\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Nichols House is an excellent example of the Stick Style expressed in a late 19th century “catalogue” house featuring a mix of design styles. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1013 Tremont Ave.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William T. Goodrich House",
            "lat": "41.535258",
            "lon": "-90.558118",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-williamgoodrichhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William T. Goodrich House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.535258,-90.558118\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was probably built by William T. Goodrich in 1900. Goodrich was a harness maker and foreman for the federal arsenal on Government Island. The house is an example of late Victorian residential architecture and displays the irregularity typical of its style. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1156 E 15th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Park Place and Grand Avenue Historic District",
            "lat": "40.405060",
            "lon": "-91.376976",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-parkplacegrandavedistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Park Place and Grand Avenue Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.405060,-91.376976\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Historic District is locally significant as Keokuk&#039;s premier neighborhood. The street has maintained its status as the &quot;best place to live in Keokuk&quot; from 1856 to present. The oldest houses in this district date back to the early 1850s. The Park Place and Grand Avenue Historic District was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t904 Grand Ave.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "St. Katharine&#039;s Historic District",
            "lat": "41.528834",
            "lon": "-90.560511",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-stkatherineshistoricdistrict-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Katharine&#039;s Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.528834,-90.560511\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Katharine&#039;s Historic District is centered around lumber baron William Renwick&#039;s Italian villa. Designed by local architect John C. Cochrane, the home is an excellent example of Davenport&#039;s lavish late-Victorian architecture. St. Katharine&#039;s School for Girls, an Episcopal boarding and day school founded in 1884, grew up around the Renwick House, as did a handful of other buildings that now form the district, which was added to the National Register of Historic Places in 1984. Before World War I, a Cedar Rapids native named Marion Crandell arrived at St. Katharine&#039;s to teach French. At age 45, she joined the war effort and became a member of the United States Christian Commission of the YMCA and was assigned to work in canteens, where soldiers could relax from the rigors of war. On March 27, 1918, German artillery bombed the canteen where she was working, and a shell destroyed the building where she had taken shelter. She became the first American woman to die of injuries in a combat zone during World War I. A marker at the Iowa Soldiers&#039; Orphans Home honors her service, as does the Marion Crandell Memorial Highway marker near the Government Bridge in downtown Davenport.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t901 Tremont Ave.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Kegler-Gonner Store and Post Office",
            "lat": "42.164237",
            "lon": "-90.476571",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kegler-Gonner Store and Post Office</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.164237,-90.476571\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1874, the Kegler-Gonner Store is a large and well-preserved stone commercial building. It survives as a local landmark in Springbrook, a small yet significant crossroads community for many decades. The community was moved to this location, a few miles west of old Springbrook, in the late 1850s. The new settlement was largely Catholic, while the original village was Methodist and Baptist. Christian Kegler was a large landholder in the new Springbrook area. He was the first postmaster and operated a store in this building, which was likely built by local stone masons Peter and John Weis who also built the Catholic Church in town. The Kegler Store carried general merchandise and was one of the finest stores in the county. In 1904, Gonner obtained a partial interest in the store. By 1918, the Springbrook population had grown to 185 people and only three stores remained in town. The Kegler-Gonner Store building has been altered many times including the addition of porches, a corner addition and several rear additions. The Kegler-Gonner Store and Post Office was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 E Main St.<br />Springbrook, IA 52075<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Theodore Niemann House",
            "lat": "42.292992",
            "lon": "-90.489846",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Theodore Niemann House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.292992,-90.489846\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Niemann House is said to be the first limestone house built in Jackson County. It was built around 1845, and construction using the abundant local limestone became very common throughout the mid-19th century. The Niemann House was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tSpruce Creek Rd.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Alois and Annie Weber House",
            "lat": "40.402555",
            "lon": "-91.378827",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Alois and Annie Weber House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.402555,-91.378827\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Featuring unusually tall, narrow windows, this house is a good example of the Second Empire style of residential building. The home was built by Alois Weber, a well-known successful hardware businessman, and his wife Annie, who owned a millinery shop for many years. The Alois and Annie Weber House was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t802 Orleans St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "C. R. Joy House",
            "lat": "40.404004",
            "lon": "-91.377048",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-joyhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">C. R. Joy House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.404004,-91.377048\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The C. R. Joy House is significant as one of the largest and most ornate Queen Anne residences in Keokuk. It also is significant as a representation of the architectural firm of George Barber, which used the Joy residence in its catalogs to promote its mail order services. The C. R. Joy house was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t816 Grand Ave.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "U.S. Post Office and Courthouse",
            "lat": "40.397685",
            "lon": "-91.383932",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-uspostofficecourthouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">U.S. Post Office and Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.397685,-91.383932\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The U.S. Post Office and Courthouse building is significant as a well-designed, sturdily built, example of the round-arch, brick and terracotta Victorian building that still exists in nearly mint condition. The Post Office and Courthouse are associated with many notable events and people (judges, criminals, lawyers and postmasters). It was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t25 N 7th St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Iowa Soldiers&#039; Orphan&#039;s Home",
            "lat": "41.546968",
            "lon": "-90.553161",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-iowasoldiersorphanshome.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Soldiers&#039; Orphan&#039;s Home</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.546968,-90.553161\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This historic district is associated with an important social welfare effort – a state-operated orphanage for the children of Civil War veterans and later, indigent families. The Orphans’ Home was the first statewide orphanage for veterans’ children to open in the country in the post-war period. Its founder and first matron, Annie Turner Wittenmyer, went on to become a national figure promoting orphans’ homes. The orphanage also pioneered progressive child welfare initiatives. The Orphans’ Home Historic District contains well-preserved examples of architectural styles and local building forms common in Davenport from the late 19th century through the 1930s, and demonstrates the adaptation of these styles specialized needs of the orphanage and institutional buildings. The complex has also included a library, theatres, and job-training services for troubled youth. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2800 Eastern Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.888.2216</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry Ockershausen House",
            "lat": "41.527652",
            "lon": "-90.559180",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-henryockershausenhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry Ockershausen House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.527652,-90.559180\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ockershausen House is a picturesque turn-of-the-century building, featuring a large Adam-style oval window and another tall oval window on the front door. The house was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1024 Charlotte St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "House at 919 Oneida Street",
            "lat": "41.529655",
            "lon": "-90.558822",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-houseat919oneidastreet-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">House at 919 Oneida Street</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529655,-90.558822\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This vernacular Italianate dwelling was probably built around 1875 and appears to have been converted to a multi-family occupancy in 1914-1915. This site was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t919 Oneida St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William G. Smith House",
            "lat": "41.530387",
            "lon": "-90.558139",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-williamgsmithhouse-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William G. Smith House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530387,-90.558139\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house represents one of the more unusual examples of late 19th-century architecture in Davenport. It was built in 1894 by William G. Smith, and it was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1002 Bridge Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George Copeland House",
            "lat": "41.529913",
            "lon": "-90.556084",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-georgecopelandhouse-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Copeland House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529913,-90.556084\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The George Copeland House is an unusual version of the two-story, three-bay front-gable design that is found throughout the older areas of Davenport. It was built around 1875-80 and was home to George E. Copeland beginning in 1888. Copeland worked as a general agent for the Northwestern Mutual Life Insurance Company. The house site was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t929 College Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "James Cawley House",
            "lat": "41.534278",
            "lon": "-90.555339",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-jamescawleyhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James Cawley House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.534278,-90.555339\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>James Cawley was a bricklayer and probably built this house around 1876. His family continued to reside there into the 1890s. The house was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1406 Esplanade Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "James E. Lindsay House",
            "lat": "41.529365",
            "lon": "-90.556041",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-jameselindsayhouse-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James E. Lindsay House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529365,-90.556041\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The James E. Lindsay house is one of several Victorian Italianate residences located in the Fulton Addition along Bridge and College Avenues. It was built by James E. Lindsay in 1876 as a family residence. Lindsay was a partner with John B. Phelps in the major East Davenport lumber company, “Lindsay &amp; Phelps Lumber Co.”. The Lindsay House was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t911 College Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Shields Woolen Mill",
            "lat": "41.527085",
            "lon": "-90.556654",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-shieldswoolenmill-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Shields Woolen Mill</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.527085,-90.556654\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Shield&#039;s Woolen Mill is the oldest standing structure in Davenport known to have been designed for steam operated industrial use. Joseph Shield established the mill in 1863 to capitalize on the growing popularity of wool. The building was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1225 E River Dr.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Walker Adams House",
            "lat": "41.530525",
            "lon": "-90.556073",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-walkeradamshouse-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Walker Adams House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530525,-90.556073\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was home to Walker Adams and his family beginning in 1868. Adams was a partner in a cooperage firm. The house is a good example of the post-Civil War expression of the Italianate style popular in Davenport at the time. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1009 College Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William Radcliff House",
            "lat": "41.529166",
            "lon": "-90.556679",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-williamradcliffhouse-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William Radcliff House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529166,-90.556679\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Radcliff house is possibly the most distinguished Craftsman style house in Davenport. It reflects the influence of California prototypes in its open plan, the extremely wide eaves, the use of gables, and the rounded porch brackets. William M. Radcliff and his wife Emily had this house built for their family in 1911, and it was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t904 College Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bridge Avenue Historic District",
            "lat": "41.528057",
            "lon": "-90.557804",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-bridgeavenuehistoricdistrict-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bridge Avenue Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.528057,-90.557804\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bridge Avenue Historic District consists of 14 houses located at the south end of Bridge Avenue. The group of houses, stepped one above the other, serves as the southeastern gateway to the Le Claire’s Reserve and rises from the heavy traffic of East River Drive. The Ambrose Fulton House at 1206 East River Drive is one of the most prominent homes in the area. With careers in flour milling, railroad building, river trafficking, land speculating and retail commerce, Fulton was one of the city&#039;s most aggressive promoters and entrepreneurs. He held meetings throughout Iowa in the 1840s to generate support for the railroad land grant before Congress and helped form the Davenport and St. Paul Railroad in the 1860s. He donated property for several churches and soldier&#039;s quarters to be used in the Civil War and is responsible for construction of nearly 40 buildings in the area. The Bridge Avenue Historic District was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDavenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Abner Davison House",
            "lat": "41.528101",
            "lon": "-90.556916",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-abnerdavisonhouse-4.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Abner Davison House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.528101,-90.556916\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Abner Davison was the original occupant of this residence, which was built in 1858 in the Tuscan form of the Italianate style. At that time, it was a common style for residences of wealthy Davenport citizens. Davison was born in 1820 near Cooperstown, New York, was admitted to the bar in 1852 in Schenectady, New York and moved to Davenport in 1854, where he became one of the early lawyers of the city. The Davison House has been home to the River Oaks Inn Bed and Breakfast and Gilda’s Club of the Quad Cities. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1234 E River Dr.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "E. A. Shaw House",
            "lat": "41.531497",
            "lon": "-90.556813",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-e.a.shawhouse-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">E. A. Shaw House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.531497,-90.556813\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The E. A. Shaw house is an excellent local example of the late Queen Anne style in Davenport. The Shaw house is also noteworthy as a work by Gustav A. Hanssen, a local architect who had a partnership with Dietrich J. Harfst. This house was built for E.A. Shaw as a family residence around 1901. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1102 College Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Oakdale Cemetery Historic District",
            "lat": "41.546031",
            "lon": "-90.551059",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-oakdalecemetery.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Oakdale Cemetery Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.546031,-90.551059\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Oakdale Cemetery, established in 1856, is a product of the evolution of cemetery design and philosophy from the mid-19th century to the late-19th century. The cemetery is a fine example of Victorian landscape architecture and contains many examples of funerary art dating from before its establishment (due to the movement of graves from the overcrowded municipal cemetery) to present day. Many of Davenport&#039;s pioneer and prominent citizens are interred here, including more than 40 individuals whose homes or businesses are listed on the National Register of Historic Places. During the Civil War, the cemetery became the main burying ground for Civil War soldiers who died in training or in battle. In 1862, the cemetery directors designated an area in section two for the burial of Civil War dead. This area was near the gravesite of Lieutenant Colonel Augusts Wentz, a native of Germany, and the first Scott County resident to die in battle. For many years following the Civil War, Oakdale Cemetery was the only burial place open to members of the African-American community in Davenport. Many escaped and freed slaves who made their way to Davenport during and after the war are buried at Oakdale Cemetery. Many noted abolitionists are also interred at Oakdale Cemetery including, Hiram Price, James Thorington, John L. Davies, Henry Lischer, Jens Peter von Stibolt, Elias Gilbert and Jared Beecher Hitchcock. The cemetery is listed on the National Register of Historic Places and the National Park Service&#039;s National Underground Railroad Network to Freedom.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2501 Eastern Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.oakdalememorialgardens.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "John N. and Mary L. Irwin House",
            "lat": "40.402335",
            "lon": "-91.375665",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John N. and Mary L. Irwin House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.402335,-91.375665\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This historic house was built in 1856 and expanded by John N. Irwin in order to accommodate his family. Mr. Irwin served Keokuk as its first five-term Mayor before moving up to serve as the Territorial Governor of Idaho, the Territorial Governor of Arizona, and later as US Ambassador to Portugal. The John N. and Mary L. Irwin House was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t633 Grand Ave.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Israel Hall House",
            "lat": "41.530384",
            "lon": "-90.555652",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-israelhallhouse-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Israel Hall House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530384,-90.555652\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built in 1878 for Israel Hall. Hall was alternately retired and Secretary-Treasurer of the Oakdale Cemetery Corporation in the years after this house was built. For a time, Hall may have used it as a boarding house as well. The house was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1316 E 10th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Grand Theatre",
            "lat": "40.397214",
            "lon": "-91.383333",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-theater-grandtheater.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Grand Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.397214,-91.383333\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1924, the Grand Theatre was built on the site of the former opera house (Baker-Dodge Theater) which had burned down in 1923. Opening night for the Grand was on Jan. 27th, 1925. Designed by Architect Merle F. Baker. The theater closed in 1957 and remained vacant until 1965 when the theater was renovated and reopened. It continued to operate as a movie theater into the 1980s, but in 1988 ownership was transferred over to the City of Keokuk. Today, the theater is currently used for live performances and community events.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t26 N 6th St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "Junior Theatre Inc.",
            "lat": "41.547912",
            "lon": "-90.551709",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-artsperforming-juniortheatre.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Junior Theatre Inc.</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.547912,-90.551709\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Founded in 1951, the Davenport Junior Theatre Inc. is the second oldest children&#039;s theatre in the country. It provides acting and dance classes for children ranging in ages from three to eighteen. The enriching classes and performances offer fun for the entire family.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2822 Eastern Ave.<br />Annie Wittenmyer Complex<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.326.7862</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "cemeteries.png",
            "title": "Leon &quot;Bix&quot; Beiderbecke Gravesite",
            "lat": "41.544817",
            "lon": "-90.550336",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-oakdalecemetery-bixgravesite.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/cemeteries.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Leon &quot;Bix&quot; Beiderbecke Gravesite</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.544817,-90.550336\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Leon &quot;Bix&quot; Bismark Beiderbecke, a legendary cornet player and jazz composer of the 1920s, was born in Davenport in 1903 and lived there until 1921, when he left for Lake Forest Academy near Chicago. This was the beginning of his relatively brief but important musical career that took him to Chicago, New York, St. Louis, and elsewhere around the United States before he died prematurely in 1931 at age 28. He was buried in his hometown, at the Oakdale Memorial Gardens. His jazz music left a lasting legacy and would directly influence Bing Crosby and Hoagy Carmichael, among others. He was posthumously awarded many honors and inductions, including a special Grammy recognition and as the namesake of Asteroid 23457 Beiderbecke, in 1989.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2501 Eastern Ave.<br />Oakdale Memorial Gardens<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Justice Samuel Freeman Miller House Museum",
            "lat": "40.398225",
            "lon": "-91.379659",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-justicesamuelfreemanmillerhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Justice Samuel Freeman Miller House Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.398225,-91.379659\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Samuel Freeman Miller was born in Kentucky and studied medicine at Transylvania College, and upon graduation went to Barbourville, Kentucky to practice medicine. It was here that he became interested in law and changed professions. After passing the BAR in 1850, he then moved to Keokuk. In 1862, President Abraham Lincoln appointed him to the Supreme Court, the first person appointed residing west of the Mississippi River. The Lee County Historical Society allows visitors to explore the museum and the life of Miller from Memorial Day to Labor Day. The house was added to the National Register of Historic Places in 1972.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t318 N 5th St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Anthony Burdick House",
            "lat": "41.528503",
            "lon": "-90.555918",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-anthonyburdickhouse-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Anthony Burdick House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.528503,-90.555918\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Burdick House is one of a handful of buildings identified as having been designed by Willett Carroll, one of Davenport&#039;s first professional architects. An unusual feature of the Burdick House is the way the entrance bay is recessed behind the main wall plane, rather than being advanced or flush, as was more commonly the case during that time. City directories suggest that the house was built around 1880, for Anthony Burdick, who was involved in a variety of commercial and financial activities in Davenport after settling in the city in 1869. He was the president of First National Bank for 25 years, the president of the Davenport Clearinghouse Association and according to his peers, epitomized the &quot;self-made man.&quot; The Burdick House was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t833 College Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "D. C. Eldridge House",
            "lat": "41.529838",
            "lon": "-90.554975",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-d.c.eldridgehouse-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">D. C. Eldridge House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529838,-90.554975\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1865, the D.C. Eldridge House is in the Greek Revival style and is believed to have been built by Ambrose Fulton, one of Davenport’s first settlers and major developers. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1333 E 10th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Theodore Eldridge House",
            "lat": "41.530405",
            "lon": "-90.554703",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-theodoreeldridgehouse-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Theodore Eldridge House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530405,-90.554703\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Theodore Eldridge House was built in 1878 as an Italianate Villa and designed by local architect Willett Carroll. Eldridge was a restauranteur and owned and operated both a restaurant and a confectionery known as “Eldridge Bros.” in downtown Davenport. The house was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1404 E 10th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Keokuk Young Women&#039;s Christian Association Building",
            "lat": "40.396366",
            "lon": "-91.381824",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-ywca-1b.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Keokuk Young Women&#039;s Christian Association Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.396366,-91.381824\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Long supporting the greater community of Keokuk, the YWCA building served women and girls of all ages and needs for decades, despite a meager construction of concrete, brick and donated stonework. The Keokuk YWCA was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t425 Blondeau St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. John&#039;s Episcopal Church",
            "lat": "40.396639",
            "lon": "-91.380357",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-stjohnsepiscopalchurch.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. John&#039;s Episcopal Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.396639,-91.380357\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. John’s Episcopal Church, built in 1852, is one of the most outstanding and best preserved examples of late 19th century ecclesiastical architecture in Keokuk and the only one that combines Gothic Revival detailing with Richardsonian Romanesque form and massing. St. John&#039;s Episcopal Church was added to the National Register of Historic Places in 1989.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t208 N 4th St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.524.4672</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hotel Iowa",
            "lat": "40.395227",
            "lon": "-91.382441",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-hoteliowa.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hotel Iowa</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.395227,-91.382441\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hotel Iowa best exemplifies the Chicago Commercial style in Keokuk. The Iowa Hotel is also the largest hotel building and the only &quot;modern&quot; hotel constructed using fireproof and new structural building techniques in Keokuk. The Hotel Iowa was added to the National Register of Historic Places in 1987.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 Main St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "E. H. Harrison House",
            "lat": "40.396846",
            "lon": "-91.379844",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-ehharrisonhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">E. H. Harrison House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.396846,-91.379844\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built by local designers in the 1850s, the home sits among notable churches near the high bluffs along the Mississippi River. The E.H. Harrison House was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t220 N 4th St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Frank J. Weess House",
            "lat": "40.396350",
            "lon": "-91.377552",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-frankweesshouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Frank J. Weess House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.396350,-91.377552\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Situated near the Mississippi River overlook, this Keokuk house was built by Frank J. Weess, a Dutch immigrant, in the 1880s. Weess made his family fortune through a successful meat trade in Keokuk as well as controlling large amounts of real estate. The home is a great example of Second Empire style, complete with a belled mansard roof. The Frank J. Weess House was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t226 Morgan St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Charles Whitaker House",
            "lat": "41.532468",
            "lon": "-90.552567",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-charleswhitakerhouse-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Charles Whitaker House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.532468,-90.552567\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The two-story, three-bay front gable “McClelland” style was widely popular in Davenport during the late 19th century. In this house, features from the Victorian Queen Anne style have been used to brighten a relatively simple form, for example the full-height polygonal bay on the south side, with its decorative shingling. The street corner site is creatively utilized by the polygonal veranda. The house was added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1530 E 12th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hillside",
            "lat": "41.528512",
            "lon": "-90.553123",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-hillside-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hillside</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.528512,-90.553123\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1905-06 by Clausen &amp; Clausen, Hillside was the home of Charles Shuler, one of Davenport’s leading businessman in the late 19th and early 20th centuries. He decided to build this grand residence after amassing a fortune in coal, construction, lumber, and banking. The property was added to the National Register of Historic Places in 1982</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1 Prospect Ter.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Prospect Park Historic District",
            "lat": "41.529371",
            "lon": "-90.552464",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-prospectparkhistoricdistrict-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prospect Park Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529371,-90.552464\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">162.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Prospect Park Historic District is one of several turn-of-the-century residential areas in the city that were developed with a public park as a principal feature. Built in the 1870s and ‘80s, most of the architecture has remained distinct from its surroundings and maintains its historical integrity. This site was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDavenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "General William Worth Belknap House",
            "lat": "40.397457",
            "lon": "-91.375861",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-generalwilliamworthbelknaphouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">General William Worth Belknap House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.397457,-91.375861\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">163mi.</span></div>\n\t\t</div>\n\n\t\t<p>William Worth Belknap lived most of his life in this small but sturdy brick house in Keokuk. General Belknap is best remembered for serving Iowa during the Civil War, during which Belknap saw action in Atlanta, Shiloh and helped support the Anaconda Campaign against Southern forces at Vicksburg. For Belknap&#039;s distinguished military service, he was promoted several times, ascending to the rank of Brevet Major General as well as serving Iowa as Collector of Internal Revenue for the state. Gen. Belknap&#039;s career ended with the United States Senate impeaching Belknap during a financial scandal while he was President Ulysses S. Grant&#039;s Secretary of War in 1876. The General William Worth Belknap House was added to the National Register of Historic Places in 1975.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t511 N 3rd St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "Major General Samuel Curtis House",
            "lat": "40.395407",
            "lon": "-91.378139",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-majorgeneralsamuelcurtishouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Major General Samuel Curtis House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.395407,-91.378139\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">163mi.</span></div>\n\t\t</div>\n\n\t\t<p>Constructed in 1849, the Major General Samuel Curtis House was a mid-19th century Greek Revival design of stone, limestone, asphalt and brick. Maj. Gen. Curtis was chief engineer of the Des Moines River Improvement project, Keokuk mayor, three term Republican congressman promoting railroad development, and military general that led northern troops during the Civil War. The Major General Samuel Curtis House was added to the National Register of Historic places in 1998.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 High St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Hugh W. and Sarah Sample House",
            "lat": "40.394649",
            "lon": "-91.378287",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-hughsarahsamplehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hugh W. and Sarah Sample House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.394649,-91.378287\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">163mi.</span></div>\n\t\t</div>\n\n\t\t<p>A classic for residential design in Iowa, the Sample House offers a perfect example of the Italianate design during the pre-Civil War era in Keokuk. Completed in 1859, the multi-room home has gone through only limited additions in its long history in Keokuk. The Hugh W. and Sarah Sample House was added to the National Register of Historic Places in 1995.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t205 N 2nd St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Henry Roling House",
            "lat": "42.291884",
            "lon": "-90.478516",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Henry Roling House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.291884,-90.478516\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">163.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Henry Roling House is a good example of early vernacular limestone architecture from the 1850s. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t36596 308th St.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Mississippi River Lock and Dam No. 19",
            "lat": "40.395568",
            "lon": "-91.375280",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-lockdam19.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mississippi River Lock and Dam No. 19</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.395568,-91.375280\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">163.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mississippi River Lock and Dam No. 19 represents a long series of attempts to improve navigation on the Mississippi River between Keokuk and Montrose, a stretch known as the Des Moines Rapids. In 1832 Lt. Robert E. Lee, tried blasting a channel through the ledges forming the rapids, which proved unsuccessful. Work began in 1867 to build a channel 7.6 miles long on the Iowa shore side. The Canal was finally complete in 1877 at a cost of $4.1 million. In 1883 traffic reached its peak when 1,107 steamboats passed through the canal. The Mississippi River Lock and Dam No. 19 was added to the National Register of Historic Places in 1978.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t525 N Water St<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Keokuk Union Depot",
            "lat": "40.390719",
            "lon": "-91.381248",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-keokukuniondepot.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Keokuk Union Depot</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.390719,-91.381248\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">163.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>By the 1890s, five different railroads were servicing Keokuk, each with their own depot. Frustrated by the muddy and littered stations, the citizens petitioned for a larger train depot, a Union Depot, for use by all the railroads. In September 1882 the City of Keokuk began pushing efforts to create a larger depot.\r\n\r\nAfter much discussion, many concessions, and a few agreements the Keokuk Union Depot was approved for construction on May 7, 1890. Keokuk hired renowned architect John Wellborn Root of Chicago to design the new depot. Root had been involved in various projects rebuilding Chicago after the Great Fire and developing the Colombian Exposition, he was best known for his work on train depots around the country.\r\n\r\nThe Keokuk Union Depot opened in July of 1891.  The depot was a welcoming structure and made good first impressions of the city to passengers arriving by rail. The depot remained a hub for the southeast Iowa community until 1967 when the last passenger train stopped.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Water St. and Johnson St.<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "George M. Verity Riverboat Museum",
            "lat": "40.390404",
            "lon": "-91.379874",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lee-nhr-georgeverity.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George M. Verity Riverboat Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.390404,-91.379874\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">163.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Also known as the Keokuk River Museum, the George M. Verity Riverboat Museum is located in Victory Park, along the Mississippi River. The museum features a paddle boat that was constructed by the U.S. Government in Dubuque, Iowa, in 1927. The river boat was known as the S.S. Thorpe constructed as a means of enhancing tourism on the river and ran from St. Louis to St. Paul. Ownership of the boat changed hands several times over the years, but in 1961 the boat was retired and donated to the City of Keokuk as a museum and memorial to life on the river. The George M. Verity Boat was added to the National Register of Historic Places and designated as a National Historic Landmark in 1989.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Mississippi Dr.<br />Victory Park<br />Keokuk, IA 52632<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.524.4765</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://keokukiowatourism.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-theaters.png",
            "title": "New Ground Theatre",
            "lat": "41.530804",
            "lon": "-90.545746",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-theater-newgroundtheatre-4.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-theaters.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">New Ground Theatre</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530804,-90.545746\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">163.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>As part of the Village of East Davenport, the New Ground Theatre works to provide new and exciting theater experiences for the community through the promotion of local artists. The theatre offers camps and classes for the community and strives to keep performances on the cutting edge with 3D and HiDef technologies.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2113 E 11th St.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.326.7529</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.newgroundtheatre.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Pierce School No.13",
            "lat": "41.532621",
            "lon": "-90.544951",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-pierceschoolno.13-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pierce School No.13</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.532621,-90.544951\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">163.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Pierce School was constructed in 1899 by the local firm of Clausen and Burrows. Pierce combines pieces of the late 19th-century rich Richardsonian Romanesque in the grouping of windows beneath round-arched brick arcades. This site was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2212 E 12th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "Village of East Davenport Historic District",
            "lat": "41.531118",
            "lon": "-90.545104",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-villageofeastdavenporthistoricdistrict-5.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Village of East Davenport Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.531118,-90.545104\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">163.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Village of East Davenport began as an independent community around 1851, originally called Upper Davenport. It was incorporated into the city of Davenport by 1856 and became known as East Davenport. The buildings in the district were constructed between 1848 and 1910, when the area was shaped by the lumber mill industry and the arrival of railroad service. Today, many of the village&#039;s Civil War era buildings remain, housing specialty shops, restaurants, taverns, and other businesses. The former Turner Hall has been converted into a theater and the former Hose Station No. 4 has become the International Fire Museum. The Village of East Davenport was added to the National Register of Historic Places in 1980.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDavenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Diedrich Busch House",
            "lat": "41.531267",
            "lon": "-90.542287",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-diedrichbuschhouse-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Diedrich Busch House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.531267,-90.542287\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">163.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Diedrich Busch House is located in the McClellan Heights district, but would more properly be associated with the Village of East Davenport, an industrial community established in the 1850s primarily as a lumber milling center. Busch built the residence around 1877 after immigrating from Prussia. It was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2340 E 11th St.<br />Davenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Stromeyer Barn",
            "lat": "42.082012",
            "lon": "-90.459516",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stromeyer Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.082012,-90.459516\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">163.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Stromeyer farm is a beloved historic family farm. The barn was restored and continues to be maintained by the family. A pioneer cemetery can be seen from the barn. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t37647 Iron Bridge Rd.<br />Spragueville, IA 52074<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "McKinley Elementary School",
            "lat": "41.536975",
            "lon": "-90.536469",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-mckinleyelementaryschool-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McKinley Elementary School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.536975,-90.536469\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">163.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>McKinley school is an example of a Public Works Administration (PWA) school. Funding from the PWA helped many communities to construct public buildings like this one during the Depression. The school was added to the National Register of Historic Places in 2002.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1716 Kenwood Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.324.0403</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.davenportschools.org/mckinley/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-districts.png",
            "title": "McClellan Heights Historic District",
            "lat": "41.532273",
            "lon": "-90.536730",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-mcclellanheightshistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-districts.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McClellan Heights Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.532273,-90.536730\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">163.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The McClellan Heights Historic District is the largest neighborhood in the east end of Davenport. During the Civil War, this area was known as Camp McClellan and was the largest of the five Union Army trianing camps in and around the city of Davenport. The homes that make up this neighborhood were mostly built between 1905 and 1940, and many remain in excellent condition. A number of architectural styles are represented in the area, including American Craftsman, Prairie, American Foursquare, Colonial Revival, and Georgian. The district was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tDavenport, IA 52801<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Schneckloth Crib",
            "lat": "41.647942",
            "lon": "-90.504353",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Schneckloth Crib</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.647942,-90.504353\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">163.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Herbert Schneckloth, a prominent Iowa farmer, built this landmark round crib in 1926. His family had immigrated from Germany in 1854. The crib is 50 feet in diameter and it was built by hand. The foundation was dug and poured by hand using a shovel and one-third of a bag of home mix at a time.  Handmade forms were used to pour the concrete.  The ventilation block tile and matching solid tile were brought from Adel by train and horse-drawn wagons. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t23553 200th Ave.<br />Davenport, IA 52803<br />Scott County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Steines Barn",
            "lat": "42.253951",
            "lon": "-90.458004",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Steines Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.253951,-90.458004\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">164mi.</span></div>\n\t\t</div>\n\n\t\t<p>This simple, primitive barn was built in the early 1900s. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t36746 Bellevue-Cascade Rd.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Fairfield No. 4 School (German Lutheran School)",
            "lat": "42.069733",
            "lon": "-90.433180",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fairfield No. 4 School (German Lutheran School)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.069733,-90.433180\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">164.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fairfield No. 4 School, also known as the German Lutheran School, in Section 24, Fairfield Township at the south edge of Spragueville and adjacent to Salem Evangelical Lutheran Church. The one-room school house was in operation from 1867-1966.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t110 S Division St.<br />Spragueville, IA 52074<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Regina Coeli Monastery",
            "lat": "41.530833",
            "lon": "-90.512538",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-reginacoelimonastery-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Regina Coeli Monastery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530833,-90.512538\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">164.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Regina Coeli Monastery, commonly referred to as the Carmelite Monastery, is a well-preserved example of the work of Arthur H. Ebeling, an important early 20th century architect from Davenport with an extensive business in eastern Iowa. The Monastery, a relatively rare ecclesiastical architectural form in the midwest, is a prominent feature in its neighborhood and a defining visual landmark on Bettendorf&#039;s sky line. It was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1401 Central Ave.<br />Bettendorf, IA 52722<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Michels Barn",
            "lat": "42.303818",
            "lon": "-90.445085",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-barn-michelsbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Michels Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.303818,-90.445085\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">164.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Michels barn was built in 1926 using wooden peg construction. It has remained in the same family for three generations. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t39016 308th St.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Family Museum",
            "lat": "41.552506",
            "lon": "-90.502551",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-artmuseum-familymuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Family Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.552506,-90.502551\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Family Museum is an interactive children&#039;s museum emphasizing the arts and sciences for children age eight and younger. It includes Amazing Acres, a permanent exhibition devoted to teaching young learners about the importance of agriculture, food production, and weather&#039;s impact on growing regional crops.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2900 Learning Campus Dr.<br />Bettendorf, IA 52722<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.344.4106</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.familymuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Joseph W. Bettendorf House",
            "lat": "41.529152",
            "lon": "-90.506501",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-josephwbettendorfhouse-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Joseph W. Bettendorf House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.529152,-90.506501\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Known as “the finest mansion ever built in the Quad-Cities”, the Joseph W. Bettendorf House was designed by Arthur H. Ebeling, and currently houses the private St. Katherine-St. Mark School. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1821 Sunset Dr.<br />Bettendorf, IA 52722<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Spring Side House",
            "lat": "42.270542",
            "lon": "-90.433762",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Spring Side House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.270542,-90.433762\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Spring Side House is a Gothic Revival “cottage” typical of the style constructed from plans and specifications published by AJ Davis, AJ Downing, and their contemporaries. It is an excellent local example of American architectural philosophy of the early to mid-19th century. The Spring Side House was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tEnsign Rd.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "House at 505 Court Street",
            "lat": "42.256732",
            "lon": "-90.428297",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">House at 505 Court Street</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.256732,-90.428297\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This limestone residence is a very good example of the use of limestone as a building material, and one of the few examples of “high style” details added to these stone houses. The House at 505 Court Street was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t505 Court St.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Buffalo Bill Cody Homestead",
            "lat": "41.714802",
            "lon": "-90.454690",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buffalo Bill Cody Homestead</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.714802,-90.454690\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Buffalo Bill Cody was born in Le Claire, Iowa, in 1846 and left home at age 11 after his father died from a stab wound received after making an antislavery speech. Young Cody headed west, herding cattle and working as a “boy extra” delivering messages between members of a wagon train. In 1860, at age 14, he became a rider for the Pony Express. He scouted for the Army after the Civil War and earned the nickname Buffalo Bill because of his hunting skills. Buffalo Bill&#039;s life was filled with legendary tales of the Wild West that became popularized in newspapers, novels and through his traveling show: Buffalo Bill’s Wild West. The Buffalo Bill Cody Homestead was his boyhood home built in 1847. It has been restored and furnished with items dating to the mid-19th century. The Buffalo Bill Cody Homestead was added to the National Register of Historic Places in 1974.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t28050 230th Ave.<br />Princeton, IA 52768<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Former Jackson County Courthouse",
            "lat": "42.257543",
            "lon": "-90.425925",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Former Jackson County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.257543,-90.425925\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The former Jackson County Courthouse at Bellevue is one of the oldest county courthouses in the state.  Built in the 1840s, it is a remnant of the time when the location of the Jackson County seat was hotly contested. According to Iowa’s Magnificent County Courthouses, Jackson County was established on December 21, 1837. At that time, Bellevue was the only town of any size in the county and was named county seat.\r\n\r\nAbout 1848, a brick courthouse was built at Bellevue. Even with this imposing brick revival courthouse at Bellevue, the county seat continued to move - to Andrew in 1848 and then back to Bellevue in 1851. According to Jackson County History, the county seat election of 1857 was especially heated. The total vote in each rival town – Bellevue and Fulton – was higher than it had ever been, or would be for some years.  Bellevue won by 20 votes and the victory was attributed to John A. Weston, owner of a large timber lot opposite Bellevue, who brought 30 of his woodchoppers to the polls.\r\n\r\nIn 1861, a new courthouse was built at Andrew and offered to the county rent-free for six years. The county seat was moved to Andrew once again, and it remained there until Maquoketa became the county seat in 1873. In 1861, the former courthouse at Bellevue was converted to use as a public school.  In 2016, it remained in service as a public school. \r\n\r\nThe former Jackson County Courthouse was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 S 3rd St.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Building at 130-132 North Riverview Street",
            "lat": "42.259344",
            "lon": "-90.423512",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Building at 130-132 North Riverview Street</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.259344,-90.423512\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building illustrates the extensive use of limestone as a building material in this area for a variety of building types, including commercial. The Building at 130-132 North Riverview Street was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t130 N Riverview St.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George Dyas House",
            "lat": "42.241667",
            "lon": "-90.422341",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Dyas House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.241667,-90.422341\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Members of the Dyas family were allowed to enter the area now known as Jackson County prior to the official opening of the Iowa territory. They staked claims to a number of acres just south of what is now known as the town of Bellevue. Family members arrived in 1833, with the brothers and sisters building houses within a mile or so of the original cabin. The George Dyas House was built in 1850 and is an excellent example of residential limestone architecture from the mid-19th century which exhibits a touch of “high style” design. The home is built into the side of a hill, with the west side being one and one-half stories tall and the east and rear sides being two and one-half stories tall. The George Dyas House was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t24218 362nd Ave.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Kucheman Building",
            "lat": "42.258484",
            "lon": "-90.424528",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kucheman Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.258484,-90.424528\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kucheman Building is a two-story limestone structure and demonstrates the use of limestone construction for commercial buildings. The building was constructed in 1868 and was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 N 2nd St.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Young Historical Museum",
            "lat": "42.261846",
            "lon": "-90.424671",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Young Historical Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.261846,-90.424671\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Young Historical Museum is a century old home that belonged to the Young family. The house has been turned into a museum and displays many turn of the century antiques. The museum features an extensive china collection, as well as antique weapons, cooking materials, clothing, and an 1881 clock that has a twin in the Smithsonian in Washington D.C.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t410 N. Riverview<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.872.4456</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://bellevueia.com/young_museum.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "World Wars Honor Roll",
            "lat": "42.257938",
            "lon": "-90.422565",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/arts.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World Wars Honor Roll</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.257938,-90.422565\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The World Wars Honor Rolls in Bellevue is along the city&#039;s picturesque riverwalk. The monument is dedicated to the memory of those who have served in the armed forces, including those who have made the supreme sacrifice. The plaques list 18 soldiers who died in World War I and 18 soldiers who died in World War II. The World Wars Honor Rolls were dedicated by Reveille Post No. 273 of the American Legion.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tN Riverview Dr.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Bellevue Herald Building",
            "lat": "42.257981",
            "lon": "-90.422961",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bellevue Herald Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.257981,-90.422961\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1855, the Bellevue Herald Building was one of 217 remaining limestone buildings in Jackson County by 1991. It was built in two parts, with the first two stories built of limestone in 1855 and a wood frame third floor added in 1905. The original use of this building has not been determined, but by 1894 the Bellevue Herald had moved in. The Bellevue Herald Building was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t130 S Riverview St.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Building at 101 North Riverview Street",
            "lat": "42.258863",
            "lon": "-90.422949",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Building at 101 North Riverview Street</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.258863,-90.422949\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building illustrates the extensive use of limestone as a building material in this area for a variety of building types, including commercial buildings like this one. The Building at 101 North Riverview Street was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 N Riverview St.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Building at 126 South Riverview Street",
            "lat": "42.258036",
            "lon": "-90.422995",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Building at 126 South Riverview Street</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.258036,-90.422995\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This building is an example of a limestone commercial building from around 1855. It is one of the 217 limestone buildings and structures recorded in Jackson County, 20 of which are commercial buildings. The Building at 126 South Riverview Street was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t126 S Riverview St.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "E. G. Potter&#039;s Jasper Flour Mill",
            "lat": "42.250584",
            "lon": "-90.420297",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">E. G. Potter&#039;s Jasper Flour Mill</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.250584,-90.420297\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Elbridge Gerry Potter was born in Massachusetts in 1791, served in the War of 1812 and arrived in Jackson County, Iowa, in 1842. The next year, he built a Jasper Mill in partnership with John Gammel that was located near the mouth of Mill Creek. Receipts from July 11, 1843 list a grind stone and 73,341 feet of logs. Payment for these construction materials was to be made in cattle, flour and pork that fall. Gammel later built a larger, competing mill upstream, after selling out his interest in Potter’s Mill to Elijah Gove. In 1852, Potter bought out Gove.  The mill was powered by water from a very large millpond on the north side of Mill Creek. After 1855, Potter made improvements to his mill, including the addition of a railroad stub line in 1870. Potter, known as one of Jackson County’s wealthiest and most respected citizens, died in 1875. On May 24, 1896, a flood destroyed the dam, drained the mill pond, demolished the office and filled the lower part of the mill with mud. Much of this damage was repaired and the mill continued to operate – except the mill pond was never re-created. At three stories tall, Potter’s Mill remains the visual anchor of the south side of Bellevue. It is one of the few surviving mills in Iowa and one of the oldest mills in the state. E.G. Potter’s Jasper Flour Mill was added to the National Register of Historic Places in 1984.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t300 Potter Dr.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William Dyas Barn",
            "lat": "42.243283",
            "lon": "-90.418880",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William Dyas Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.243283,-90.418880\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The William Dyas barn was built around 1850, and is a good example of agricultural limestone architecture from mid-19th-century in Jackson County. The William Dyas Barn was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t41275 243rd St.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Dyas Hexagonal Barn",
            "lat": "42.243989",
            "lon": "-90.417555",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dyas Hexagonal Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.243989,-90.417555\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">166mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dyas Hexagonal Barn is one of four known round barns with an original flat or near flat roof on an Iowa farm. It was built in 1921, during the peak construction years for round barns in Iowa. The flat roof design with a central silo made the barn unique and it was added to the National Register of Historic Places in 1986.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t41275 243rd St.<br />Bellevue, IA 52031<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "James Brown House",
            "lat": "41.536534",
            "lon": "-90.470128",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-jamesbrownhouse-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James Brown House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.536534,-90.470128\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">167mi.</span></div>\n\t\t</div>\n\n\t\t<p>The James Brown House possesses a two-fold significance. Architecturally, it is one of the finest stone houses of its size and scale in the state and its combination of elements of Greek Revival and Roman Classicism is rather rare. Secondly, this fine home helps to illustrate the early patterns of settlement in Scott County and represents the attempts of early settlers to reestablish the lifestyles they had enjoyed in their former homes. The house was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t424 State St.<br />Riverdale, IA 52722<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "East Hill House and Carriage House",
            "lat": "41.543154",
            "lon": "-90.461567",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-easthillhouseandcarriagehouse-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">East Hill House and Carriage House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.543154,-90.461567\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">167.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>East Hill and its carriage house are one of two known residential properties in Iowa designed by noted architect, Howard Van Doren Shaw. This site was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t5004 State St.<br />Riverdale, IA 52722<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Trenkamp Barn",
            "lat": "42.040398",
            "lon": "-90.373229",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-barn-trenkampbarn.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Trenkamp Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.040398,-90.373229\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">167.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Trenkamp Barn was built by Justin Berg in 1926. Bernard and Correna Trenkamp purchased the farm in 1945 and raised dairy cows and horses. When they retired in 1974, new owners purchased the farm and have been restoring the barn using native lumber when possible. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t893 450th Ave.<br />Co. Rd. E44<br />Preston, IA 52069<br />Jackson County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Forest Grove School No.5",
            "lat": "41.589532",
            "lon": "-90.434060",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-forestgroveschool5.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Forest Grove School No.5</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.589532,-90.434060\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">168mi.</span></div>\n\t\t</div>\n\n\t\t<p>This one-room schoolhouse was built in 1873 after Pleasant Valley subdistrict No. 5 was formed. The building was originally constructed and furnished for $1,500. The schoolhouse originally featured a cupola and a bell, which were later removed. It was one of five schools in Pleasant Valley Township, serving an average of 30 students at a time. It was added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t24040 195th St.<br />Bettendorf, IA 52722<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.332.5859</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://forestgroveschool.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lock and Dam No. 14 Historic District",
            "lat": "41.573437",
            "lon": "-90.406431",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-lockanddamno.14historicdistrict-2.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lock and Dam No. 14 Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.573437,-90.406431\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">169.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located over the Upper Mississippi River above Davenport, the dam includes rock fill dikes extending to the Illinois side of the river, near Moline. It was completed in two phases, the first as part of the six foot channel project from 1921 to 1924, which included a lock and canal bypassing a hazardous rapids. The second phase was part of the nine foot channel project from 1935 to 1939 and included the main dam and the current main lock. This site was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t25549 182nd St.<br />Bettendorf, IA 52722<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Elk River No. 3 School (Teed Grove School)",
            "lat": "42.044385",
            "lon": "-90.312025",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Elk River No. 3 School (Teed Grove School)</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.044385,-90.312025\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">171mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Elk River #3 School, also known as Teed River School, is open during Threshing Days.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCentennial St.<br />Great River Grounds<br />Miles, IA 52064<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-barns-and-farmsteads.png",
            "title": "Zelle Barn",
            "lat": "41.605301",
            "lon": "-90.363855",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-barn-zellebarn-3.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-barns-and-farmsteads.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Zelle Barn</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.605301,-90.363855\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">171.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This is a 19th-century family farm with one of the few barns left in Scott County. (Source: Iowa Barn Foundation)</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1503 Holland St.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowabarnfoundation.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Centennial No. 5 School",
            "lat": "43.385424",
            "lon": "-96.469262",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lyon-countryschool-centennialno5school.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Centennial No. 5 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.385424,-96.469262\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">171.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Centennial #5 Schoolhouse is a white frame one room schoolhouse that was only in use for 10 years, from 1900 to 1910. Centennial #5 and its neighboring school teacher’s house, are located at Lake Pahoja Recreational Area and visitors learn what education was like more than a century ago. The museum is being maintained by the Lyon County Historical Society</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. K14<br />Lake Pahoja Recreational Area<br />Inwood, IA 51240<br />Lyon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Community Building",
            "lat": "41.673969",
            "lon": "-90.340482",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-communitybuildingprinceton.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Community Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.673969,-90.340482\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">171.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Community Building, constructed in 1928, served as the center of nearly all social activity in Princeton from its completion until 1963. Rather than most towns and cities having multiple buildings to serve the social needs of their community, Princeton had it all located in this one location. From 1928 to 1997, the first floor consisted of commercial space for Boll&#039;s Store, a grocery and general store operated by Henry W. Boll. Boll&#039;s Store provided all types of goods for the Princeton community until it closed in 1997. The second floor held dances, movies, school plays, basketball games, bazaars, meetings and wrestling matches. The basement often hosted meetings for the Booster Club and was also used by the Presbyterian and Lutheran churches for their famous chicken dinners. After closing in 1997, it reopened in 1998 as the Princeton Community Center. The Community Building was added to the National Register of Historic Places in 2008.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t428 S River Dr.<br />Princeton, IA 52768<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "science-centers.png",
            "title": "Mississippi River Eco Tourism Center",
            "lat": "41.750832",
            "lon": "-90.326562",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/science-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mississippi River Eco Tourism Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.750832,-90.326562\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">171.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mississippi River Eco Tourism Center is a building that supports education on the river and the system of life it supports. Built in 2013, the center provides lessons on the history of the river, and its effect on the ecosystem. There is an 8000 gallon aquarium filled with fish unique to the Mississippi, as well as camping and canoe rentals, and even a naturalist cruise of the river aboard the Blue Heron.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3942 291st St.<br />Camanche, IA 52730<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.259.1876</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://clintoncounty-ia.gov\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "James Gamble House",
            "lat": "41.597862",
            "lon": "-90.349359",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-jamesgamblehouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">James Gamble House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.597862,-90.349359\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1855, the James Gamble house is perhaps the finest piece of architecture in LeClaire, and has been well-maintained. It was built for James Gamble who emigrated from Ireland in 1823. Gamble practiced medicine in the community and surrounding area for nearly 50 years, was active in local medical associations and in community affairs, and served on the LeClaire school board for over 20 years. The house was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t527 Wisconsin Ave.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John H. Suiter House",
            "lat": "41.610934",
            "lon": "-90.345607",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-johnsuiterhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John H. Suiter House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.610934,-90.345607\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1855, this two-story frame construction house sits on a stone foundation. The front elevation is three bays wide, with a center entrance sheltered by a porch running the full width of the structure. The house was the home of John H. Suiter, son of Phillip Suiter, and part of the second generation of Suiters to work on the river. This site was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1220 N 2nd St.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John Smith House",
            "lat": "41.596363",
            "lon": "-90.348715",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-johnsmithhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John Smith House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.596363,-90.348715\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in the early 1850s, this house is a one-story brick dwelling on a low stone foundation with a gable roof. John Smith, a pilot who won notoriety for his participation in the “Effie Afton” boat-bridge collision case, lived here early in the 1850’s. The house was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t426 Dodge St.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Kattenbracher House",
            "lat": "41.610069",
            "lon": "-90.345207",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-kattenbracherhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Kattenbracher House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.610069,-90.345207\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Kattenbracher House is associated with the Kattenbracher family, German immigrants who established a foundry (C. Kattenbracher &amp; Son) along the river in the original town of Parkhurst (later incorporated into the town of LeClaire). This foundry was principally engaged in supplying metalwork and making repairs in connection with the LeClaire Marine Railway boatyards run by J.W. Van Sant. The house was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1125 N 2nd St.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George Tromley Sr. House",
            "lat": "41.606126",
            "lon": "-90.344292",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-georgetromleysrhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Tromley Sr. House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.606126,-90.344292\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 1840 house was built in two sections, according to local tradition. The house is two stories, with a low-pitched hipped roof. The older section is constructed of brick, now painted white. The three-bay front has a main entrance to the left, sheltered by a small gable-roofed porch on square posts which is probably a rather late addition. The house was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t806 N Cody Rd.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Stone House",
            "lat": "41.606359",
            "lon": "-90.345250",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-stonehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stone House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.606359,-90.345250\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Stone House is an early settlement-era building, and the only stone house remaining in the area. The house probably dates from the mid-1850s and is unique in that the side walls are blank, the original plan was that of a duplex, and it has a remarkably large number of window and door penetrations given the fact that the walls are load-bearing. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t817 N 2nd St.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "George Tromley Jr. House",
            "lat": "41.598760",
            "lon": "-90.344774",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-georgetromleyjrhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George Tromley Jr. House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.598760,-90.344774\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 1 ½ story frame house, built in 1865, is situated on a raised lot surrounded by a low stone retaining wall. The house is not outstanding from a strictly stylistic point of view, but is noteworthy for the use of the jerkinhead on three sides, which makes it among the more picturesque and unusual houses of LeClaire. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t127 Jones St.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Horton-Suiter House",
            "lat": "41.597374",
            "lon": "-90.345191",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-hortonsuiterhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Horton-Suiter House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.597374,-90.345191\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house is believed to have been built around 1860 for Henry Horton, who worked as an engineer on raft steamers. It was later occupied by James Suiter, one of the last of the LeClaire Rapids pilots, who supported his river income by working as a mortician during the winter months when the river was frozen. The house was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 N 2nd St.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jacob Suiter House",
            "lat": "41.596079",
            "lon": "-90.345192",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-jacobsuiterhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jacob Suiter House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.596079,-90.345192\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This two-story brick house on a limestone foundation was built in 1860 for Jacob Suiter. The house is a simpler version of the Dawley House (127 S. 2nd). Jacob Suiter was of the second generation of Suiters to follow the river trade as a raft and rapids pilot. This site was added to the National Register of Historic places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t214 S 2nd St.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Rambo House",
            "lat": "41.601461",
            "lon": "-90.343956",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-rambohouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rambo House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.601461,-90.343956\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1855 the Rambo House is a transitional Greek Revival/Italianate frame dwelling. William Rambo came to LeClaire in 1844, and established a saw mill south of the town. From 1853 until his death in 1871 he worked as a pilot on the Upper Rapids. The house was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t430 N Cody Rd.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "William Suiter House",
            "lat": "41.597746",
            "lon": "-90.346108",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-williamsuiterhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">William Suiter House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.597746,-90.346108\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>This two-story house built around 1855 has a shallow gable roof. The plan is the traditional center-hall, single pile arrangement. It was built for William Suiter, born 1826 and son of Phillip Suiter, one of the community’s original settlers. The house was added to the National Regsiter of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t227 Wisconsin Ave.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Dawley House",
            "lat": "41.596796",
            "lon": "-90.344752",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-dawleyhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dawley House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.596796,-90.344752\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Daniel V. Dawley was born in Vermont in 1811 and moved west in 1834. He obtained his first river job in 1836 as clerk on the steamer “Hero”. He worked on various ships for the next 38 years before he was appointed postmaster at LeClaire in 1881. He passed away in 1893. His home is a good example of local Italianate residential construction and was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t127 S 2nd St.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cody Road Historic District",
            "lat": "41.601390",
            "lon": "-90.343635",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cody Road Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.601390,-90.343635\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cody Road Historic District is significant both in terms of architecture and local history. The area contains a rich variety of mid- to late 19th-century architecture and building types, ranging from the simple utilitarianism of working-men’s dwellings and assorted forms of commercial architecture, to relatively “stylish” examples of upper-middle-class residential construction. The buildings were built between 1850-1900. This site was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCody Rd.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Samuel Van Sant House",
            "lat": "41.600226",
            "lon": "-90.343922",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-samuelvansanthouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Samuel Van Sant House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.600226,-90.343922\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Samuel Van Sant house was built around 1860. Van Sant was the designer of the “J.W. Van Sant”, a prototype for a raft boat which was to revolutionize the movement of logs and lumber down the Mississippi River. He later moved to Minnesota and became governor of that state. The home is L-shaped, with a relatively wide front gable facing the street. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t322 N Cody Rd.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cody Trail",
            "lat": "41.598596",
            "lon": "-90.342862",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-codytrail-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cody Trail</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.598596,-90.342862\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Named after Buffalo Bill Cody, a government scout and wild west performer who was born in LeClaire, Iowa, the trail begins in the historic Davenport community of Eldridge and makes its way to the town of Long Grove, featuring historic markers along the path. The trail then leads to the Alexander Brownlie house, which is listed on the National Register of Historic Places, passes by the Buffalo Bill Museum, and ends in LeClaire.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tLeClaire to Eldridge<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "television-and-movie-sites.png",
            "title": "Antique Archaeology",
            "lat": "41.595870",
            "lon": "-90.344658",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-tvmoviesite-antiquearcheology.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/television-and-movie-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Antique Archaeology</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.595870,-90.344658\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Mike Wolfe, star of &quot;American Pickers&quot; on the History Channel, is the proprietor of Antique Archaeology. The two-story, former fabrication shop houses the best picks from the show, merchandise, and serves as the home base for &quot;American Pickers.&quot;</p>\t\t<p><em>A location in the collection, Hollywood in the Heartland</em></p><p><em>Since the early 1900s, Iowans have gone to Hollywood and Hollywood has come to Iowa. Learn about Iowa and the silver screen.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t115½ Davenport St.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Buffalo Bill Museum",
            "lat": "41.598561",
            "lon": "-90.342648",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-historymuseum-buffalobillmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Buffalo Bill Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.598561,-90.342648\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located in the hometown of Buffalo Bill Cody, the Buffalo Bill Museum features several exciting exhibits about the life of Buffalo Bill, including his days as a government scout and his life on the road with his wild west show. The museum also features exhibits about some of Buffalo Bill&#039;s cohorts, local LeClaire heroes, and items such as the the Lone Star Stern Wheeler, a wooden hulled steam ship.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t199 N Front St.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "McCaffrey House",
            "lat": "41.598885",
            "lon": "-90.343977",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-mccafferyhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">McCaffrey House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.598885,-90.343977\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This two-story frame Italianate house was built in 1870. The exterior is narrow clapboard, featuring windows with curved wooden lintels. It was the home of John McCaffrey, a boat clerk, pilot, captain, and raftboat owner, and was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t208 N Cody Rd.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Old Mill House",
            "lat": "41.601061",
            "lon": "-90.343408",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-oldmillhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Old Mill House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.601061,-90.343408\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This house was built by Alfred Jansen in 1851 and acquired by J.W. Van Sant in 1865. It is a two-story, five-bay clapboard house with a gable roof ridge parallel to the front. At either end of the roof is a pair of chimneys. The house has been stripped of much detail, and windows have either been boarded up or covered with shutters. The house is on a stone foundation which at the rear forms a walk-in basement. This site was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t419 N Cody Rd.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "monuments-and-memorials.png",
            "title": "Freedom Rock: Scott County",
            "lat": "41.596752",
            "lon": "-90.342965",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-monument-scottcountyfreedomrock-1-dt.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/monuments-and-memorials.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Freedom Rock: Scott County</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.596752,-90.342965\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Scott County Freedom Rock® in LeClaire features the shape of Scott County with a shout out to service men and women, including our police, fire, and emergency officers. The back side features two Medal of Honor recipients: Buffalo Bill Cody and John Baker. Both of these men are natives of Scott County, Buffalo Bill Cody being widely known. \r\n\r\nThe lesser known hero, Sgt. John Baker received his medal in the Vietnam War. While en route to assist another unit that was engaged with the enemy (Viet Cong), Company A came under intense enemy fire and the lead man was killed instantly. Sgt. Baker immediately moved to the head of the column, and together, with another soldier knocked out two enemy bunkers. When his comrade was mortally wounded, Sgt. Baker, spotting four Viet Cong snipers, killed all of them, evacuated the fallen soldier and returned to lead repeated assaults against the enemy positions, killing several more Viet Cong. In the second attack and additional enemy bunkers, he and another soldier drew intense enemy fire and Sgt. Baker was blown from his feet by an enemy grenade. He quickly recovered and single-handedly destroyed one bunker before the other soldier was wounded. Seizing his fallen comrade&#039;s machine gun, Sgt. Baker charged through the deadly fusillade to silence the other bunker. He evacuated his comrade, replenished his ammunition and returned to the forefront to brave the enemy fire and continue the fight. When the forward element was ordered to withdraw, he carried one wounded man to the rear. As he returned to evacuate another soldier, he was taken under fire by snipers, but raced beyond the friendly troops to attack and kill the snipers. After evacuating the wounded man, he returned to cover the deployment of the unit. His ammunition now exhausted, he dragged two more of his fallen comrades to the rear. \r\n\r\nAnother unique piece on this rock is on the side facing the river. This side includes the ashes of U.S. Army Staff Sgt. Nathan Cox. Nathan died Sept. 20, 2008, in Afghanistan after his vehicle was struck by an IED. Alongside Freedom Rock artist, Ray Sorensen, Cox&#039;s 11-year-old daughter, Sophie Cox, as well as his wife, Annie and mother, Jane painted the ashes onto the rock. Adding his ashes was made even more special because I allowed Sophie Cox, the 11-year-old daughter of Nathan, to paint his ashes onto the rock. The American Flag is draped over the top, tying the mural together.\r\n\r\nThe Scott County (LeClaire) Freedom Rock was completed by Greenfield-based artist Ray “Bubba” Sorensen II in 2014.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Front St.<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641-343-7110</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.thefreedomrock.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Lone Star Towboat",
            "lat": "41.597920",
            "lon": "-90.342141",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-lonestarnationalhistoriclandmark-4.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lone Star Towboat</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.597920,-90.342141\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Built in 1868, the Lone Star is one of the three oldest remaining Western Rivers steam towboats and the only remaining example of a wooden hull steam-powered paddle wheel towboat created in this tradition. The Lone Star is currently part of the Buffalo Bill Museum in LeClaire, IA. The boat was added to the National Register of Historic Places in 1984 and declared a National Historic Landmark on December 20, 1989.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWisconsin Street at Mississippi River<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Peter Dierks House",
            "lat": "41.899819",
            "lon": "-90.272822",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Peter Dierks House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.899819,-90.272822\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">173.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>One of only a handful of stone houses remaining in Clinton County, this two-story house was built in 1865 by Peter Dierks, a German immigrant and prosperous farmer. It was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tHwy. 136<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Klondike Bridge",
            "lat": "43.385772",
            "lon": "-96.521601",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lyon-nhr-klondikebridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Klondike Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.385772,-96.521601\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">173.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located on the outskirts of the small town of Klondike, this long-span through truss crosses the Big Sioux River on the border between Lyon County, Iowa, and Lincoln County, South Dakota. The Klondike Bridge is comprised of a concrete-decked Pratt through truss, with Warren pony truss approach spans on both ends. Concrete abutments and piers support the three trusses. The first bridge was built here in 1901, but as traffic on this regionally important crossing increased over the succeeding years, that structure eventually proved inadequate. In August 1913, the Lyon County Board of Supervisors contracted with the Western Bridge and Construction Company of Omaha, which had built virtually all of the county&#039;s trusses for a number of years, to fabricate and erect a replacement structure. The structure itself was completed late in 1914. Since its completion, the Klondike Bridge carried traffic in unaltered condition until 1977, when a new bridge was built. The Klondike Bridge was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t180th St.<br />Larchwood, IA 51241<br />Lyon County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historical-societies.png",
            "title": "Camanche Historical Society and Museum",
            "lat": "41.785823",
            "lon": "-90.259583",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historical-societies.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Camanche Historical Society and Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.785823,-90.259583\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">174.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Camanche Historical Society and Museum houses the Clinton County/Gateway Genealogical Library and collections relating to Camanche history. Collections include cemetery records, county histories, funeral home records and family histories. The museum is open by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1307 S Washington Blvd.<br />Camanche, IA 52730<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.259.1285</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Horace Anthony House",
            "lat": "41.781125",
            "lon": "-90.258691",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Horace Anthony House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.781125,-90.258691\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">174.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Horace Anthony house is one of Camanche&#039;s earliest and best-preserved examples of Italianate influenced design. Built around 1852, this house was one of only a handful of buildings in Camanche to survive the infamous tornado of 1860 relatively unscathed. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1206 Anthony Pl.<br />Camanche, IA 52730<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Camanche Depot Museum",
            "lat": "41.779596",
            "lon": "-90.257023",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Camanche Depot Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.779596,-90.257023\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">175mi.</span></div>\n\t\t</div>\n\n\t\t<p>Climb aboard this fully-restored 1951 Milwaukee/So Line caboose and railroad depot and step back in time to 1899 when the depot was built. The Depot is open by appointment.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t102 12th Ave.<br />Camanche, IA 52730<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.259.1285</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Castle Terrace Historic District",
            "lat": "41.838051",
            "lon": "-90.217507",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Castle Terrace Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.838051,-90.217507\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">176.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Castle Terrace Historic District (703-719 Terrace, 1332-1355 Caroline, 1354 8th Ave. S, 637 S 14th St.) features many fine residential examples of Tudor Revival design, built between 1927 and 1931. After the area was platted in 1926, a promotional portfolio was prepared to illustrate the types of houses that would be available in the new development, with each plan offered in four different architectural treatments: Colonial, English, Southern, and Western. The original owners of the houses in Castle Terrace were some of the most successful businesspeople in Clinton at the time. This district was added to the National Register of Historic Places in 1998.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1301 Caroline Ave.<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Jackson County Welcome Center",
            "lat": "42.070054",
            "lon": "-90.195372",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jackson County Welcome Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.070054,-90.195372\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">176.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jackson County Welcome Center serves guests and tourists of Jackson County. Built to look like an old-fashioned schoolhouse, the building provides maps, brochures, and anything else you might need to fully experience Jackson County.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t60488 Hwy. 64<br />Sabula, IA 52070<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.687.2237</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://jacksoncountyiowa.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cherry Bank",
            "lat": "41.875414",
            "lon": "-90.205609",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cherry Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.875414,-90.205609\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">177mi.</span></div>\n\t\t</div>\n\n\t\t<p>Cherry Bank is a well-preserved example of an elaborate Late Victorian Italianate-styled country home built in 1871 in the rural vicinity of Clinton. It was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1458 Main Ave.<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "notable-iowans.png",
            "title": "George M. Curtis Mansion",
            "lat": "41.841471",
            "lon": "-90.194335",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/notable-iowans.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">George M. Curtis Mansion</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.841471,-90.194335\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">177.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The George M. Curtis Mansion is the former home of Lumber Baron George M. Curtis. The Late-Victorian home was built in 1883, and features many of the prominent architectural patterns of the time such as original Tiffany glass windows, delicately carved banisters, ornate wood trim and massive fireplaces. The home was purchased by the Clinton Women&#039;s Club and they continue to operate out of the home. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t420 5th Ave. S<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.242.8556</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Clinton High School and Public Library",
            "lat": "41.839776",
            "lon": "-90.193592",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clinton High School and Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.839776,-90.193592\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">177.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clinton High School and Public Library Building was built in the late 19th century and is a notable local example of late Victorian Romanesque architecture designed by Joseph Rice. When it was built, the building served as both the high school and the public library, until the 1904 completion of the Carnegie Library two and a half blocks away. It continued to house the high school until 1922, and is still owned by the Clinton Community School District. It is even believed to be the oldest surviving school building in Clinton County and was listed on the National Register of Historic Places in 2012.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t600 S 4th St.<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Clinton Public Library",
            "lat": "41.838151",
            "lon": "-90.191051",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clinton-nhr-clintonpubliclibrary.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clinton Public Library</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.838151,-90.191051\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">177.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clinton Public Library building was designed by the Chicago architectural firm of Patton and Miller and funded by Andrew Carnegie. It was completed in 1904. The building is in the Beaux Arts style and features a monumental entry with processional steps and flanking paired columns. It was added to the National Register of Historic Places in 1983.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t306 8th Ave. S<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.242.8441</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.clinton.lib.ia.us/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Bethel African Methodist Episcopal (AME) Church",
            "lat": "41.843190",
            "lon": "-90.190490",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a86aaaba167b9a68.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bethel African Methodist Episcopal (AME) Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.843190,-90.190490\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">177.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Clinton’s AME congregation formed in 1866, but did not have a building until this church was constructed circa 1885.\r\n\r\nOver the years, members of the church were active in the community and the Civil Rights Movement. In the twentieth century, Bethel AME ministers Walter Parks and Leonard Williams participated in the Interfaith Interracial civil rights group - an organization dedicated to studying race issues in Clinton. \r\n\r\nInterfaith Interracial focused on understanding housing discrimination in Clinton and its members confronted owners of rental property about their practices of discrimination. The organization helped to bring about access to equitable housing in Clinton.\r\n\r\nIn 1966, Dolores Williams (wife of Reverend Williams) was refused service at a local beauty shop in violation of Iowa law. She filed a complaint with the Clinton Human Rights Commission and it was forwarded to the Iowa Civil Rights Commission. The complaint was dropped when the beauty shop agreed to provide service.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t303 S 3rd St.<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Lafayette Lamb House",
            "lat": "41.838703",
            "lon": "-90.191674",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lafayette Lamb House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.838703,-90.191674\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">177.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Lafayette Lamb house is one of a handful of structures remaining in Clinton from the late 19th century. The house was built in 1877 and is a fine example of Victorian residential architecture in the Second Empire style with elaborate facades and a tall mansard. The house was built to display the wealth and status of its owner, gained from the thriving lumber industry. It was added to the National Register of Historic Places in 1979.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t317 7th Ave. S<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "First National Bank",
            "lat": "41.841362",
            "lon": "-90.189589",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">First National Bank</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.841362,-90.189589\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178mi.</span></div>\n\t\t</div>\n\n\t\t<p>The First National Bank building is a fine local example of Neo-Classical Revival architecture and is the only commercial building in this style in Clinton. It was built in 1911 and added to the National Register of Historic Places in 1985.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t226 5th Ave. S<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Wilson Buildings",
            "lat": "41.840965",
            "lon": "-90.189248",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wilson Buildings</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.840965,-90.189248\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wilson Buildings are four buildings on the south side of Fifth Avenue South in downtown Clinton. The Wilson family owned and operated one of the largest industrial steel companies in the country: Clinton Bridge and Iron Works. George E. Wilson. Jr., a real estate developer built on his father&#039;s, George E. Wilson, success in the steel business to become one of the most successful developers in Clinton. Together, the Wilsons built the Wilson Buildings, which featured the family businesses&#039; product: structural steel. Of the four buildings, Wilson Building #1 built between 1912 and 1913 is the largest. Building #1 remains the tallest building in Clinton. The Wilson Buildings were added to the National Register of Historic Places in 2013.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t211 5th Ave. S<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Van Allen and Company Department Store",
            "lat": "41.841370",
            "lon": "-90.188507",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Van Allen and Company Department Store</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.841370,-90.188507\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Van Allen Department Store building was commissioned by John Delbert Van Allen, designed by Louis Sullivan, and completed in 1914. The building&#039;s design features horizontal accent banding and vertical mullion medallions made from terra cotta, a slight cornice, and black marble facing. It also has blue and white tile panels, which pay tribute to Van Allen&#039;s Dutch heritage. The building was eventually converted into commercial space on the lower floor with apartments on the upper floors. It was added to the National Register of Historic Places in 1976 and designated a National Historic Landmark the same year.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t200 5th Ave. S<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.281.5111</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Ankeny Building",
            "lat": "41.840992",
            "lon": "-90.188512",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ankeny Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.840992,-90.188512\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Ankeny Building, constructed in 1931, is the best remaining commercial example of Art Deco architecture in Clinton. Located on a prominent corner in the heart of downtown, the building was a commercial hub at the height of Clinton&#039;s growth in population and commerce. It was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t201 5th Ave. S<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Clinton County Courthouse",
            "lat": "41.850632",
            "lon": "-90.188294",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clinton County Courthouse</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.850632,-90.188294\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Clinton County Courthouse was dedicated in August of 1897, and is an imposing and handsome structure in the Romanesque style. William Andrews painted the mural &quot;Allegorical Mural Depicting the Law and Blind Justice, Rejecting Vanity&quot; in 1901. Three female figures represent the law, justice, and vanity. It was added to the National Register of Historic Places in 1981.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t612 N 2nd St.<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Howes Building",
            "lat": "41.841454",
            "lon": "-90.188043",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Howes Building</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.841454,-90.188043\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Howes Building was built in 1900 in the Classical Revival style. It became a major center of commercial and retail business at the height of Clinton&#039;s growth. It was added to the National Register of Historic Places in 2004.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t419 S 2nd St.<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Moeszinger-Marquis Hardware Company",
            "lat": "41.838125",
            "lon": "-90.187992",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clinton-nhr-moeszingermarquishardwareco.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Moeszinger-Marquis Hardware Company</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.838125,-90.187992\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Moeszinger-Marquis Hardware Company is a prime example of Romanesque design and represents 20th century commercial architecture in Clinton. The building was constructed in 1898 and housed a hardware company that supplied building materials for the growing community. It was added to the National Register of Historic Places in 2006.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t719 S 2nd St.<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "John S. Dominy House",
            "lat": "42.070007",
            "lon": "-90.171911",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">John S. Dominy House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.070007,-90.171911\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The John S. Dominy house is a good example of a vernacular limestone residence from the mid-19th century in Jackson County. This is one of 217 limestone buildings recorded in the county, 101 of which are residential. The John S. Dominy House was added to the National Register of Historic Places in 1992.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t605 Pearl St.<br />Sabula, IA 52070<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "St. Boniface Church",
            "lat": "41.874405",
            "lon": "-90.180868",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">St. Boniface Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.874405,-90.180868\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Boniface Church was built in 1908 and is an outstanding example of Late Victorian Gothic design. Interestingly, the initial design was sketched out by Reverend Joseph M. Tritz, and the final drawings were done by the noted church architect Martin Heer. The church was added to the National Register of Historic Places in 1997.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2500 N Pershing Blvd.<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Jeremiah Wood House",
            "lat": "42.068026",
            "lon": "-90.170369",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Jeremiah Wood House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.068026,-90.170369\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Jeremiah Wood house, built in 1866, highlights the history of the settlement of Sabula. It appears to be the sole reminder in Sabula of the Woods’ early contribution to its settlement. The Jeremiah Wood House was added to the National Register of Historic Places in 1982.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t802 River St.<br />Sabula, IA 52070<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-schools.png",
            "title": "Flannery School",
            "lat": "41.893805",
            "lon": "-90.179336",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-schools.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Flannery School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.893805,-90.179336\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Flannery School was built in the summer of 1935, making it the last one-room school built in Clinton County. The school operated until 1965, when it closed as the last one room school house in Clinton County. This one-room schoolhouse, the last known remaining in Clinton County, was moved to its current location near Soaring Eagle Nature Center to save it from demolition the fall of 1975.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3923 N 3rd St.<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Clinton County Historical Society Museum",
            "lat": "41.839885",
            "lon": "-90.185452",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Clinton County Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.839885,-90.185452\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located near Clinton&#039;s beautiful riverfront park, the Clinton County Historical Society Museum intertwines the past and the present as it tells the story of this historic river town. With Clinton&#039;s proximity to major railways and the largest river in the United States, Clinton was a gateway for both agriculture and the lumber industry. In addition, the museum also hosts an immense collection of local genealogy. The Clinton County Historical Museum was built originally in 1858. The building was used as a Commission house for Steamboat before being sold to the Oakes family for their lumber yard. The yard stayed in operation until 1983. The building was vacant until it was purchased by the Clinton County Historical Society and turned into a museum in 1995. The building still retains its lumber yard exterior and has exhibits devoted to the work that went on in the building prior to it becoming a museum. The original loading docks for lumber are still there, but there are also many other historical artifacts including a 1924 kitchen, parlor, bedroom, doctor and dentist offices, military uniforms, souvenirs and a militaria research library.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t601 S 1st St.<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.242.1201</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.clintoncountyhistoricalsocietyoriowa.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Saint Irenaeus Church",
            "lat": "41.878105",
            "lon": "-90.177184",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Saint Irenaeus Church</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.878105,-90.177184\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>St. Irenaeus Catholic Church serves as a reminder of Irish settlement in Lyons, an early town that became part of Clinton in 1895. The church was built in 1871 in the Gothic Revival style and remains as one of the best examples of stone construction in the city. It was added to the National Register of Historic Places in 2010.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2811 N 2nd St.<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-bridges.png",
            "title": "Savannah-Sabula Bridge",
            "lat": "42.104221",
            "lon": "-90.162814",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-bridges.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Savannah-Sabula Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.104221,-90.162814\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Spanning the Mississippi River between the two riverfront towns of Savannah, IL, and Sabula, IA, this long-span through truss bridge carries US Highway 52 and State Highway 64. The bridge was opened on Dec. 2, 1932, to improve transportation and stimulate commerce between Iowa and Illinois. The Savannah-Sabula Bridge was added to the National Register of Historic Places in 1999.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6000 U.S. 52<br />Sabula, IA 52070<br />Jackson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "The Sawmill Museum",
            "lat": "41.870084",
            "lon": "-90.174954",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Sawmill Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.870084,-90.174954\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">178.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sawmill Museum is dedicated to the history of the lumber industry in Clinton. The museum includes many exhibits including a replica 1888 Lumberjack Camp, the Struve Mill and a replica vintage sawmill. They also hold the Annual Lumberjack Festival, a celebration of Lumberjack culture which includes a professional Lumberjack competition.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2231 Grant St.<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.242.0343</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://thesawmillmuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-historic-sites.png",
            "title": "Blood Run National Historic Landmark",
            "lat": "43.469432",
            "lon": "-96.576191",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lyon-nhl-bloodrun.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Blood Run National Historic Landmark</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.469432,-96.576191\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">179.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Imagine this site as it once was – a large village and ceremonial site of the ancestors of the Omaha, Ponca, Iowa and Oto-Missouria tribes, known as the Oneota people. The Oneota were attracted to the site by the Big Sioux River, abundant game, fertile soil and access to pipestone. The land was inhabited from 900 A.D. to 1720 A.D. and was a major trading site from about 1500 to 1700. At least a hundred mounds attributed to the Oneota remain in the agricultural fields on the terraces of the Big Sioux River. The Blood Run Site was added to the National Register of Historic Places and designated as a National Historic Landmark in 1970.</p>\t\t<p><em>A location in the collections: State Historic Sites, 99 County Tour - Iowa History Month</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1 mile south of 1001 120th St.<br />Larchwood, IA 51241<br />Lyon County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.472.2217</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://iowaculture.gov/history/sites/blood-run-national-historic-landmark\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        }
    ]
  }
In [8]:
history_data = extract_info(history)
history_data = pd.DataFrame(history_data)
history_data[['city', 'county']] = history_data['address'].apply(lambda x: pd.Series(extract_city_county(x)))
history_data['marker'] = history_data['image'].apply(extract_marker)
history_data
Out[8]:
title latitude longitude image distance address phone website city county marker
0 Christian Peterson Courtyard Sculptures and Da... 42.026731 -93.642860 /images/icons/markers/national-register-of-his... 0.1mi. Union Dr., Ames, IA 50010, Story County None None Ames Story national-register-of-historic-places
1 Farm House Museum 42.027147 -93.643955 /images/icons/markers/national-register-of-his... 0.1mi. Farmhouse Ln., Iowa State University, Ames, IA... 515.294.7426 None Ames Story national-register-of-historic-places
2 Iowa State Memorial Union 42.023887 -93.645967 /images/icons/markers/monuments-and-memorials.png 0.2mi. 2229 Lincoln Way, Iowa State University, Ames,... None None Ames Story monuments-and-memorials
3 Catt Hall (Agriculture Hall) 42.027796 -93.645698 /images/icons/markers/national-register-of-his... 0.2mi. Osborn Dr., Iowa State University, Ames, IA 50... None None Ames Story national-register-of-historic-places
4 Morrill Hall 42.027116 -93.648010 /images/icons/markers/national-register-of-his... 0.2mi. Morrill Rd., Ames, IA 50010, Story County None None Ames Story national-register-of-historic-places
... ... ... ... ... ... ... ... ... ... ... ...
3133 Clinton County Historical Society Museum 41.839885 -90.185452 /images/icons/markers/history-museums.png 178.2mi. 601 S 1st St., Clinton, IA 52732, Clinton County 563.242.1201 http://www.clintoncountyhistoricalsocietyoriow... Clinton Clinton history-museums
3134 Saint Irenaeus Church 41.878105 -90.177184 /images/icons/markers/national-register-of-his... 178.4mi. 2811 N 2nd St., Clinton, IA 52732, Clinton County None None Clinton Clinton national-register-of-historic-places
3135 Savannah-Sabula Bridge 42.104221 -90.162814 /images/icons/markers/historic-bridges.png 178.6mi. 6000 U.S. 52, Sabula, IA 52070, Jackson County None None Sabula Jackson historic-bridges
3136 The Sawmill Museum 41.870084 -90.174954 /images/icons/markers/history-museums.png 178.6mi. 2231 Grant St., Clinton, IA 52732, Clinton County 563.242.0343 http://thesawmillmuseum.org Clinton Clinton history-museums
3137 Blood Run National Historic Landmark 43.469432 -96.576191 /images/icons/markers/state-historic-sites.png 179.1mi. 1 mile south of 1001 120th St., Larchwood, IA ... 712.472.2217 https://iowaculture.gov/history/sites/blood-ru... Larchwood Lyon state-historic-sites

3138 rows × 11 columns

In [ ]:
 
In [ ]:
 
In [ ]:
 
In [ ]:
 

Extracting from the SCIENCE AND NATURE bar¶

In [9]:
science = {
    "s": 1,
    "p": [
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Reiman Gardens",
            "lat": "42.011448",
            "lon": "-93.638846",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/story-botany-reimangardens.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Reiman Gardens</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.011448,-93.638846\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Reiman Gardens is one of the largest public gardens in Iowa. Situated on a 17-acre site, the year-round attraction features distinctive gardens both indoors and outdoors, a tropical Conservatory with seasonal displays, a 2,500 square foot Butterfly Wing with emergence cases and a gift shop. Reiman Gardens is open year round.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1407 University Blvd.<br />Ames, IA 50011<br />Story County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.294.2710</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.reimangardens.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Professor J. L., Sarah M. and Etta Budd House",
            "lat": "42.029256",
            "lon": "-93.613367",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Professor J. L., Sarah M. and Etta Budd House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.029256,-93.613367\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">1.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Budd House was built in 1885 for J.L. Budd, a botanist of national prominence, whose contributions to horticulture included the introduction to the US of nonindigenous plant material, as well as service to higher and public education. J.L. Budd was hired as Professor of Horticulture and Forestry at Iowa State University (then Iowa State College) in 1877. The Budd House was added to the National Register of Historic Places in 2001.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t804 N Kellogg Ave.<br />Ames, IA 50010<br />Story County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Ledges State Park",
            "lat": "41.993800",
            "lon": "-93.874097",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ledges State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.993800,-93.874097\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Archaeological evidence found within the Ledges State Park dates to about 4,000 years ago. At the time of European settlement, the Ledges area was inhabited by the Sauk, Fox (now the Meskwaki) and Sioux. Native American mounds in the vicinity contain artifacts acting as silent reminders of the area&#039;s past inhabitants. The Ledges was proposed as a state park as early as 1914. The first park custodian, Carl Fritz Henning, was appointed in 1921. In 1924, the Ledges officially became one of Iowa&#039;s first state parks. Park facilities constructed of native timber and field stone by the Civilian Conservation Corps (CCC) in the 1930s are still standing today. These examples of fine craftsmanship include an arch stone bridge, shelter in Oak Woods, stone trail steps and the stone shelter in the lower Ledges.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1515 P Ave.<br />Madrid, IA 50156<br />Boone County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515-432-1852</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://iowadnr.gov\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Iowa Arboretum",
            "lat": "41.938171",
            "lon": "-93.860032",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/boone-botany-iowaarboretum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Arboretum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.938171,-93.860032\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">12.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The purpose of the Iowa Arboretum is to be an inspiring educational and recreational resource demonstrating the value and use of trees, shrubs and herbaceous plants in the landscape to all Iowans. This unique showplace has continued to expand and contains over 4,000 accessioned woody and herbaceous plants. It is one of the largest and most diverse displays of plants that can be successfully grown in Iowa. In addition, the Arboretum manages a 330-acre native woodland featuring century old oaks and native grasses.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1875 Peach Ave.<br />Madrid, IA 50156<br />Boone County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.795.3216</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://iowaarboretum.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Bell&#039;s Mill County Park",
            "lat": "42.340222",
            "lon": "-93.890694",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hamilton-historicsite-bellsmillscountypark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bell&#039;s Mill County Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.340222,-93.890694\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">25.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>This county park was the site of an 1853 grist mill which the Bell family operated until 1888. Benjamin Bell, who died in 1853, was a Revolutionary War veteran who is buried in nearby Vegor&#039;s Cemetery. The family donated the land for the park which holds an annual settlers reunion. In 1937, Mrs. Frances J. Lynde donated a log cabin to Hamilton County which was moved to Bell&#039;s Mill Park. The cabin was built in 1867 by Mr. And Mrs. Charley Smith in near-by Webster County. At the park, visitors will also find a one-room country school that was originally located in Marion Township and moved in the 1950s to be used as a voting location.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3100 Bell&#039;s Mill Rd.<br />Stratford, IA 50249<br />Hamilton County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.mycountyparks.com/county/Hamilton/Park/Bells-Mill-Park.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Forest Park Museum and Arboretum",
            "lat": "41.826316",
            "lon": "-94.087484",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dallas-historymuseum-forestparkmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Forest Park Museum and Arboretum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.826316,-94.087484\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">26.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Forest Park Museum and Arboretum was started by Eugene Hastie in the 1940s. The original plot of land was only 5 acres. The Dallas County Conservation Board purchased the arboretum and it has grown to 17 acres and is home to over 100 species of native trees and shrubs. The complex also includes the Alton Schoolhouse, which is the last one-room school house of Dallas County, the Grabenhorst Log Cabin and the Bill Wagner Scale House.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t14581 K Ave.<br />Perry, IA 50220<br />Dallas County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.465.3577</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://conservation.co.dallas.ia.us\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Living History Farms",
            "lat": "41.617108",
            "lon": "-93.770637",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historymuseum-livinghistoryfarms.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Living History Farms</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.617108,-93.770637\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29mi.</span></div>\n\t\t</div>\n\n\t\t<p>A 500-acre open-air museum. Travel at your own pace through 300 years of agricultural history, including a 1700 Ioway Indian Farm, an 1850 Pioneer Farm, a 1900 Farm, and an 1875 Town. On-site interpreters, activities and demonstrations.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t11121 Hickman Rd.<br />Urbandale, IA 50322<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.278.5286</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.livinghistoryfarms.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Good Park",
            "lat": "41.598502",
            "lon": "-93.638750",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/upl/images/6064a9cdc3a3181c6da5d.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Good Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.598502,-93.638750\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The City of Des Moines purchased the Good Park property from Samuel Good in 1906. A pool and bathhouse were added in the late 1930s and were in use until 2002.\r\n\r\nIn July 1966, the Good Park Swimming Pool was the site of the “Good Park Rebellion” involving about 200 black youth who refused to leave the swimming pool at closing time on July 4th.\r\n\r\nWhen police arrived at Good Park, cherry bombs were thrown at their vehicles and youth began to jump on the cars and rock them. Acting police chief Captain Wendell Nichols called on three black community leaders, J.B. Morris, John Estes, Jr., and Perry Hooks, to help disperse the crowd. No one was hurt in the disturbance, but damage included broken lights in the park and broken windows and dents to police cars.\r\n\r\nThe following night, on July 5, a similar incident involving 150 young people occurred in the park.\r\n\r\nWhile praising and thanking Morris, Estes, and Hooks, Captain Nichols also claimed, “The incident was not, by any stretch of the imagination, a demonstration demanding civil rights. It merely was a bunch of kids, apparently spurred on by demonstrations in other cities, wanting to raise a little hell.” \r\n\r\nHowever, Morris, who was editor of the Bystander, the state’s most read African American paper, Estes and Hooks believed the incident was more nuanced. After the Watts Riots in Los Angeles in 1965, Morris wrote that the reason for such incidents were simple, that the African American citizen wanted the same civil rights afforded his white neighbors.</p>\t\t<p><em>A location in the collection, Twentieth Century African American Civil Rights</em></p><p><em>Funded by a National Park Service grant in 2018, these sites were documented to share the stories of the African-American struggle for equality in Iowa during the 20th century.</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1155 17th St.<br />Des Moines, IA 50314<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Greater Des Moines Botanical Garden",
            "lat": "41.596702",
            "lon": "-93.614190",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-botany-greaterdesmoinesbotanicalgarden.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Greater Des Moines Botanical Garden</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.596702,-93.614190\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Greater Des Moines Botanical Garden&#039;s tropical and temperate gardens make it an oasis in the heart of downtown Des Moines. Whether you visit on your own or explore with a group, you will find the Botanical Garden a place where you can learn about fascinating plants, hone your gardening skills or immerse yourself in beautiful gardens.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t909 Robert D. Ray Drive<br />Des Moines, IA 50316<br />Polk County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Brushy Creek State Recreation Area",
            "lat": "42.383811",
            "lon": "-93.971379",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brushy Creek State Recreation Area</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.383811,-93.971379\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">29.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Interactive Artists Austin Stewart and Omar De Kok-Mercado will be working at Brushy Creek State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tBrushy Creek Rd.<br />Lehigh, IA 50557<br />Webster County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.543.8298</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/ParkDetails/parkid/610108\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "art-museums.png",
            "title": "World Food Prize Hall of Laureates",
            "lat": "41.587641",
            "lon": "-93.618871",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-historymuseum-worldfoodprize.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/art-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">World Food Prize Hall of Laureates</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587641,-93.618871\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The World Food Prize Hall of Laureates is a building dedicated to the World Food Prize and Dr. Norman E. Borlaug. The Hall of Laureates has a world-class museum to recognize great achievements in agriculture and fighting hunger, an educational facility featuring interactive displays on hunger and food security, and a conference center and event space available to other groups and organizations for their meetings and other activities. The building originally housed the Des Moines Public Library from 1903-2006. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t100 Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.245.3783</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.worldfoodprize.org/hall\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Cowles Commons",
            "lat": "41.587123",
            "lon": "-93.621711",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-artpublic-cowlescommons.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cowles Commons</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.587123,-93.621711\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Cowles Commons is a recently renovated outdoor space in downtown Des Moines. Operated by Des Moines Performing Arts, the space features numerous amenities. \r\n\r\nThe amenities include the Lauridsen Fountain, a decorative water feature with 55 color changing lights that will be programmed to change colors in conjunction with the streams of water; seat walls with thought-provoking peace quotes from a variety of authors; and enhanced lighting that will create safety and ambiance from the internationally renowned Iowa-based company, Musco Lighting. \r\n\r\nCowles Commons celebrates the best of Iowa nature with more than 12,000 native plants and 40 trees.\r\n\r\nAdditionally, two sculptures are in the space, including the iconic Crusoe Umbrella, designed by Claes Oldenburg and Coosje van Bruggen, and the new Jim Campbell suspended sculpture that will be illuminated with thousands of LED lights. \r\n\r\nRounding out the amenities is the red granite stone and brick surface that extends from Capital Square to the Des Moines Civic Center, creating a red carpet. The red carpet will host concerts, festivals, markets, outdoor films and other special events.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3rd St. and Locust St.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.246.2368</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.DesMoinesPerformingArts.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "science-centers.png",
            "title": "Science Center of Iowa and Blank IMAX Dome Theater",
            "lat": "41.582739",
            "lon": "-93.620794",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-science-sciencecenterofiowa.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/science-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Science Center of Iowa and Blank IMAX Dome Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.582739,-93.620794\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Science Center of Iowa features hands-on exhibits, special-format theaters and other unique facilities that engage adults and children alike to explore science and nature. The Science Center&#039;s IMAX Dome is one of the premier attractions in Des Moines. The six-story IMAX dome seats more than 200 people, and coupled with the 12,000 watt sound system makes the IMAX dome theater the best movie watching experience in the state.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t401 W Martin Luther King Jr. Pkwy.<br />Des Moines, IA 50309<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.274.6868</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.sciowa.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Salisbury House and Gardens",
            "lat": "41.579434",
            "lon": "-93.671695",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-nhr-salisburyhouse.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Salisbury House and Gardens</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.579434,-93.671695\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">30.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Cosmetic industry dynamo, Carl Weeks, set out to build a home similar to the Kings House in Salisbury, England. Ground was broken for the house in 1923, and construction took five years. The Weeks family lived in the home until 1954. During the late 1990s, the house, grounds and collections were purchased by Salisbury House Foundation. The property was converted into a historic house museum. Thousands visit each year to see the architecture and extensive collections of artwork, rare books and artifacts. The Salisbury House was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4025 Tonawanda Dr.<br />Des Moines, IA 50312<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.274.1777</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://salisburyhouse.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Dolliver Memorial State Park",
            "lat": "42.382618",
            "lon": "-94.084048",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/webster-nhr-botany-dollivermemorialstatepark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dolliver Memorial State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.382618,-94.084048\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">33.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located along the scenic Des Moines River Valley, Dolliver Memorial State Park spreads across 594 acres boasting unique bluffs, canyons, flatlands, ancient Native American mounds and an abundance of exploration opportunities. At the north end of the park is a narrow ravine named Boneyard Hollow. Early settlers found numerous bones of bison littering the ravine. It is thought that prehistoric Native Americans either stampeded bison into the ravine from a buffalo jump or herded them into the confined space from the riverbank, where they killed and butchered the animals. The park also includes a trail that will take you out past the Copperas Beds, which are unique sandstone formations towering 100 feet above Prairie Creek. The Dolliver Memorial State Park was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2757 Dolliver Park Ave.<br />Lehigh, IA 50557<br />Webster County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.359.2539</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610107\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Walnut Woods State Park",
            "lat": "41.537566",
            "lon": "-93.739387",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Walnut Woods State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.537566,-93.739387\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">34.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painter and Textile Artist Deborah Pappenheimer will be working at Walnut Woods State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3155 SE Walnut Woods Dr.<br />West Des Moines, IA 50265<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.285.4502</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/ParkDetails/parkid/610133\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "zoos-and-wildlife.png",
            "title": "Blank Park Zoo",
            "lat": "41.519281",
            "lon": "-93.623806",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/polk-zoo-blankparkzoo.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/zoos-and-wildlife.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Blank Park Zoo</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.519281,-93.623806\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">35mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Blank Park Zoo was opened in 1966 by A. H. Blank. It is the only major Zoo in the state of Iowa. The Zoo offers exhibits including big cats, lemurs and primates, various aquatic exhibits, and more.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t7401 SW 9th St.<br />Des Moines, IA 50315<br />Polk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.285.4722</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.blankparkzoo.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Calkins Nature Area",
            "lat": "42.508947",
            "lon": "-93.333928",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-botany-calkinsnaturearea.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Calkins Nature Area</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.508947,-93.333928\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">36.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Calkins Nature Area includes an American Indian and Natural History Museum with live native animal displays. The park also includes scenic timber, prairies, streams, ponds along the Iowa River.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t18335 135th St.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.648.9878</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Pine Lake State Park",
            "lat": "42.361478",
            "lon": "-93.079653",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pine Lake State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.361478,-93.079653\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Jennifer Drinkwater will be working at Pine Lake State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration. Drinkwater&#039;s work will focus on painting and drawing.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t22620 Co. Rd. S56<br />Eldora, IA 50627<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.858.5832</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/ParkDetails/parkid/610114\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "zoos-and-wildlife.png",
            "title": "Neal Smith National Wildlife Refuge and Prairie Learning and Visitor Center",
            "lat": "41.559069",
            "lon": "-93.280361",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jasper-botany-prairielearningcenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/zoos-and-wildlife.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Neal Smith National Wildlife Refuge and Prairie Learning and Visitor Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.559069,-93.280361\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">37.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Neal Smith National Wildlife Refuge is a Tallgrass prairie/oak savanna reconstruction project in the heart of Iowa, with several nature trails and an auto tour route through the bison and elk enclosure. The Prairie Learning and Visitor Center offers interactive exhibits, a bookstore and the award winning movie &quot;Return to Wilderness.&quot;</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t9981 Pacific St.<br />Prairie City, IA 50228<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.994.3400</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.fws.gov/refuge/neal_smith/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Scenic City Empress Boat Club",
            "lat": "42.523907",
            "lon": "-93.270913",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-heritagearea-sceniccityempressboatclub.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Scenic City Empress Boat Club</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.523907,-93.270913\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Empress Boat Club, a 1937 log cabin, is situated on the Iowa River and is home to the Empress Riverboat. Enjoy a public cruise or book a private event. Soak in the beautiful scenery of the limestone bluffs while listening to the captain&#039;s monologue. From agriculture to industry, you will be entertained by the Iowa River interpretation!</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1113 Union St.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.873.1936</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iafalls.com/empress_new/home.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Iowa Falls Historical Dow House",
            "lat": "42.521954",
            "lon": "-93.264464",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-historymuseum-dowhouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Iowa Falls Historical Dow House</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.521954,-93.264464\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dow House was built in the early 1900s is headquarters of the Iowa Falls Historical Society. The house features a unique combination of period furnishings and décor, including a petit point collection and early photos from the Iowa Falls community. The house is open May through August, just in time to highlight the beautiful period style garden.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t519 Stevens St.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.648.4017</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Rock Run Creek Trail and Bridge",
            "lat": "42.521521",
            "lon": "-93.258216",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/hardin-botany-rockruncreektrailandbridge.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rock Run Creek Trail and Bridge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.521521,-93.258216\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">39.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Open year round, the Rock Run Creek Trail and Bridge offers visitors a chance to get away from it all and explore the great outdoors. The trail offers picturesque views of wildlife, timber, and the creek bed located far below the trail. This trail is ideal for anyone looking to participate in hiking, biking , of nature observation.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t101 E Rocksylvania Ave.<br />Iowa Falls, IA 50126<br />Hardin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.648.2483</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://hardincountytrails.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Rock Creek State Park",
            "lat": "41.760600",
            "lon": "-92.836764",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Rock Creek State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.760600,-92.836764\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">45.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painter Anna Segner will be working at Rock Creek State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. F27<br />Kellogg, IA 50135<br />Jasper County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.236.3722</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/parkdetails/parkid/610137\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Springbrook State Park",
            "lat": "41.776767",
            "lon": "-94.465463",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Springbrook State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.776767,-94.465463\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">45.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Land for Springbrook State Park was acquired in 1926, and construction lasted from 1935-1942. Work was done by the Civilian Conservation Corps, which was a New Deal Program designed to provide manual labor jobs for young men while implementing a natural resource conservation program in every state and territory. It was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2437 160th Rd.<br />Guthrie Center, IA 50115<br />Guthrie County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Prairie Bridges Park",
            "lat": "42.564345",
            "lon": "-93.057298",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prairie Bridges Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.564345,-93.057298\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">47.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>With 101 acres of wildlife, woodlands and prairie, the park offers opportunities for visitor to enjoy nature at its best. Camping with electrical hookups, fishing in six ponds, three miles of trails for walking, biking or driving, disc golf course, restrooms, showers and shelter house provide a fun family experience.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t310 N Franklin Ave.<br />Ackley, IA 50601<br />Franklin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.485.1623</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.ackleyiowa.net\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Lake Ahquabi State Park",
            "lat": "41.290000",
            "lon": "-93.590333",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/warren-nhr-lakeahquabistatepark-700.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lake Ahquabi State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.290000,-93.590333\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">50.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lake Ahquabi State Park is a 773 acre park, named for the Sauk and Fox native word meaning “resting place.” Many of the park buildings were constructed by the Civilian Conservation Corps (CCC), a public works program during the Great Depression. CCC crews erected facilities, built in the rustic landscape architecture style, which complemented the natural park setting. The CCC worked at Lake Ahquabi from 1934 to 1937, constructing numerous buildings including the bathhouse, a picnic area, and a park lodge. These buildings were added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. G58<br />Indianola, IA 50125<br />Warren County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Conant&#039;s Cabin and Park",
            "lat": "42.177009",
            "lon": "-92.658690",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/tama-nhr-conantscabinandpark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Conant&#039;s Cabin and Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.177009,-92.658690\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">51.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Conant Cabin and Park is significant in the context of the beginnings of the State Parks system in the United States and Iowa’s development of a state park system. The cabin was a memorial to George Conant’s pioneer father. Conant Cabin and Park were added to the National Register of Historic Places in 2000.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIA Hwy. 96<br />Gladbrook, IA 50635<br />Tama County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Whiterock Conservancy",
            "lat": "41.855357",
            "lon": "-94.661061",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/guthrie-botany-whiterockconservancy.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Whiterock Conservancy</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.855357,-94.661061\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">53.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Whiterock Conservancy is a is a non-profit land trust stewarding seven square miles of land along the Raccoon River. They protect and restore the area&#039;s natural resources and wild beauty, to provide people of all ages with safe, meaningful and unique outdoor recreation and education experiences, and to demonstrate and promote sustainable agriculture practices that respect the land, clean the water and improve the soil.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1390 Hwy. 141<br />Coon Rapids, IA 50058<br />Guthrie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.684.2697</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://whiterockconservancy.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Franklin County Historical Society Museum",
            "lat": "42.741604",
            "lon": "-93.219438",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Franklin County Historical Society Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.741604,-93.219438\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">54mi.</span></div>\n\t\t</div>\n\n\t\t<p>The museum&#039;s farm machinery collection, covering 150 years, shows the advancement of farm technology. The &quot;Sheffield Brick and Tile&quot; exhibit explains the manufacture of drainage pipe used to improve crop production. The photo collection captures the activities of farm work and rural living, the production and processing of hemp during World War II and the Ferris Nursery production of evergreen windbreak trees. Military exhibits include a homage to Hampton native and Five-Star Fleet Admiral William Daniel Leahy. Visit the nearby Civil War Memorial Hall for more military history.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1008 Central Ave. W<br />Franklin County Fairgrounds<br />Hampton, IA 50441<br />Franklin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.456.5777</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.fchsmuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Beed&#039;s Lake State Park",
            "lat": "42.768915",
            "lon": "-93.243429",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Beed&#039;s Lake State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.768915,-93.243429\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">55.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Beeds Lake State Park was built around 1934 by the Civilian Conservation Corps (CCC)—a federal program during the Depression Era. The CCC was designed to provide manual labor jobs for young men while implementing a natural resource conservation program in every state and territory. Beeds Lake State Park was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1422 165th St.<br />Hampton, IA 50441<br />Franklin County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.456.2047</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610145\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Otter Creek Lake, Park and Nature Center",
            "lat": "42.046144",
            "lon": "-92.517636",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Otter Creek Lake, Park and Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.046144,-92.517636\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">57.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Otter Creek Lake, Park and Nature Center is a beautiful park, complete with 65 acre lake.  The nature center contains a riparian diorama.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2283 Park Rd.<br />Toledo, IA 52342<br />Tama County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.484.2231</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.tamacounty.org/conserv.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "zoos-and-wildlife.png",
            "title": "Swan Lake Conservation Education Center",
            "lat": "42.033838",
            "lon": "-94.847239",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/zoos-and-wildlife.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Swan Lake Conservation Education Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.033838,-94.847239\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">61.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Swan Lake Conservation Education Center is a regional facility serving Western Iowa by contributing towards the local economy and quality of life while providing educational, recreational, and cultural activities. The state of the art facility has a brand new audio/visual system that assists in environmental education, a wildlife viewing deck, and a backyard wetland that is located on the 33-mile multi-use Sauk Rail Trail.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t22676 Swan Lake Dr.<br />Carroll, IA 51401<br />Carroll County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.792.4614</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://carrollcountyconservation.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Stephens State Forest",
            "lat": "41.013851",
            "lon": "-93.464968",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stephens State Forest</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.013851,-93.464968\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">70.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Stephens State Forest is made up of seven individual units totaling over 15,500 acres dispersed over five counties: Lucas, Clarke, Monroe, Appanoose and Davis. Most of the recreational development in Stephens State Forest is southwest of the town of Lucas in the Lucas, Whitebreast and Woodburn Units.\r\n\r\nVisual Artist Clark Colby will be working at Stephens State Forest during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUS Hwy. 65<br />Lucas, IA 50151<br />Lucas County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.774.4559</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Forests/Stephens-State-Forest\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Hartman Reserve Nature Center",
            "lat": "42.522919",
            "lon": "-92.414075",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hartman Reserve Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.522919,-92.414075\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">71.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>This 300+ acre wooded isle boasts the Hartman Interpretive Center and six miles of trails leading to the lakes, prairies, forest, the Cedar River and the American Discovery Trail.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t657 Reserve Dr.<br />Cedar Falls, IA 50613<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.277.2187</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.hartmanreserve.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Black Hawk State Park",
            "lat": "42.293374",
            "lon": "-95.022703",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Black Hawk State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.293374,-95.022703\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73mi.</span></div>\n\t\t</div>\n\n\t\t<p>Black Hawk State Park lies off the southeast tip of the town of Lake View and is home to the southernmost glacial lake in the United States. The Depression-era Civilian Conservation Corps built many structures in the park that are still in use today. These structures reflect the effort to blend park amenities into the natural landscape in their material, design, and setting, and reflect common types developed by the National Park Service for park construction. This area was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3rd St.<br />Lake View, IA 51450<br />Sac County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.657.8712</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610154\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Cedar Valley Arboretum and Botanic Gardens",
            "lat": "42.429213",
            "lon": "-92.322664",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-botany-cedarvalleyarboretum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cedar Valley Arboretum and Botanic Gardens</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.429213,-92.322664\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Recreational, cultural and educational opportunities abound at this 74-acre site. There are a dozen picturesque gardens, 450 trees and 12 acres of prairie, children&#039;s garden and model railroad garden at the Cedar Valley Arboretum!</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1927 E Orange Rd.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.226.4966</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://cedarvalleyarboretum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "science-centers.png",
            "title": "Bluedorn Science Imaginarium",
            "lat": "42.494251",
            "lon": "-92.345160",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/blackhawk-science-bluedornscienceimaginarium.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/science-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bluedorn Science Imaginarium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.494251,-92.345160\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">73.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Grout Museum District offers four distinct museums to discover our past, present and future. At the Imaginarium, you can see a 12-foot python or watch a science demonstration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t322 Washington St.<br />Waterloo, IA 50701<br />Black Hawk County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.234.6357</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://groutmuseumdistrict.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Lake Keomah State Park",
            "lat": "41.287529",
            "lon": "-92.546491",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lake Keomah State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.287529,-92.546491\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">76.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lake Keomah State Park is 366 acres of beautiful woods and water. Lovely shaded picnic areas are next to a 84 acre man-made lake. The park&#039;s name was derived from the first three letters of Keokuk and Mahaska counties. A portion of the south side of the lake was reserved for private development and many homes dot this side of the lake. The park was dedicated in 1934. Many of its facilities were constructed by the Civilian Conservation Corps (CCC). The Civilian Conservation Corps were a national level government program carried out through the state within its parks. It sought to provide recreational opportunities for local communities and conserve the parks&#039; landscapes by using unemployed youths in make-work projects, a move toward social welfare at the national level. Lake Keomah State Park was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2720 Keomah Ln.<br />Oskaloosa, IA 52577<br />Mahaska County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.673.6975</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610143\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Central Gardens of North Iowa",
            "lat": "43.139854",
            "lon": "-93.378135",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cerrogordo-botany-gardensofnorthiowa.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Central Gardens of North Iowa</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.139854,-93.378135\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Central Gardens of North Iowa are made up of several themed gardens. The gardens were started in 2000, by a committee that became non-profit in 2003. The gardens continue to be expanded.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2nd Ave. N<br />Clear Lake, IA 50428<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.357.0700</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.central-gardens.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Fossil and Prairie Park Preserve and Center",
            "lat": "43.047399",
            "lon": "-92.980997",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/floyd-botany-fossilprairieparkpreserve.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fossil and Prairie Park Preserve and Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.047399,-92.980997\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Visitors can search for and collect Devonian fossils and wander through native prairie. Visitors can also view the beehive kilns of Rockford Brick and Tile Company and learn how their product helped expand agriculture.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1227 215th St.<br />Rockford, IA 50468<br />Floyd County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.756.3490</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.fossilcenter.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Stinson Prairie",
            "lat": "43.047145",
            "lon": "-94.325308",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stinson Prairie</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.047145,-94.325308\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">78.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Stinson Prairie displays diverse plant and animal communities ranging from pothole marsh to dry prairie. Walk the narrow footpath to the crest of the hill and look south. You are standing on the conspicuous edge of the Algona end moraine. This was the “end of the road” for the glacier that was here 12,500 years ago. As it melted, the gravel and rock that it had carried with it dropped out and remains as a high ridge today. This ridge overlooks a level outwash plain to the south and marks the last advance of the Des Moines Lobe ice sheet.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t70th Ave.<br />Algona, IA 50511<br />Kossuth County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.watchablewildlifenwia.org/sites-StinsonP.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Mormon Trail Park",
            "lat": "40.827260",
            "lon": "-93.626372",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mormon Trail Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.827260,-93.626372\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">82.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Mormon Trail Park is a large open area located near Garden Grove, Iowa. It once served as a rest stop and trading post for Mormons on the Mormon Trail. It is believed that settlers from the park, eventually grew into the city of Garden Grove.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCty. Hwy. J 20<br />Garden Grove, IA 50103<br />Decatur County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.446.4991</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.nps.gov/mopi/planyourvisit/site3.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Lime Creek Nature Center",
            "lat": "43.183929",
            "lon": "-93.192886",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lime Creek Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.183929,-93.192886\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">83.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Nestled atop the limestone bluffs of the Winnebago River, the center is a prime destination for nature lovers featuring a variety of captivating displays and unique wildlife mounts that highlight the natural resources of North Iowa. Located on 440 acres of diverse natural habitat with over nine miles of trails. Virtual geocaching is available.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3501 Lime Creek Rd.<br />Hwy. 65 North<br />Mason City, IA 50401<br />Cerro Gordo County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.422.1663</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.co.cerro-gordo.ia.us/index.php/departments/lime-creek-nature-center/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Pilot Knob State Park",
            "lat": "43.251723",
            "lon": "-93.557080",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.dcaapp.com/admin/content/photos/view/?id=276\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pilot Knob State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.251723,-93.557080\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Pilot Knob State Park was a project of the Civilian Conservation Corps during the New Deal Era. In 1920, a group of citizens met in Forest City to recommend the creation of the state park at Pilot Knob so that its natural setting might be enjoyed by later generations. The system of trails is excellent for hikers and horseback riders. It was added to the National Register of Historic Places in 1991. \r\n\r\nMixed Media Artist Christopher Yanulis will be working at Pikes Peak State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2148 340th St.<br />Forest City, IA 50436<br />Hancock County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.581.4835</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610140\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Pilot Grove State Preserve",
            "lat": "41.630182",
            "lon": "-92.084336",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pilot Grove State Preserve</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.630182,-92.084336\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">84.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>This wooded knoll was known from the early 1840s as a landmark for pioneers going west across Iowa. During the early years of settlement, from 1840-1860, there was no timber in the area except for this grove, which could be seen from miles away. It was added to the National Register of Historic Places in 1977.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t260th St.<br />Williamsburg, IA 52361<br />Iowa County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Prairie Pedlar Gardens",
            "lat": "42.400339",
            "lon": "-95.262704",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prairie Pedlar Gardens</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.400339,-95.262704\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Prairie Pedlar Gardens is filled with perennials, herbs, ornamental trees. Tours are available of the many gardens.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1609 270th St.<br />Odebolt, IA 51458<br />Sac County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.prairiepedlar.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Cook No. 8 School",
            "lat": "42.400652",
            "lon": "-95.263722",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cook No. 8 School</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.400652,-95.263722\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">86.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Cook No. 8 School was built in on the former Cook Ranch in 1902 when Mr. Cook deeded land to the county to have a schoolhouse built for his children and tenants. The school still stands at its original site in Section 27, Cook Township, alongside the ranch which has been transformed into the Prairie Pedlar Gardens. In addition to the school house, the gardens feature more than 75 display gardens, the refrubished bow-truss barn and five greenhouses.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1609 270th St.<br />Odebolt, IA 51458<br />Sac County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.668.4840</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.prairiepedlar.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "zoos-and-wildlife.png",
            "title": "Union Slough National Wildlife Refuge",
            "lat": "43.283860",
            "lon": "-94.110535",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/zoos-and-wildlife.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Union Slough National Wildlife Refuge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.283860,-94.110535\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Union Slough National Wildlife Refuge was established by an Executive Order in 1938, which designated this area as a migratory waterfowl refuge. It provides refuge and breeding grounds for migratory birds and other wildlife. The Slough is all that remains of a pre-glacial riverbed. During the early settlement times, Union Slough covered 8,000 acres and was considered useless for farming. Many levees and ditches were built in this area in an attempt to control water levels and improve the area for agriculture. In spite of these habitat changes, the area continued to support an abundance of waterfowl, as well as wetland and upland wildlife species. Refuge uplands surrounding the Slough still contain remnant tallgrass prairie, a rare commodity in an intensively cultivated area. Today, Union Slough National Wildlife Refuge encompasses 3,334 acres of both marsh and upland habitat.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1710 360th St.<br />Titonka, IA 50480<br />Kossuth County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 515.928.2523</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.fws.gov/refuge/Union_Slough/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Living Heritage Tree Museum",
            "lat": "42.638119",
            "lon": "-95.206117",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/buenavista-historymuseum-livingheritagemuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Living Heritage Tree Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.638119,-95.206117\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">90.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Living Heritage Tree Museum, founded in 1987, is an educational and recreational attraction. Located on the shores of Storm Lake, the museum is made up of trees that are descended from famous trees. Visitors will find the Moon Tree, an American Sycamore grown from a seed that was taken to the moon on Apollo 12, among many other notable trees. Plaques near each tree describe their significance.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t400 W Lakeshore Dr.<br />Sunset Park<br />Storm Lake, IA 50588<br />Buena Vista County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.stormlake.org/301/Heritage-Tree-Museum\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "zoos-and-wildlife.png",
            "title": "Hawkeye Buffalo Ranch",
            "lat": "42.916161",
            "lon": "-92.238857",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/zoos-and-wildlife.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hawkeye Buffalo Ranch</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.916161,-92.238857\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">94.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Tours at the Hawkeye Buffalo Ranch include history and facts about bison, as well as a history of the farm, which has been in operation for over 150 years. Buffalo dinners and family stays are available by reservation.</p>\t\t\t\t\t\t<p><em>This property is privately owned and not open to the public. Please respect the privacy of owners if you visit.</em></p>\n\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3034 Pembroke Ave.<br />Fredericksburg, IA 50630<br />Chickasaw County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.237.5318</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"www.hawkeyebuffalo.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Milton R. Owen Nature Center",
            "lat": "43.284350",
            "lon": "-92.857323",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Milton R. Owen Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.284350,-92.857323\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">95.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Milton R. Owen Nature Center is a wildlife area with displays and activities on a variety of natural history and environmental topics. Located on the Falk&#039;s Wildlife area just west of Osage, the center is right at the south end of the 4-mile Cedar River Greenbelt Trail and has a large collection of wildlife specimens, a bird feeding observation area, educational exhibits and programs, and a trumpeter swan restoration site with a captive breeding pair. A variety of recreational and education programs are offered to the public from the nature center throughout the year.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t18793 Hwy. 9<br />Osage, IA 50461<br />Mitchell County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 641.732.5204</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Wickiup Hill Learning Center",
            "lat": "42.083016",
            "lon": "-91.764971",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wickiup Hill Learning Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.083016,-91.764971\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">96.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The 683-acre complex includes an interpretive center and surrounding wetlands, reconstructed prairie, savanna, timber and five miles of trails. Numerous outdoor recreation opportunities such as hiking, snowshoeing, cross country skiing, bird watching and wildlife observation are available. Educational displays in the center highlight Wickiup Hill&#039;s natural resources and its archaeological past.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10260 Morris Hill Rd.<br />Toddville, IA 52341<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.892.6485</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.LinnCountyParks.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Fontana Interpretive Nature Center",
            "lat": "42.604441",
            "lon": "-91.908285",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Fontana Interpretive Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.604441,-91.908285\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">97.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Fontana Park Interpretive Nature Center is a full service visitor center with displays that demonstrate how people &quot;make their home in a living environment.&quot; Visitors can see and touch natural objects, play games and find answers to questions. There is also a live wildlife display that includes orphaned, injured or human-raised wildlife that can no longer live in the wild. Programs are available upon request.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1883 125th St.<br />Hazleton, IA 50641<br />Buchanan County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.636.2617</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://buchanancountyparks.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Farm House Bed and Breakfast/Engelbrecht Family Winery",
            "lat": "42.964442",
            "lon": "-92.186792",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Farm House Bed and Breakfast/Engelbrecht Family Winery</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.964442,-92.186792\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">98.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>At the Farm House Bed and Breakfast, guests can enjoy a stay on a real working farm with animals, an 11-acre vineyard and a winery/shop. Children are welcome! Adults can enjoy free wine tasting daily of estate/fruit wines. Winery/vineyard tours are available with advanced notice. Guests love feeding calves, gathering the eggs, fishing in the farm pond, walking, running, biking or picnicking on the six mile nature trail adjacent to the B and B. Guests are served a real Farmer&#039;s Breakfast made with local products.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2866 270th St.<br />Fredericksburg, IA 50630<br />Chickasaw County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.237.5969</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"www.thefarmhousebb.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "F. W. Kent Park",
            "lat": "41.735554",
            "lon": "-91.722737",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">F. W. Kent Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.735554,-91.722737\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">100.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The 1,082-acre park features a Conservation Education Center with hands-on exhibits that connect visitors with nature. Panels in the open-air Knight Prairie Pavilion interpret the connection of prairies to agriculture. An 84-site campground, shower house, playgrounds, picnic shelters, hiking trails, eight historic bridges, native and re-created prairies, forests, wetlands, 27-acre lake, beach and fishing ponds combine to make this an outstanding park.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2048 Hwy. 6 NW<br />Oxford, IA 52322<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.645.1011</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.johnson-county.com/conservation\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Viking Lake State Park",
            "lat": "40.971575",
            "lon": "-95.043636",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Viking Lake State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.971575,-95.043636\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Visual Artist Olivia Valentine will be working at Viking Lake State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2780 Viking Lake Rd.<br />Stanton, IA 51573<br />Montgomery County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.829.2235</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/parkdetails/parkid/610135\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Brucemore",
            "lat": "41.992385",
            "lon": "-91.639345",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-nhr-brucemorehouse.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Brucemore</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.992385,-91.639345\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">102.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Iowa&#039;s only National Trust Historic Site, Brucemore is a 26-acre park-like estate in the heart of Cedar Rapids. The delightful Queen Anne Style mansion was built between 1884 and 1886 by Caroline Sinclair, widow of the pioneer industrialist T.M. Sinclair. The home to three prominent Cedar Rapids families, the estate continues to be a hub for cultural, philanthropic and educational activities.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2160 Linden Dr. SE<br />Cedar Rapids, IA 52403<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.362.7375</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://brucemore.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Emmet County Nature Center",
            "lat": "43.309761",
            "lon": "-94.701280",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/emmet-botany-emmetcountynaturecenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Emmet County Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.309761,-94.701280\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">103.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Emmet County Nature Center promotes environmental education at its 4,400 square foot facility east of Wallingford. Enjoy the exhibits, take a hike, enjoy a picnic and visit with the on-site naturalist.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2303 450th Ave<br />Wallingford, IA 51365<br />Emmet County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.867.4422</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://emmetcountyconservation.com/naturecenter.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Lake of Three Fires State Park",
            "lat": "40.712838",
            "lon": "-94.683246",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lake of Three Fires State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.712838,-94.683246\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">105.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Amy Harris will be working at Lake of Three Fires State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration. Harris&#039; work will focus on fiber art and drawing.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2303 Lake Rd.<br />Bedford, IA 50833<br />Taylor County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.523.2700</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/ParkDetails/parkid/610110\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Wanata State Park",
            "lat": "42.911006",
            "lon": "-95.338364",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wanata State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.911006,-95.338364\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">105.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civilian Conservation Corps (CCC) was a public relief program to make work for unemployed, unmarried man ages 18-25 during the New Deal, from 1933-1942. Men in the CCC worked in camps set up across the nation, and many of the camps were in Iowa State Parks. Many state park facilities date to the CCC. The buildings, structures, and objects reflect the effort to blend park amenities into the natural landscape in their material, design, workmanship, and immediate setting and reflect common types developed by the National Park Service for park construction. The CCC worked on the Wanata State Park from 1933-1935. The Picnic Shelter was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tWanata State Park<br />Peterson, IA 51047<br />Clay County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Indian Creek Nature Center",
            "lat": "41.966964",
            "lon": "-91.580153",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/linn-botany-indiancreeknaturecenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Indian Creek Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.966964,-91.580153\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">106mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Indian Creek Nature Center sits on land previously occupied by two farms that were established in 1849. The Penningroth Dairy Barn, built in 1932, houses the visitor&#039;s center. The center features exhibits depicting historic, cultural and wildlife settlements and approximately four miles of nature trails.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6665 Otis Rd. SE<br />Cedar Rapids, IA 52403<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.362.0664</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://indiancreeknaturecenter.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Lake Macbride State Park",
            "lat": "41.804774",
            "lon": "-91.571389",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lake Macbride State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.804774,-91.571389\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Artist Firat Erdim will be working at Lake Macbride State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration. Erdim&#039;s work will focus on architecture.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3525 Hwy. 382 NE<br />Solon, IA 52333<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.624.2200</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/ParkDetails/ParkID/610119/idAdminBoundary/192\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Lake Darling State Park",
            "lat": "41.185504",
            "lon": "-91.886145",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lake Darling State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.185504,-91.886145\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">107.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Lake Darling State Park was dedicated on September 17, 1950 and was named for Jay Norwood &quot;Ding&quot; Darling. Darling was a legendary figure of journalism and of the conservation movement. As a journalist, Darling’s editorial cartoons were syndicated in more than 100 newspapers nationwide, and he was twice awarded the Pulitzer Prize. As a conservationist, he awakened the nation to its vanishing natural resources and initiated many lasting conservation programs. The park covers 1,417 acres including a 302-acre lake with nearly 18 miles of shoreline, and beautiful wooded hills and valleys.\r\n\r\nSculptor Rob Wallace will be working at Lake Darling State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t111 Lake Darling Rd.<br />Brighton, IA 52540<br />Washington County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.694.2323</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/ParkDetails/ParkID/610109\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "science-centers.png",
            "title": "Sanford Museum and Planetarium",
            "lat": "42.750222",
            "lon": "-95.550386",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/cherokee-historymuseum-sanfordmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/science-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Sanford Museum and Planetarium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.750222,-95.550386\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">109.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Sanford Museum and Planetarium has exhibits and activities on a variety of subjects including: Archaeology, Art, Astronomy, Geology, History, Natural History, and Paleontology. The museum was made possible through a trust fund established by the late Mr. and Mrs. W.A. Sanford of Cherokee. The facility opened in 1951, and has been viewed by more one million people.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t117 E Willow St.<br />Cherokee, IA 51012<br />Cherokee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.225.3922</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://sanfordmuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Prairie Heritage Center",
            "lat": "42.934927",
            "lon": "-95.418639",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/obrien-botany-prairienaturecenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Prairie Heritage Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.934927,-95.418639\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>Experience the sights, sounds and smells of the tall grass prairie! Enjoy the displays, hike the trails, savor the wildflowers, and engage in bird and wildlife watching. On the grounds you can view a sod house from the pioneer era, a prairie acreage being restored with a wide variety of native grasses and wildflowers. The Mill Creek lodge and agricultural plot interpret life among the late Prehistoric Native Americans found in O&#039;Brien County in 1100 - 1250 A.D., as well as a live display of Bison, that highlights one of the dominant grazing animals of the prairie.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4931 Yellow Ave.<br />Peterson, IA 51047<br />O&#039;Brien County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.295.7200</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://obriencountyconservation.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Wildwood Nature Center",
            "lat": "42.899296",
            "lon": "-91.834608",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wildwood Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.899296,-91.834608\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Wildwood Nature Center is a seven acre area located four miles north of Fayette. The Nature Center features a live animal exhibit where they have mammals, birds of prey and even a bald eagle. The Nature Center has an employee naturalist to help any visitors who wish to see the animals.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t18673 Lane Rd.<br />Fayette, IA 52142<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.422.5146</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://fayettecountyiowa.org/CONSERVATION.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Palisades-Kepler State Park",
            "lat": "41.918681",
            "lon": "-91.494380",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Palisades-Kepler State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.918681,-91.494380\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">110.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Painter Celinda Stamy will be working at Palisades-Kepler State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t700 Kepler Drive<br />Mount Vernon, IA 52314<br />Linn County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.895.6039</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/ParkDetails/parkid/610113\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Backbone State Park",
            "lat": "42.616614",
            "lon": "-91.561410",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Backbone State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.616614,-91.561410\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">113.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>Backbone is one of Iowa&#039;s most important state parks. It was the first state park to be acquired, dedicated in 1919, and was extensively developed by the Civilian Conservation Corps during the New Deal era. The park was added to the National Register of Historic Places in 1991. \r\n\r\nInterdisciplinary Artist Kimberly Moss will be working at Backbone State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1347 129th St.<br />Dundee, IA 52038<br />Delaware County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.924.2000</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610105\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "science-centers.png",
            "title": "Devonian Fossil Gorge",
            "lat": "41.618013",
            "lon": "-91.498485",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/science-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Devonian Fossil Gorge</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.618013,-91.498485\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">114mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Devonian Fossil Gorge is a stretch of bedrock that was revealed by the floods of 1993 and 2008. During these floods, water rose over the top of the Coralville Dam, and washed away large amounts of vegetation, soil, sediment, and even some of the bedrock. This huge rush of water carved out pieces of bedrock in a horizontal manner, revealing entire layers of rock and numerous fossils. The gorge will not last forever, as weathering is already beginning to wear away the exposed bedrock. So, if you want to experience the natural wonder and have look into Iowa&#039;s geological past, you should plan your visit soon.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2850 Prairie Du Chien Rd. NE<br />Iowa City, IA 52240<br />Johnson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.338.3543</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.igsb.uiowa.edu/browse/spillway/spillway.htm\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Hayden Prairie State Preserve",
            "lat": "43.438536",
            "lon": "-92.382600",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hayden Prairie State Preserve</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.438536,-92.382600\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">116.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Hayden Prairie is a protected stretch of over 242 miles of natural prairie. It was acquired by the state in 1945 and named after Dr. Ada Hayden. Dr. Hayden was a passionate botanist, and the first woman to get her Doctorate from Iowa State University. The prairie has been called Iowa&#039;s rain forest because of the diversity of the plants and animals in the area. The preserve has approximately 200 different plant species, 46 species of native grassland birds and 20 species of butterflies.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tIvy Ave. and 50th St.<br />Lime Springs, IA 52155<br />Howard County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.546.7960</p>\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Washington County Conservation Education Center",
            "lat": "41.286295",
            "lon": "-91.578599",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Washington County Conservation Education Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.286295,-91.578599\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Located seven miles east of Washington at Marr Park is the Washington County Conservation Education Center. Promoting conservation and providing environmental education and outdoor recreation opportunities, the center offers materials and resources to the public as well as facilities for school field trips, park visitors and programs.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tMarr Park<br />Washington, IA 52353<br />Washington County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Loess Hills State Forest Visitor Center",
            "lat": "41.831904",
            "lon": "-95.928201",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/harrison-science-loesshillsstateforestvisitorcenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Loess Hills State Forest Visitor Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.831904,-95.928201\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Loess Hills State Forest Visitors Center is a center to teach people about the Loess Hills State Forest using displays, dioramas and murals. The forest is over 11,000 acres, and provides opportunities to hike, fish, ski, and hunt. Visitors also enjoy the Loess Hills National Scenic Byway that snakes its way through Harrison County, providing plenty of stops to enjoy Harrison County and the other seven counties that are a part of this beautiful road.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t206 Polk St.<br />Pisgah, IA 51564<br />Harrison County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.456.2924</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://iowadnr.gov/forestry/loesshills.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "uniquely-iowa.png",
            "title": "Loess Hills Scenic Overlook",
            "lat": "41.905277",
            "lon": "-95.945726",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/monona-uniqueiowa-loesshillscenicoverlook.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/uniquely-iowa.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Loess Hills Scenic Overlook</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.905277,-95.945726\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">118.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Enjoy one of the best views of the Loess Hills from this forest overlook nicknamed &quot;The Spot&quot; by Walter Ordway Jr. An Iowa native, Ordway was an accomplished artist and organic farmer, who for years traveled the world before returning to Iowa. He was instrumental in developing the Loess Hills Scenic Byway which was awarded National Scenic Byways status in 2000. The Loess Hills are a unique land form created 14,000 years ago by strong winds that deposited silt from the Missouri River Valley flood plain into clouds of dust, depositing them into rugged bluffs.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tOak Ave.<br />Moorhead, IA 51558<br />Monona County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Pillsbury Point State Park &amp; Overlook",
            "lat": "43.367576",
            "lon": "-95.141564",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-botany-pillsburypointstateparkoverlook.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pillsbury Point State Park &amp; Overlook</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.367576,-95.141564\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">119.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civilian Conservation Corps (CCC) was a public relief program to make work for unemployed, unmarried man ages 18-25 during the New Deal, from 1933-1942. Men in the CCC worked in camps set up across the nation, and many of the camps were in Iowa State Parks. Many state park facilities date to the CCC. The buildings, structures, and objects reflect the effort to blend park amenities into the natural landscape in their material, design, workmanship, and immediate setting and reflect common types developed by the National Park Service for park construction. The rustic, landscaped park at the Pillsbury Point State Park Overlook was constructed by the CCC. The park is an irregularly shaped plot of land representing the northernmost portion of Pillsbury Point State Park. This park is one of the smallest and most urban, comprising of only 6 acres located within the city limits of Arnolds Park. The Pillsbury Point State Park Overlook District was added to the National Register of Historic Places in 1993.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tUS Hwy. 71<br />Arnolds Park, IA 51331<br />Dickinson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Gull Point State Park",
            "lat": "43.371463",
            "lon": "-95.167755",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-nhr-gullpointstatepark.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gull Point State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.371463,-95.167755\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civilian Conservation Corps (CCC) was a public relief program to make work for unemployed, unmarried men ages 18-25 during the New Deal, from 1933-1942. Men in the CCC worked in camps set up across the nation, and many of the camps were in Iowa State Parks. Many state park facilities date to the CCC. The buildings, structures, and objects reflect the effort to blend park amenities into the natural landscape in their material, design, workmanship, and immediate setting and reflect common types developed by the National Park Service for park construction. Located along the shores of West Lake Okoboji, Gull Point State Park has rustic architecture and timber-stonework created by the CCC. Parts of Gull Point State Park were added to the National Register of Historic Places in 1990. \r\n\r\nIntramedia Artist Paula Streeter will be working at Gull Point State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1500 Harpen St.<br />Milford, IA 51351<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.337.3211</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610129\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Dickinson County Nature Center",
            "lat": "43.398910",
            "lon": "-95.135772",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-botany-dickinsoncountynaturecenter.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Dickinson County Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.398910,-95.135772\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Explore, learn and foster an appreciation for the natural world with a visit to the Dickinson County Nature Center. This peaceful retreat provides a living classroom through the natural, scenic and historic resources in the area. Visit the conservation board&#039;s website to view opportunities to enjoy all the parks in Dickinson County.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2279 170th St.<br />Kenue Park<br />Okoboji, IA 51355<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.336.6352</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://dickinsoncountyconservationboard.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Hitchcock Nature Center",
            "lat": "41.413413",
            "lon": "-95.857488",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/pottawattamie-science-hitchcocknaturecenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hitchcock Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.413413,-95.857488\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Acquired by Pottawattamie County in 1991, Hitchcock Nature Center currently consists of 1,268 acres located in the heart of the globally significant Loess Hills. The Loess Hills harbor some of the largest remaining prairie remnants in Iowa and provide refuge for plants and animals found nowhere else in the state. Hitchcock is open every day of the year for hiking, camping, picnicking, bird watching, snow sledding, star gazing, or simply enjoying nature.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t27792 Ski Hill Loop<br />Honey Creek, IA 51542<br />Pottawattamie County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.545.3283</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://pottcoconservation.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Gilbertson Conservation Education Area",
            "lat": "42.957716",
            "lon": "-91.611429",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gilbertson Conservation Education Area</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.957716,-91.611429\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">121.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>A 345-acre recreation and education area that includes the Gilbertson Nature Center, Maize Maze, Mavis and Conner Dummermuth Historical Building, Hart Dummermuth Historical Building, petting zoo and crop demonstration plots. This unique area also offers canoe access, a paved, accessible quarter mile trail, a playground, a shelter house, a modern campground and over five miles of trails.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t22502 A Ave.<br />Elgin, IA 52141<br />Fayette County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.426.5740</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.elginiowa.org/gilbertson.html\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Pikes Point State Park",
            "lat": "43.415303",
            "lon": "-95.163529",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-nhr-pikespointstatepark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pikes Point State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.415303,-95.163529\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">123.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civilian Conservation Corps (CCC) was a public relief program to make work for unemployed, unmarried man ages 18-25 during the New Deal, from 1933-1942. Men in the CCC worked in camps set up across the nation, and many of the camps were in Iowa State Parks. Many state park facilities date to the CCC. The buildings, structures, and objects reflect the effort to blend park amenities into the natural landscape in their material, design, workmanship, and immediate setting and reflect common types developed by the National Park Service for park construction. The shelter and steps at Pikes Point State Park were constructed by the CCC. They were added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t15973 213th Ave.<br />Spirit Lake, IA 51360<br />Dickinson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.337.3211</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610198\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Morris Memorial Park",
            "lat": "40.888854",
            "lon": "-91.799703",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Morris Memorial Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.888854,-91.799703\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">123.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Morris Park is a picturesque, 60 acre park located 4 miles northeast of Stockport. It is owned and operated by Van Buren County Conservation with a resident park attendant. Quiet, peaceful and remote, Morris Park offers a beautiful setting for camping and for the pioneer relics on display. The park has several buildings containing artifacts from the county&#039;s farming past as well as a stocked pond, nature trails, picnic areas and camping hookups. The area was originally settled in 1838 by Henry and Jane Morris. One hundred years later their grandsons, John and Arthur Morris, established a park in their honor. They built a replica of the original Morris cabin which now contains utensils, tools, clothing, a spinning wheel, and other artifacts from the 1840&#039;s on. The &quot;Music Hall&quot; holds an old pump organ and piano along with a dentist&#039;s chair. The &quot;Art Hall&quot; displays some Morris memorabilia, old photos an some history of the family. The newest building is the full-sized replica of a turn-of-the-century barn. Housed in the barn are such things as a glass-sided horse drawn hearse, a wooden two-man corn planter, the Utica huckster wagon, a replica of a McCormick reaper, a rare hay stacker, etc. Sitting next to a quiet pond is an old country schoolhouse, the East Union School.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tTimber Rd.<br />Stockport, IA 52651<br />Van Buren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.796.2148</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://villagesofvanburen.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Osborne Welcome Center and Nature Center",
            "lat": "42.791385",
            "lon": "-91.445879",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Osborne Welcome Center and Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.791385,-91.445879\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">124mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Osborne Welcome Center is an Iowa Welcome Center and Nature Center, serving over 15,000 students annually. In the 1870s and 1880s, Osborne was a community - but it never reached more than 50 residents. In the fall of 1960, the Clayton County Conservation Board purchased 60 acres of the original Osborne homestead and established it as a county park. There are several buildings on site, including St. Paul&#039;s Lutheran Church Catechism. The Clayton County Conservation Board A vision of “a place where students can learn” has been the guiding force for the development of the Osborne Center. In 1971 the Conservation Board purchased an additional 155 acres of land from Ben Casey. The land, located north across the Volga River, is used for archery, hiking, skiing, sledding, and birding. Osborne boasts a Native Wildlife Exhibit, walking trails and a gift shop.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t29862 Osborne Rd.<br />Elkader, IA 52043<br />Clayton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.245.1516</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://claytoncountyconservation.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Lacey Keosauqua State Park",
            "lat": "40.709454",
            "lon": "-91.972325",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/vanburen-nhr-laceykeosauquapark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Lacey Keosauqua State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.709454,-91.972325\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civilian Conservation Corps (CCC) was a public relief program to make work for unemployed, unmarried man ages 18-25 during the New Deal, from 1933-1942. Men in the CCC worked in camps set up across the nation, and many of the camps were in Iowa State Parks. Many state park facilities date to the CCC. The buildings, structures, and objects reflect the effort to blend park amenities into the natural landscape in their material, design, workmanship, and immediate setting and reflect common types developed by the National Park Service for park construction. The CCC worked at Lacey Keosauqua State Park and the Bath House, Lodge and Picnic Shelter were added to the National Register of Historic Places in 1990. \r\n\r\nVisual Artist Nancy Thompson will be working at Lacey-Keosauqua State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t22895 Lacey Trail<br />Keosauqua, IA 52565<br />Van Buren County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.293.3502</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/parkdetails/parkid/610103\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Mini-Wakan State Park",
            "lat": "43.497864",
            "lon": "-95.103304",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-nhr-miniwakanstatepark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mini-Wakan State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.497864,-95.103304\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">125.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civilian Conservation Corps (CCC) was a public relief program to make work for unemployed, unmarried man ages 18-25 during the New Deal, from 1933-1942. Men in the CCC worked in camps set up across the nation, and many of the camps were in Iowa State Parks. Many state park facilities date to the CCC. The buildings, structures, and objects reflect the effort to blend park amenities into the natural landscape in their material, design, workmanship, and immediate setting and reflect common types developed by the National Park Service for park construction. The facilities at Mini-Wakan State Park were built using local and regional stone. The park is best noted for its rustic shelter with a unique fireplace arrangement. This site was added to the national Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t24490 100th St.<br />Spirit Lake, IA 51360<br />Dickinson County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://miniwakan.theslpa.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Riverside Gardens",
            "lat": "42.241418",
            "lon": "-91.183480",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Riverside Gardens</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.241418,-91.183480\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">126.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Riverside Gardens are a showcase of the diversity of the plant life around Monticello. The Gardens were built around the Maquoketa River, and feature more than 30 flower beds, a picnic area, a gazebo, a wishing well, nature trails, and a wetland area. The nature trail encircles the wetland area with signs indicating the importance of wetland to water quality and identifying plants and animals in the ecosystem.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t441 E 3rd St.<br />Monticello, IA 52310<br />Jones County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Central Park Nature Center",
            "lat": "42.111088",
            "lon": "-91.137215",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Central Park Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.111088,-91.137215\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">128.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Central Park Nature Center has displays and dioramas the help interpret the natural and cultural features of the county</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t12515 Central Park Rd.<br />Center Junction, IA 52212<br />Jones County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.487.3541</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.jonescountyiowa.org/Pages/default.aspx\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Pony Creek Park",
            "lat": "41.071459",
            "lon": "-95.786328",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/mills-nhr-ponycreekpark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pony Creek Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.071459,-95.786328\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">129mi.</span></div>\n\t\t</div>\n\n\t\t<p>Pony Creek Park is one of the locations in the Glenwood region where the existence of two, and possibly more, prehistoric earth lodge sites have been discovered. These house sites, identified as components of a Central Plains Tradition community, are the only examples of such houses presently located on public property where they might be preserved and protected. The earth lodge sites within the park are not viewable, however, the park marks the pre-historic community that once existed here. A reconstruction of a typical earth lodge is viewable at Glenwood Lake Park. Pony Creek Park was added to the National Register of Historic Places in 1971.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t56235 Deacon Rd.<br />Pacific Junction, IA 51561<br />Mills County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.527.9685</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.millscoia.us/index.php/depts/conservation\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Trappers Bay State Park",
            "lat": "43.453841",
            "lon": "-95.334525",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dickinson-nhr-trappersbaystatepark.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Trappers Bay State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.453841,-95.334525\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">130.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Civilian Conservation Corps (CCC) was a public relief program to make work for unemployed, unmarried man ages 18-25 during the New Deal, from 1933-1942. Men in the CCC worked in camps set up across the nation, and many of the camps were in Iowa State Parks. Many state park facilities date to the CCC. The buildings, structures, and objects reflect the effort to blend park amenities into the natural landscape in their material, design, workmanship, and immediate setting and reflect common types developed by the National Park Service for park construction. The Trappers Bay State Park Picnic Shelter was built with wood and stones. It is one of the largest examples of CCC building in northern Iowa. This site was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tCo. Rd. M32<br />Lake Park, IA 51351<br />Dickinson County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "zoos-and-wildlife.png",
            "title": "Seed Savers Exchange",
            "lat": "43.384679",
            "lon": "-91.807449",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/zoos-and-wildlife.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Seed Savers Exchange</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.384679,-91.807449\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">132.3mi.</span></div>\n\t\t</div>\n\n\t\t<p>This Heritage Farm is a 890-acre living museum. An interpretive trail winds through vegetable and flower gardens, an heirloom orchard, restored prairie and past herds of Ancient White Park cattle. At the farm, you can learn about seed preservation and the more than 25,000 varieties of endangered vegetables at Seed Savers.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3074 N Winn Rd.<br />Decorah, IA 52101<br />Winneshiek County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.382.5990</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.seedsavers.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Ocheyedan Mound State Preserve",
            "lat": "43.401504",
            "lon": "-95.522988",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/osceola-botany-ocheyedanmound.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Ocheyedan Mound State Preserve</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.401504,-95.522988\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">134.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>Ocheyedan Mound State Preserve is located in the Des Moines Lobe landform region and is named after a large glacial hill called a &quot;kame,&quot; which formed during a glacier melting around 12,000 years ago. It&#039;s made of sand, gravel and small boulders deposited and heaped together by streams of glacial meltwater. Only part of the Ocheyedan Mound is contained on the preserve, as it is almost 40 acres in size, and it&#039;s one of the highest points in Iowa. Sioux Indians used to visit the mound, and pioneers used it as a landmark. More recently, it was a popular place for picnics and winter activities like skiing. The mound&#039;s vegetation is slowly returning to native grasses and flowers.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t6400 170th St.<br />Ocheyedan, IA 50134<br />Osceola County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.785.3709</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.osceolacountyia.org/county/office/27\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Discovery Park Environmental Learning Center",
            "lat": "41.433704",
            "lon": "-91.087928",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Discovery Park Environmental Learning Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.433704,-91.087928\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138mi.</span></div>\n\t\t</div>\n\n\t\t<p>Learn about Iowa&#039;s natural history and wildlife at the Environmental Learning Center in Discovery Park. View native fish in two 1,200-gallon acquariums, view natural history exhibits, see live animals and discover native plants. In addition, the learning center offers many public conservation education programs throughout the year.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3300 Cedar St<br />Discovery Park<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563-264-5922</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://muscatinecountyconservation.com/mccb-areas/environmental-learning-center/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Muscatine Arboretum",
            "lat": "41.431762",
            "lon": "-91.087183",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Muscatine Arboretum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.431762,-91.087183\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">138.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Muscatine Arboretum covers 15 acres where you&#039;ll find more than 1,000 native and ornamental trees, flowers, a gazebo and more.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3300 Cedar St<br />Discovery Park<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "zoos-and-wildlife.png",
            "title": "Guttenberg National Fish Hatchery and Aquarium Historic District",
            "lat": "42.782953",
            "lon": "-91.095504",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/clayton-nhr-guttenbergnationalfishhatcheryandaquariumhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/zoos-and-wildlife.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Guttenberg National Fish Hatchery and Aquarium Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.782953,-91.095504\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">140.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Guttenberg Fish Hatchery is the last of five federally owned and operated facilities to be built in Iowa. The hatchery represents the federal government&#039;s participation in fish conservation in the state through the U. S. Bureau of Fisheries, Department of Commerce, which was later consolidated with the U. S. Bureau of Biological Survey under the Department of the Interior, and then reorganized as the U. S. Fish and Wildlife Service. The four buildings are from the Depression Era. As such, the property contributes to the character of Guttenberg&#039;s downtown historic district. It was added to the National Register of Historic Places in 1991.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t315 S River Park Dr.<br />Guttenberg, IA 52052<br />Clayton County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Pikes Peak State Park",
            "lat": "42.994816",
            "lon": "-91.166021",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Pikes Peak State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.994816,-91.166021\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">142.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Visual Artist Barbara Walton will be working at Pikes Peak State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t32264 Great River Rd.<br />McGregor, IA 52157<br />Clayton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.873.2341</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/parkdetails/parkid/610141\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "The Ion Exchange, Inc.",
            "lat": "43.116394",
            "lon": "-91.256639",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">The Ion Exchange, Inc.</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.116394,-91.256639\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">142.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This nursery specializes in the production, harvesting, cleaning and marketing of wildflowers, grass seeds and plants native to Iowa and the Midwest.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1878 Old Mission Dr.<br />Harpers Ferry, IA 52146<br />Allamakee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.291.2143</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.ionxchange.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Geode State Park",
            "lat": "40.824011",
            "lon": "-91.378498",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Geode State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.824011,-91.378498\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">143.8mi.</span></div>\n\t\t</div>\n\n\t\t<p>Geode State Park joined the Iowa park system in 1937. Local groups raised the money to purchase 143 acres of land for the park, and the Civilian Conservation Corps to begin clearing trees, creating roads, and building structures. The CCC was a public work relief program that operated from 1933-1942 as part of the New Deal. It was designed to provide jobs for young men while implementing a natural resource conservation program in every state and territory. The CCC area of the park was added to the National Register of Historic Places in 1990.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3333 Racine Dr.<br />Danville, IA 52623<br />Henry County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.392.4601</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/Destinations/StateParksRecAreas/IowasStateParks/ParkDetails.aspx?ParkID=610124\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "science-centers.png",
            "title": "LaunchPAD Children&#039;s Museum",
            "lat": "42.497281",
            "lon": "-96.408231",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/woodbury-childrensmuseum-launchpadchildrensmuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/science-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">LaunchPAD Children&#039;s Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.497281,-96.408231\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>LaunchPAD Children’s Museum is Iowa’s newest play and discovery zone! Featuring unique, interactive, hands-on exhibits and programs, children and the entire family are sure to have fun while learning along the way.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t623 Pearl St.<br />Sioux City, IA 51101<br />Woodbury County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.launchpadmuseum.com/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Yellow River State Forest",
            "lat": "43.174023",
            "lon": "-91.242071",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Yellow River State Forest</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.174023,-91.242071\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">145.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Mixed Media artist Nathan Edwards will be working at Yellow River Forest during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t729 State Forest Rd.<br />Harpers Ferry, IA 52146<br />Allamakee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.586.2254</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Forests/Yellow-River-State-Forest\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Maquoketa Caves State Park",
            "lat": "42.117580",
            "lon": "-90.779429",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-nhr-maquoketacaves.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Maquoketa Caves State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.117580,-90.779429\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">147mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Maquoketa Caves State Park is a collection of caves that date back thousands of years. First discovered in the 1830s, the caves vary in size, depth, and geological composition. The park features six miles of hiking trails and 29 campsites to give visitors a look into the natural wonder and beauty of the state of Iowa. \r\n\r\nDigital Artist Brent Holland will be working at Maquoketa Caves State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t10970 98th St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.652.5833</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.exploreiowaparks.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "state-parks.png",
            "title": "Wildcat Den State Park",
            "lat": "41.466475",
            "lon": "-90.868659",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/state-parks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Wildcat Den State Park</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.466475,-90.868659\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">148.2mi.</span></div>\n\t\t</div>\n\n\t\t<p>Visual Artist Kristen Greteman will be working at Wildcat Den State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1884 Wildcat Rd.<br />Muscatine, IA 52761<br />Muscatine County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.263.4337</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/ParkDetails/parkid/610122\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Stone State Park and Dorothy Pecaut Nature Center",
            "lat": "42.542977",
            "lon": "-96.473680",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Stone State Park and Dorothy Pecaut Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.542977,-96.473680\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">149mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Dorothy Pecaut Nature Center, located in Stone State Park, is a unique outdoor educational facility. Visitors will find Loess Hills natural history exhibits, interactive habitats and live reptiles and fish. Visitors can hike trails, explore forests and climb ridges to image what Lewis and Clark may have seen.\r\n\r\nDigital Artist Carol Faber will be working at Stone State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4500 Sioux River Rd.<br />Sioux City, IA 51109<br />Woodbury County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 712.258.0838</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/parkdetails/parkid/610117\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Appleberry Orchard",
            "lat": "40.633906",
            "lon": "-91.436141",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Appleberry Orchard</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.633906,-91.436141\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">149.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>With the first apple tree at the Appleberry Orchard planted in 1852, today the orchard features twenty-two acres of apple orchards, berry fields, a petting farm, children&#039;s play area, and a farmer&#039;s market. The orchard produces fresh Blondee, Buckeye Gala, Empire, Zestar, and Honeycrisp apples and strawberries, raspberries, blackberries, and blueberries. The petting farm has a variety of animals, including miniature donkeys and ponies, peacocks, longhorn cattle, and rabbits. The farmer&#039;s market feature a variety of locally produced goods, including honey, jam, and salsa. In addition to all of this, the orchard also provides educational tours. The original Faeth Farmstead and Orchard on the property was a notable orchard operation by the successful Faeth pioneer family. A significant number of the historic buildings associated with the orchard operation survive with a high degree of historic integrity. The Faeth Farmstead and Orchard/Appleberry Orchard was added to the National Register of Historic Places in 2005.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2469 IA Hwy. 2<br />Donnellson, IA 52625<br />Lee County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.372.1307</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://appleberryorchard.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-heritage-areas.png",
            "title": "Hurstville Interpretive Center",
            "lat": "42.088134",
            "lon": "-90.681759",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/jackson-botany-hurstvilleinterpretivecenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-heritage-areas.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Hurstville Interpretive Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.088134,-90.681759\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">152mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Hurstville Interpretive Center allows you to explore the links between Iowa&#039;s prairies, wetlands, the rocks beneath your feet, and agriculture. A butterfly garden and a working beehive allow visitors to see pollinators at work. Exhibits help visitors understand how Iowa&#039;s early communities, like Hurstville, developed around the natural resources that were available.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t18670 63rd St.<br />Maquoketa, IA 52060<br />Jackson County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.652.3783</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://jacksonccb.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Bangert Gardens",
            "lat": "40.835678",
            "lon": "-91.143945",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bangert Gardens</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.835678,-91.143945\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">153.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bangert Gardens were built in 2004 by Richard and Karen Bangert. This 10 acre plot of land feature many different plant and garden types like a Japanese Style Garden, Cactus Garden, Vegetable and Herb Garden, 1.5 Acre Pond, and a 2 Hole Golf Course.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3500 Hillcrest Dr.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 319.752.9328</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://bangertgardens.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Miss Effies Country Flowers &amp; Garden",
            "lat": "41.703211",
            "lon": "-90.645437",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/history.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Miss Effies Country Flowers &amp; Garden</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.703211,-90.645437\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">155.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>This U-Pick flower farm encourages guests to relax and enjoy the beautiful Grand Wood landscapes in the shade of an 1892 Classic L Victorian Farmhouse. Chickens and ducks accompany you as you select and create a beautiful boquet from a variety of 90 different flowers.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t27387 130th Ave.<br />Donahue, IA 52746<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "science-centers.png",
            "title": "National Mississippi River Museum and Aquarium",
            "lat": "42.496003",
            "lon": "-90.660075",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-historymuseum-nationalmississippirivermuseum.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/science-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">National Mississippi River Museum and Aquarium</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.496003,-90.660075\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156mi.</span></div>\n\t\t</div>\n\n\t\t<p>The highly interactive museum and aquarium includes the Mississippi River Center and the National River Center. Experience dynamic state-of-the-art exhibits, a 3D/4D theater, animal programs, a National Landmark vessel, and more. The National Mississippi River Museum and Aquarium is a Smithsonian Institution Affiliate and is accredited by the American Association of Museums and the Association of Zoos and Aquariums. The William M. Black Dredge Steamboat was constructed in 1934 by Marietta Manufacturing Company of Point Pleasant, West Virginia. The vessel was listed on the National Register of Historic Places on April 12, 1982 and designated as a National Historic Landmark on April 27, 1992.</p>\t\t<p><em>A location in the collection, 99 County Tour - Iowa History Month</em></p><p><em>Discover historic sites in your neighborhood and around the state with this tour designed by the State Curator and celebrating Iowa History Month!</em></p>\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t350 E 3rd St.<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.226.3369</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.rivermuseum.com\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-historic-landmarks.png",
            "title": "Mines of Spain State Recreation Area and E.B. Lyons Interpretive and Nature Center",
            "lat": "42.462370",
            "lon": "-90.638634",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/dubuque-nhl-minesofspain.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-historic-landmarks.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mines of Spain State Recreation Area and E.B. Lyons Interpretive and Nature Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=42.462370,-90.638634\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">156.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mines of Spain Recreation Area and E. B. Lyons Interpretive and Nature Center are located on 1380 acres of beautiful wooded and prairie land just south of Dubuque, IA. The area has been designated as a National Historic Landmark and includes Julien Dubuque&#039;s Monument at a point just above where Catfish Creek meets the Mississippi. One of Iowa&#039;s &quot;Watchable Wildlife Areas,&quot; it features the E.B. Lyons Interpretive Center which serves as the Visitor Center and the Park Office. Come see the Horseshoe Bluff Interpretive Trail, the 15 acre wetland, creeks, forest, prairies, cropland, meadows and the Mississippi River from a bald eagle&#039;s view. Picnic with us, go for a hike or cross country ski on one of our many trails and maybe you will capture a glimpse of a song bird, bobcat, red-shouldered hawk, flying squirrel, white-tailed deer, wild turkey or various butterflies along the Mississippi River Bluffland.\r\n\r\nMetalsmith Joe Muench will be working at Mines of Spain State Park during 2019 and 2020, as part of the Iowa State Park&#039;s 100th Anniversary Celebration.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t8991 Bellevue Heights<br />Dubuque, IA 52001<br />Dubuque County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.556.0620</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"https://www.iowadnr.gov/Places-to-Go/State-Parks/Iowa-State-Parks/ParkDetails/parkid/9\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Crapo Park and Arboretum Historic District",
            "lat": "40.776676",
            "lon": "-91.102545",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/desmoines-nhr-crapoparkhistoricdistrict.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Crapo Park and Arboretum Historic District</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=40.776676,-91.102545\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">157.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The site of Crapo Park was discovered by Lt. Zebulon Pike during his 1805 expedition to explore the Mississippi River to its source. It was here that Pike raised the U.S. flag for the first time on what is now Iowa soil. Philip Crapo led a successful funding campaign in 1896 to create the park itself. It was among the earliest designed arboretums in the Upper Mississippi River Valley. The park has the first equestrian statue in Iowa and a coliseum large enough for 10,000 people. It was added to the National Register of Historic Places in 1976.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tS Main Dr.<br />Burlington, IA 52601<br />Des Moines County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "zoos-and-wildlife.png",
            "title": "Nahant Marsh Education Center",
            "lat": "41.490254",
            "lon": "-90.635025",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-botany-nahantmarsheducationcenter.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/zoos-and-wildlife.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Nahant Marsh Education Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.490254,-90.635025\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">159.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Nahant Marsh is home to more than 150 species of birds, more than 400 species of plants, and a wide variety of mammals, fish, reptiles, amphibians, and insects, including several rare and endangered species. The trails, dock, and bird blind at Nahant Marsh allow you to experience different habitats: including marsh, sand and mesic prairies, bottomland woods, and vernal ponds. Through partnerships with Eastern Iowa Community Colleges, St. Ambrose University and Western Illinois University the Center offers a wide variety of environmental education programming. The mission of Nahant Marsh Education Center is to preserve and enhance the ecological integrity of the Marsh and to foster wonder, appreciation, interaction, and stewardship of the natural world through education. Photograph taken by resident photographer, Julie Malake.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t4220 Wapello Ave.<br />Davenport, IA 52802<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.323.5196</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.nahantmarsh.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Putnam Museum &amp; Giant Screen Theater",
            "lat": "41.530947",
            "lon": "-90.601751",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-historymuseum-putnammuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Putnam Museum &amp; Giant Screen Theater</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.530947,-90.601751\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Putnam Museum features several permanet natural history exhibits, including exhibits on the ocean, mammals, and Egyptian history. The musuem also includes a Giant Screen movie theater, for an immersive experience in natural history.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t1717 W 12th St.<br />Davenport, IA 52804<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 800.435.3701</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.putnam.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "historic-sites.png",
            "title": "Credit Island and Natural Historic Preserve",
            "lat": "41.501442",
            "lon": "-90.608073",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-historicsite-creditislandandnaturalhistoricpreserve.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/historic-sites.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Credit Island and Natural Historic Preserve</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.501442,-90.608073\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">160.6mi.</span></div>\n\t\t</div>\n\n\t\t<p>Credit Island Park and Natural Historic Preserve is the largest of Davenport&#039;s parks and covers 450 acres. The site was named for the trading post that served Native American tribes and fur companies at the location. The park is also the site of the last battle for control of the Upper Mississippi River during the War of 1812. The battle occurred on September 4-5, 1814 and a historic marker commemorating the Battle of Credit Island was placed on the 200th anniversary by the City of Davenport. The city also commissioned a national battlefield study with financial support from the National Park Service.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2200 West River Dr.<br />2200 Credit Island Rd.<br />Davenport, IA 52802<br />Scott County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.cityofdavenportiowa.com/department/division.php?structureid=196\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "history-museums.png",
            "title": "Family Museum",
            "lat": "41.552506",
            "lon": "-90.502551",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-artmuseum-familymuseum.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/history-museums.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Family Museum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.552506,-90.502551\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">165.1mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Family Museum is an interactive children&#039;s museum emphasizing the arts and sciences for children age eight and younger. It includes Amazing Acres, a permanent exhibition devoted to teaching young learners about the importance of agriculture, food production, and weather&#039;s impact on growing regional crops.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t2900 Learning Campus Dr.<br />Bettendorf, IA 52722<br />Scott County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.344.4106</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.familymuseum.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "science-centers.png",
            "title": "Mississippi River Eco Tourism Center",
            "lat": "41.750832",
            "lon": "-90.326562",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/science-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Mississippi River Eco Tourism Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.750832,-90.326562\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">171.7mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Mississippi River Eco Tourism Center is a building that supports education on the river and the system of life it supports. Built in 2013, the center provides lessons on the history of the river, and its effect on the ecosystem. There is an 8000 gallon aquarium filled with fish unique to the Mississippi, as well as camping and canoe rentals, and even a naturalist cruise of the river aboard the Blue Heron.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t3942 291st St.<br />Camanche, IA 52730<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.259.1876</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://clintoncounty-ia.gov\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "national-register-of-historic-places.png",
            "title": "Cody Trail",
            "lat": "41.598596",
            "lon": "-90.342862",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/scott-nhr-codytrail-1.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/national-register-of-historic-places.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Cody Trail</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.598596,-90.342862\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">172.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>Named after Buffalo Bill Cody, a government scout and wild west performer who was born in LeClaire, Iowa, the trail begins in the historic Davenport community of Eldridge and makes its way to the town of Long Grove, featuring historic markers along the path. The trail then leads to the Alexander Brownlie house, which is listed on the National Register of Historic Places, passes by the Buffalo Bill Museum, and ends in LeClaire.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\tLeClaire to Eldridge<br />LeClaire, IA 52753<br />Scott County\t\t</p>\n\t\t\t\t\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Bickelhaupt Arboretum",
            "lat": "41.841270",
            "lon": "-90.219254",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Bickelhaupt Arboretum</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.841270,-90.219254\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">176.5mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Bickelhaupt Arboretum is a 14-acre outdoor museum dedicated to serving as a connection between people and plants through a better understanding of horticulture by developing and maintaining a well-documented collection of landscape plants adapted to this region for education and enjoyment. The arboretum began planting in the 1970&#039;s but didn&#039;t begin documenting the plants until 1999. These documentations are now in a book for sale in the visitors center of the Bickelhaupt Arboretum.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t340 S 14th St.<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.242.4771</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://bickelhaupt.org/\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "science-centers.png",
            "title": "Felix Adler Children&#039;s Discovery Center",
            "lat": "41.838592",
            "lon": "-90.192376",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"/images/default/science-nature.jpg\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/science-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Felix Adler Children&#039;s Discovery Center</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=41.838592,-90.192376\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">177.9mi.</span></div>\n\t\t</div>\n\n\t\t<p>The Felix Adler Children&#039;s Discovery Center was opened in 1993. The center is dedicated to providing a safe and positive environment for families to discover the world by exploring arts, culture, and science through interactive and educational exhibits. The center was named after world famous clown and Clinton native, Felix Adler.</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t332 8th Ave. S<br />Clinton, IA 52732<br />Clinton County\t\t</p>\n\t\t<p class=\"iw-contact\"><i class=\"fa fa-phone fa-fw\"></i> 563.243.3600</p>\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://adlerdiscoverycenter.org\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        },
        {
            "icon": "gardens-and-nature-centers.png",
            "title": "Gitchie Manitou State Preserve",
            "lat": "43.492901",
            "lon": "-96.586541",
            "win": "<div class=\"window-container scroll\">\n\t<div class=\"image-container\">\n\t\t<img src=\"https://www.iowacultureapp.com/images/lyon-historicsite-gitchiemanitoustatepreserve.JPG\" class=\"scale\" />\n\t</div>\n\t<div class=\"window-content\">\n\t\t<div class=\"window-title\">\n\t\t\t<div class=\"pin\"><figure><img src=\"/images/icons/markers/gardens-and-nature-centers.png\" alt=\"\" class=\"scale\" /></figure></div>\n\t\t\t<div class=\"rl-content\"><span class=\"title\">Gitchie Manitou State Preserve</span><span class=\"city\"><a href=\"https://maps.google.com/maps?q=43.492901,-96.586541\" target=\"_blank\">Get Directions</a></span>\n\t\t\t<span class=\"distance\">180.4mi.</span></div>\n\t\t</div>\n\n\t\t<p>Gitchie Manitou is a 91-acre preserve best known for a natural outcropping of Sioux Quartzite. It is located in the extreme northwest corner of Iowa in Lyon County, just southeast of the suburbs of Sioux Falls, South Dakota. In 1916, the State of Iowa purchased the first 47.5 acres for use as a quarry, but later transferred the area to the Board of Conservation. The area was initially classified as a state park, and later a “preserve.” It was formally dedicated as a geological, archaeological, historical, and biological state preserve in 1969. The preserve was named after a Sioux Indian name meaning “Great Spirit” or “Great Force of Nature.”</p>\t\t\t\t\t\t\t\t<p class=\"loc-address\">\n\t\t\t<strong>Address:</strong>\n\t\t\t481st Ave.<br />Larchwood, IA 57005<br />Lyon County\t\t</p>\n\t\t\t\t<p class=\"iw-contact\"><i class=\"fa fa-globe fa-fw\"></i><a href=\"http://www.iowadnr.gov/portals/idnr/uploads/preserves/preservesguide.pdf?amp;tabid=944\" target=\"_blank\">Website</a></p>\n\t\t</div>\n\t</div>"
        }
    ]

}
In [10]:
science_data = extract_info(science)
science_data = pd.DataFrame(science_data)
science_data[['city', 'county']] = science_data['address'].apply(lambda x: pd.Series(extract_city_county(x)))
science_data['marker'] = science_data['image'].apply(extract_marker)
science_data
Out[10]:
title latitude longitude image distance address phone website city county marker
0 Reiman Gardens 42.011448 -93.638846 /images/icons/markers/gardens-and-nature-cente... 1mi. 1407 University Blvd., Ames, IA 50011, Story C... 515.294.2710 http://www.reimangardens.com/ Ames Story gardens-and-nature-centers
1 Professor J. L., Sarah M. and Etta Budd House 42.029256 -93.613367 /images/icons/markers/gardens-and-nature-cente... 1.6mi. 804 N Kellogg Ave., Ames, IA 50010, Story County None None Ames Story gardens-and-nature-centers
2 Ledges State Park 41.993800 -93.874097 /images/icons/markers/state-parks.png 12.1mi. 1515 P Ave., Madrid, IA 50156, Boone County 515-432-1852 http://iowadnr.gov Madrid Boone state-parks
3 Iowa Arboretum 41.938171 -93.860032 /images/icons/markers/gardens-and-nature-cente... 12.7mi. 1875 Peach Ave., Madrid, IA 50156, Boone County 515.795.3216 http://iowaarboretum.org/ Madrid Boone gardens-and-nature-centers
4 Bell&#039;s Mill County Park 42.340222 -93.890694 /images/icons/markers/historic-sites.png 25.1mi. 3100 Bell&#039;s Mill Rd., Stratford, IA 50249... None http://www.mycountyparks.com/county/Hamilton/P... Stratford Hamilton historic-sites
... ... ... ... ... ... ... ... ... ... ... ...
112 Mississippi River Eco Tourism Center 41.750832 -90.326562 /images/icons/markers/science-centers.png 171.7mi. 3942 291st St., Camanche, IA 52730, Clinton Co... 563.259.1876 http://clintoncounty-ia.gov Camanche Clinton science-centers
113 Cody Trail 41.598596 -90.342862 /images/icons/markers/national-register-of-his... 172.5mi. LeClaire to Eldridge, LeClaire, IA 52753, Scot... None None LeClaire Scott national-register-of-historic-places
114 Bickelhaupt Arboretum 41.841270 -90.219254 /images/icons/markers/gardens-and-nature-cente... 176.5mi. 340 S 14th St., Clinton, IA 52732, Clinton County 563.242.4771 http://bickelhaupt.org/ Clinton Clinton gardens-and-nature-centers
115 Felix Adler Children&#039;s Discovery Center 41.838592 -90.192376 /images/icons/markers/science-centers.png 177.9mi. 332 8th Ave. S, Clinton, IA 52732, Clinton County 563.243.3600 http://adlerdiscoverycenter.org Clinton Clinton science-centers
116 Gitchie Manitou State Preserve 43.492901 -96.586541 /images/icons/markers/gardens-and-nature-cente... 180.4mi. 481st Ave., Larchwood, IA 57005, Lyon County None http://www.iowadnr.gov/portals/idnr/uploads/pr... Larchwood Lyon gardens-and-nature-centers

117 rows × 11 columns

In [ ]:
 
In [ ]:
 
In [ ]:
 

Cleaning extracted datasets¶

In [11]:
# merge all 3 datasets together

cult = pd.concat([arts_data, history_data, science_data])
cult
Out[11]:
title latitude longitude image distance address phone website city county marker
0 Christian Peterson Courtyard Sculptures and Da... 42.026731 -93.642860 /images/icons/markers/national-register-of-his... 0.1mi. Union Dr., Ames, IA 50010, Story County None None Ames Story national-register-of-historic-places
1 Escalieta I 42.025650 -93.644474 /images/icons/markers/public-art.png 0.1mi. Wallace Rd., Gerdin Business Building, Iowa St... 515.242.6195 http://www.publicartarchive.org/work/escalieta-i Ames Story public-art
2 History of Dairying 42.026875 -93.642983 /images/icons/markers/public-art.png 0.1mi. Food Sciences Building Courtyard, Iowa State U... 515.294.3342 None Ames Story public-art
3 Janus Agri Altar 42.028215 -93.642973 /images/icons/markers/public-art.png 0.1mi. 100 Osborn Dr., Agronomy Hall, Iowa State Univ... 515.242.6195 http://www.publicartarchive.org/work/janus-agr... Ames Story public-art
4 Fountain of the Four Seasons 42.024340 -93.645937 /images/icons/markers/public-art.png 0.2mi. Memorial Union, Iowa State University, Ames, I... 515.294.3342 None Ames Story public-art
... ... ... ... ... ... ... ... ... ... ... ...
112 Mississippi River Eco Tourism Center 41.750832 -90.326562 /images/icons/markers/science-centers.png 171.7mi. 3942 291st St., Camanche, IA 52730, Clinton Co... 563.259.1876 http://clintoncounty-ia.gov Camanche Clinton science-centers
113 Cody Trail 41.598596 -90.342862 /images/icons/markers/national-register-of-his... 172.5mi. LeClaire to Eldridge, LeClaire, IA 52753, Scot... None None LeClaire Scott national-register-of-historic-places
114 Bickelhaupt Arboretum 41.841270 -90.219254 /images/icons/markers/gardens-and-nature-cente... 176.5mi. 340 S 14th St., Clinton, IA 52732, Clinton County 563.242.4771 http://bickelhaupt.org/ Clinton Clinton gardens-and-nature-centers
115 Felix Adler Children&#039;s Discovery Center 41.838592 -90.192376 /images/icons/markers/science-centers.png 177.9mi. 332 8th Ave. S, Clinton, IA 52732, Clinton County 563.243.3600 http://adlerdiscoverycenter.org Clinton Clinton science-centers
116 Gitchie Manitou State Preserve 43.492901 -96.586541 /images/icons/markers/gardens-and-nature-cente... 180.4mi. 481st Ave., Larchwood, IA 57005, Lyon County None http://www.iowadnr.gov/portals/idnr/uploads/pr... Larchwood Lyon gardens-and-nature-centers

3996 rows × 11 columns

In [12]:
def clean_data(data):
  data = data.drop(columns=['image', 'distance', 'phone', 'website','marker'])
  data = data.rename({
      'latitude': 'Latitude',
      'longitude': 'Longitude',
      'title': 'Title',
      'city':'City',
      'county': 'County',
      'address': 'Address',
      }, axis=1)
  return data

cult = clean_data(cult)
cult
Out[12]:
Title Latitude Longitude Address City County
0 Christian Peterson Courtyard Sculptures and Da... 42.026731 -93.642860 Union Dr., Ames, IA 50010, Story County Ames Story
1 Escalieta I 42.025650 -93.644474 Wallace Rd., Gerdin Business Building, Iowa St... Ames Story
2 History of Dairying 42.026875 -93.642983 Food Sciences Building Courtyard, Iowa State U... Ames Story
3 Janus Agri Altar 42.028215 -93.642973 100 Osborn Dr., Agronomy Hall, Iowa State Univ... Ames Story
4 Fountain of the Four Seasons 42.024340 -93.645937 Memorial Union, Iowa State University, Ames, I... Ames Story
... ... ... ... ... ... ...
112 Mississippi River Eco Tourism Center 41.750832 -90.326562 3942 291st St., Camanche, IA 52730, Clinton Co... Camanche Clinton
113 Cody Trail 41.598596 -90.342862 LeClaire to Eldridge, LeClaire, IA 52753, Scot... LeClaire Scott
114 Bickelhaupt Arboretum 41.841270 -90.219254 340 S 14th St., Clinton, IA 52732, Clinton County Clinton Clinton
115 Felix Adler Children&#039;s Discovery Center 41.838592 -90.192376 332 8th Ave. S, Clinton, IA 52732, Clinton County Clinton Clinton
116 Gitchie Manitou State Preserve 43.492901 -96.586541 481st Ave., Larchwood, IA 57005, Lyon County Larchwood Lyon

3996 rows × 6 columns