$(document).ready(function() { $(".coursePageGallery a").colorbox({ maxWidth:'95%', maxHeight:'95%' }); $(".courseMaps a").colorbox({ maxWidth:'95%', maxHeight:'95%' }); function initialize() { var latlng = new google.maps.LatLng(36.70497427737185,-2.793778178714279); var myOptions = { zoom: 10, center: latlng, streetViewControl: true, mapTypeId: google.maps.MapTypeId.TERRAIN }; var courseMap = new google.maps.Map(document.getElementById("map"), myOptions); var image = new google.maps.MarkerImage('/images/courseIcon.png', new google.maps.Size(41, 36), new google.maps.Point(0,0), new google.maps.Point(12, 36)); var marker = new google.maps.Marker({ icon: image, map: courseMap, position: latlng, title:"Golf Almerimar" }); } initialize(); });