/* -------------------------------------------------------
	Google Map
------------------------------------------------------- */
$(document).ready(function(){

  var myLatlng = new google.maps.LatLng(37.230098,-80.416714);
  var myOptions = {
    zoom: 17,
    center: myLatlng,
	mapTypeControl: true,
    mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
	navigationControl: true,
    navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  var image = 'http://wearefourdesign.com/assets/images/site/4d_maps_marker.png';
  var markerLatLng = new google.maps.LatLng(37.230053,-80.416588);
  var map = new google.maps.Map(document.getElementById("google-map"), myOptions);
  var marker = new google.maps.Marker({
      position: markerLatLng, 
      map: map, 
      icon: image,
      title:"FourDesign | 106 Henderson Hall (#0103), Virginia Tech, Blacksburg VA 24060"
  });   

});