var map;
google.load("maps", "3", {"other_params":"sensor=false"});

// Call this function when the page has been loaded
function initializeMap() {
    var storePosition = new google.maps.LatLng(42.0754800, -87.7083621);
    var mapOptions = {
        zoom: 11,
        center: storePosition,
        mapTypeId: google.maps.MapTypeId.ROADMAP
     }
    map = new google.maps.Map(document.getElementById("locationMap"), mapOptions);

    var marker = new google.maps.Marker({
        map: map,
        position: storePosition,
    });

    var contentString = '<div><div id="locationInfoText" style="font-family:verdana,sans-serif;font-size:x-small;"><ul style="margin-top:0;padding-left:0;"><li><strong>Wilmette Bicycle & Sport Shop, Inc.</strong></li><li>605 Green Bay Road</li><li>Willmette, IL 60091</li><li>(847) 251-1401</li><li><a href="http://maps.google.com/maps?hq=bike+shop&hnear=wilmette&gl=us&daddr=605+Green+Bay+Rd.,+Wilmette,+IL+60091&geocode=293224841720844401,42.075397,-87.708082&ct=directions-to">Get Directions</a></li></ul><strong>Store Hours:</strong><ul style="margin:0;padding-left:10px"><li><table><tr><td>M-W, F, S</td><td>8:00 am - 5:30 pm</td></tr><tr><td>Thursday</td><td>8:00 am - 8:30 pm</td></tr><tr><td>Sunday</td><td>11:00 am - 4:00 pm</td></tr></table></li></ul></div><div id="locationInfoPicture"><img src="/images/storefront-small.png"></img></div></div>';

    var infoWindow = new google.maps.InfoWindow({
        content: contentString
    });
    
    google.maps.event.addListener(marker, 'mouseover', function() {
        infoWindow.open(map, marker);
        });
}

google.setOnLoadCallback(initializeMap);

  
