//<![CDATA[
	//adding window to each location
	var developmentviktoriawindow = '<table width="280" border="0" cellpadding="3" cellspacing="0" class="table_borders"><tr><td width="156" class="location_table"><img src="/images/developments/viktoria_park/exterior_shots/150_wide/image2.jpg" width="150" height="90" class="border_2px_White"></td><td width="108" class="location_table"><p class="body_text_white_13_bold">Viktoria Park<br />Residence</p></td></tr></table>';
	var reichstagwindow = '<table width="280" border="0" cellpadding="3" cellspacing="0" class="table_borders"><tr><td width="10%" class="location_table"><img src="/images/developments/viktoria_park/exterior_shots/150_wide/image8.jpg" width="150" height="90" class="border_2px_White"></td><td width="90%" class="location_table"><p class="body_text_white_13_bold">The Reichstag - <br />German Parliament Building</p></td></tr></table>';
    var westendwindow = '<table width="200" height="100" border="0" cellpadding="3" cellspacing="0" class="table_borders"><tr><td class="light_blue_back_5_padding"><p align="center" class="body_text_white_14_bold">Berlin - West End<br /></p></td></tr></table>';

	
	  if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		map.addControl(new GLargeMapControl());
		//centre of map location
        map.setCenter(new GLatLng(52.500490, 13.354423), 13, G_HYBRID_MAP);
		
	  //viktoria development location marker
      var developmentviktoria = new GMarker(new GLatLng(52.490490, 13.376423));
      map.addOverlay(developmentviktoria);
	  
	  //reichstag development location marker
      var reichstag = new GMarker(new GLatLng(52.518676, 13.376005));
      map.addOverlay(reichstag);
	  
	  //reichstag development location marker
      var westend = new GMarker(new GLatLng(52.507968,13.30719));
      map.addOverlay(westend);
	  
	  //default open window
	  developmentviktoria.openInfoWindowHtml(developmentviktoriawindow);
		
	  //adding click function to page for information windows
	  GEvent.addListener(developmentviktoria, "click", function() {
        developmentviktoria.openInfoWindowHtml(developmentviktoriawindow);
	  });
		GEvent.addListener(reichstag, "click", function() {
        reichstag.openInfoWindowHtml(reichstagwindow);
      });
		GEvent.addListener(westend, "click", function() {
        westend.openInfoWindowHtml(westendwindow);
      });
      }
    //]]>