// Wait for the document to load
$(document).ready(function() {
	
	// Load the map
	var map = new GMap2(document.getElementById('map'));
	
	// Center the map
	var center_pos = new GLatLng(51.137260, -2.996853);
	map.setCenter(center_pos, 15);
	
	// Set the marker icon
	var marker_icon = new GIcon(G_DEFAULT_ICON);
	
	marker_icon.iconSize = new GSize(80, 60);
	marker_icon.shadowSize = new GSize(80, 60);
	marker_icon.iconAnchor = new GPoint(19, 48);
	
	marker_icon.image = "/assets/images/contact/map-marker.png";
	marker_icon.shadow = "/assets/images/contact/map-marker-shadow.png";
	
	marker_options = { icon:marker_icon };
	
	// Set the marker
	var point = new GLatLng(51.137260, -2.996853);
	map.addOverlay(new GMarker(point, marker_options));
	
});

