//<![CDATA[    
	function initialize() {
	//map position
    var myLatlng = new google.maps.LatLng(52.62187, -3.048751);
	//map options
    var myOptions = {
     disableDefaultUI: true,
	  navigationControl: true,	  
	  navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
	  mapTypeControl: false,
	  scaleControl: false,
      zoom: 9,
      center: myLatlng,
      //mapTypeId: google.maps.MapTypeId.SATELLITE
	  mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    var map = new google.maps.Map(document.getElementById("map"), myOptions);
    
	//info window
	/*var infowindow = new google.maps.InfoWindow(
    { content: "<span style='font-family:arial; font-size:12px;'><b>Omega, the National Association for End of Life Care</b>,<br />London House,<br />Town Walls,<br />Shrewsbury,<br />SY1 1TX</span>"
      //size: new google.maps.Size(200,200)
    });*/
	
	//marker	
    var marker = new google.maps.Marker({
        position: myLatlng, 
        map: map        	
    });   
	//marker click event
	/*google.maps.event.addListener(marker, 'click', function() {
    	infowindow.open(map,marker);
    });
	infowindow.open(map,marker);*/
  }
//]]>