$(function() {
  var whereSection = $("section.where"),
      icbm = $("head meta[name='ICBM']").attr("content").split(", "),
      officeLatLng = new google.maps.LatLng(icbm[0], icbm[1]),
      mapDiv = $("<div class='map'/>").appendTo(whereSection);

  var map = new google.maps.Map(mapDiv.get(0), {
    disableDefaultUI: true,
    disableDoubleClickZoom: true,
    draggable: false,
    scrollwheel: false,
    zoom: 16,
    center: new google.maps.LatLng(officeLatLng.lat() + 0.0002, officeLatLng.lng()),
    mapTypeId: google.maps.MapTypeId.ROADMAP
  });
  
  var marker = new google.maps.Marker({
    position: officeLatLng,
    map: map,
    title: "ARHQ",
    icon: "map-marker.png"
  });
  
  google.maps.event.addListener(map, 'click', openMaps);
  google.maps.event.addListener(marker, 'click', openMaps);
  
  function openMaps() {
    window.location = "http://maps.google.com.au/maps?q=" +
      encodeURI(whereSection.find("p").text() + " (Agency Rainford)") +
      "&sll=" + officeLatLng.lat() + "," + officeLatLng.lng();
  }
});
