$(document).ready(function() { $(".coursePageGallery a").colorbox({ maxWidth:'95%', maxHeight:'95%' }); function initialize() { var latlng = new google.maps.LatLng(37.15696801913261,-1.8270617023468105); var myOptions = { zoom: 10, center: latlng, streetViewControl: true, mapTypeId: google.maps.MapTypeId.TERRAIN }; var hotelMap = new google.maps.Map(document.getElementById("map"), myOptions); var image = new google.maps.MarkerImage('/images/hotelIcon.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: hotelMap, position: latlng, title:"Hotel Marina Playa" }); } initialize(); });