$(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(37.548776663868196,-1.6277490140883); 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:"Lorca Golf" }); } initialize(); });