//Google Maps
var map;
function mapLocation(lat, lng, title, container) {
	var myOptions = {
		zoom: 13,
		center: new google.maps.LatLng(lat, lng),
		disableDefaultUI: true,
		mapTypeId: google.maps.MapTypeId.TERRAIN
	}
	map = new google.maps.Map(document.getElementById(container), myOptions);
	
	var image = new google.maps.MarkerImage('/images/icon_pin.png',
		new google.maps.Size(74, 46),
		new google.maps.Point(0,0),
		new google.maps.Point(22,24)
	);
	
	var marker = new google.maps.Marker({
		map: map, 
		position: new google.maps.LatLng(lat, lng),
		icon: image,
		title: title
	});
}
