// JavaScript Document

function googleMap() {
    var latlng = new google.maps.LatLng(51.410760, -0.300123);
    var myOptions = {
      zoom: 16,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
	
	/* var image = '/templates/images/googleMapsIcon.png';
	  var myLatLng = new google.maps.LatLng(51.410754, -0.299850);
	  var beachMarker = new google.maps.Marker({
		  position: myLatLng,
		  map: map,
		  icon: image
	  }); */
	
	var contentString = '<div id="googleMapContent" style="width:300px; height:140px;">'+
		'<div id="siteNotice">'+
		'</div>'+
		'<div class="firstHeading"></div>'+
		'<div id="googleMapLeft" style="float:left; width:100px; padding-right:20px;"><img src="/templates/images/googlemaps/7dots-office-outside.jpg" alt="7dots Offices"/></div>'+
		'<div id="googleMapRight" float:left; width:180px;"><strong>7dots Limited</strong><br/>Kopshop,<br/>6 Old London Road,<br/>Kingston Upon Thames,<br/>Surrey.<br/>KT2 6QF<br/><br/>Tel: 020 8439 1515<br/>Email: hello@7dots.co.uk</div>'+
		'</div>';
	
	var infowindow = new google.maps.InfoWindow({
		content: contentString
	});
	
	var image = '/templates/images/googleMapsIcon.png';
	var marker = new google.maps.Marker({
    position: latlng,
    map: map,
	icon: image
	});

	
	google.maps.event.addListener(marker, 'click', function() {
	  infowindow.open(map,marker);
	});


  }