function googleMap() {
var divID = 'google_map';
var latlng = new google.maps.LatLng(48.4160, -89.5084);
var myOptions = {
zoom: 10,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP,
mapTypeControl: false
}

if (document.getElementById(divID)) {

var map = new google.maps.Map(document.getElementById(divID), myOptions);

var op_coords = [
new google.maps.LatLng(48.4838, -89.6052), //top left 
new google.maps.LatLng(48.4547, -89.5811),
new google.maps.LatLng(48.4379, -89.5805),
new google.maps.LatLng(48.4240, -89.5973),	
new google.maps.LatLng(48.4169, -89.6292),
new google.maps.LatLng(48.40721, -89.63384),
new google.maps.LatLng(48.32578, -89.63384),
new google.maps.LatLng(48.32578, -89.52552),
new google.maps.LatLng(48.28958, -89.52552),
new google.maps.LatLng(48.28958, -89.38828),
new google.maps.LatLng(48.39906, -89.38828),
new google.maps.LatLng(48.3991, -89.4265),
new google.maps.LatLng(48.49681, -89.4269),
new google.maps.LatLng(48.53587, -89.5949)	
];

var oliverPaipoongeMap = new google.maps.Polygon({
paths: op_coords,
strokeColor: "#603813",
strokeOpacity: 0.8,
strokeWeight: 1,
fillColor: "#603813",
fillOpacity: 0.20
});

oliverPaipoongeMap.setMap(map);

}
}

$(document).ready(function() {
googleMap();
});
