
    function initialize() {
      if (GBrowserIsCompatible()) {
        var map1 = new GMap2(document.getElementById("map_canvas1"));
        var locationPoint1 = new GLatLng(51.43290229439075,-0.26332855224609375);
        var locationMarker1 = new GMarker(locationPoint1);
        map1.setCenter(locationPoint1, 15);
        map1.setUIToDefault();
        map1.addOverlay(locationMarker1);
        
		//make a bubble
		var bubble1 = '<span style="font-family:arial;"><b>Community London</b><br/>Studio 1<br/>Robinwood Studios<br/>Robinwood Place<br/>London<br/>SW15 3RN<br /><a href="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=SW15+3RN&sll=51.43290229439075,-0.26332855224609375&sspn=60.50566,135.263672&ie=UTF8&hq=&hnear=Robinwood+Place,+SW15+3RN,+United+Kingdom&ll=51.43290229439075,-0.26332855224609375spn=0.011819,0.033023&z=16" target="_blank">Get directions to here.</a></span>';

		locationMarker1.openInfoWindowHtml(bubble1);
		var myIcon1 = new GIcon();
		myIcon1.image = 'http://dev.communityco.com/dev_community/images/davo_temp/markers/image.png';
		myIcon1.printImage = 'http://dev.communityco.com/dev_community/images/davo_temp/markers/printImage.gif';
		myIcon1.mozPrintImage = 'http://dev.communityco.com/dev_community/images/davo_temp/markers/mozPrintImage.gif';
		myIcon1.iconSize = new GSize(33,32);
		myIcon1.shadow = 'http://dev.communityco.com/dev_community/images/davo_temp/markers/shadow.png';
		myIcon1.transparent = 'http://dev.communityco.com/dev_community/images/davo_temp/markers/transparent.png';
		myIcon1.shadowSize = new GSize(49,32);
		myIcon1.printShadow = 'http://dev.communityco.com/dev_community/images/davo_temp/markers/printShadow.gif';
		myIcon1.iconAnchor = new GPoint(17,32);
		myIcon1.infoWindowAnchor = new GPoint(17,0);
		myIcon1.imageMap = [21,3,22,4,24,5,25,6,26,7,27,8,28,9,28,10,29,11,29,12,29,13,29,14,29,15,29,16,29,17,29,18,29,19,28,20,27,21,27,22,26,23,25,24,23,25,22,26,13,26,12,25,10,24,9,23,8,22,8,21,7,20,7,19,7,18,9,17,11,16,11,15,11,14,11,13,11,12,9,11,7,10,7,9,8,8,9,7,10,6,11,5,13,4,14,3];            

       var map2 = new GMap2(document.getElementById("map_canvas2"));
       var locationPoint2 = new GLatLng(52.373085, 4.88687);
       var locationMarker2 = new GMarker(locationPoint2);
       map2.setCenter(locationPoint2, 15);
       map2.setUIToDefault();
       map2.addOverlay(locationMarker2);       
       
		var myIcon2 = new GIcon();
		myIcon2.image = 'http://dev.communityco.com/dev_community/images/davo_temp/markers/image.png';
		myIcon2.printImage = 'http://dev.communityco.com/dev_community/images/davo_temp/markers/printImage.gif';
		myIcon2.mozPrintImage = 'http://dev.communityco.com/dev_community/images/davo_temp/markers/mozPrintImage.gif';
		myIcon2.iconSize = new GSize(33,32);
		myIcon2.shadow = 'http://dev.communityco.com/dev_community/images/davo_temp/markers/shadow.png';
		myIcon2.transparent = 'http://dev.communityco.com/dev_community/images/davo_temp/markers/transparent.png';
		myIcon2.shadowSize = new GSize(49,32);
		myIcon2.printShadow = 'http://dev.communityco.com/dev_community/images/davo_temp/markers/printShadow.gif';
		myIcon2.iconAnchor = new GPoint(17,32);
		myIcon2.infoWindowAnchor = new GPoint(17,0);
		myIcon2.imageMap = [21,3,22,4,24,5,25,6,26,7,27,8,28,9,28,10,29,11,29,12,29,13,29,14,29,15,29,16,29,17,29,18,29,19,28,20,27,21,27,22,26,23,25,24,23,25,22,26,13,26,12,25,10,24,9,23,8,22,8,21,7,20,7,19,7,18,9,17,11,16,11,15,11,14,11,13,11,12,9,11,7,10,7,9,8,8,9,7,10,6,11,5,13,4,14,3];
        
		//make a bubble 2
		var bubble2 = '<span style="font-family:arial;"><b>Community Amsterdam</b><br/>Herengracht 200E<br/>1016 BS<br/>Amsterdam<br/>Netherlands<br /><a href="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=TW9+1TJ&sll=37.0625,-95.677068&sspn=60.50566,135.263672&ie=UTF8&hq=&hnear=Richmond+TW9+1TJ,+United+Kingdom&ll=51.45878,-0.307553&spn=0.011819,0.033023&z=16" target="_blank">Get directions to here.</a></span>';
		locationMarker2.openInfoWindowHtml(bubble2);

      }
    }
    
