$(document).ready(function(){   
	initialize();
});

function initialize() {
    var myLatlng = new google.maps.LatLng(51.045458,-3.058875);
    var myOptions = {
      zoom: 11,
      center: myLatlng,
	  navigationControl: true,
	  mapTypeControl: false,
	  scaleControl: false,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }

    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

    var contentString = '<div id="content">'+
        '<p><b>Firstcall Photographic Limited</b>,<br/>Cherry Grove Rise, West Monkton,<br/> Taunton, Somerset, TA2 8LW.</p>'+
        '</div>';
        
    var infowindow = new google.maps.InfoWindow({
        content: contentString
    });

    var marker = new google.maps.Marker({
        position: myLatlng,
        map: map,
        title: 'Firstcall Photographic Limited'
    });
    google.maps.event.addListener(marker, 'click', function() {
      infowindow.open(map,marker);
    });
  }

