<!--
    function initializemap() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
		if (location.pathname == '/content/directions/directions-to-quechee-from-boston.shtml') {
			map.setCenter(new GLatLng(43.008528, -71.7561285), 8);
		}
		else if (location.pathname == '/content/directions/directions-to-quechee-from-hartford-springfield.shtml') {
			map.setCenter(new GLatLng(42.711206, -72.5632805), 7);
		}
		else if (location.pathname == '/content/directions/directions-to-quechee-from-albany.shtml') {
			map.setCenter(new GLatLng(43.153682, -73.1041855), 8);
		}
		else if (location.pathname == '/content/directions/directions-to-quechee-from-new-york-city.shtml') {
			map.setCenter(new GLatLng(42.2047245, -73.2197135), 7);
		}
		else {			
	        map.setCenter(new GLatLng(43.65699, -72.35303), 11);
		}			
		var house = new GMarker(new GLatLng(43.65699, -72.45303));
		var BOS = new GMarker(new GLatLng(42.360066,-71.059227));
		var BDL = new GMarker(new GLatLng(41.765422,-72.673531));
		var ALB = new GMarker(new GLatLng(42.650374,-73.755341));
		var NYC = new GMarker(new GLatLng(40.752459,-73.986397));
		map.addOverlay(house);
		map.addOverlay(BOS);
		map.addOverlay(BDL);
		map.addOverlay(ALB);
		map.addOverlay(NYC);
		if (location.href == 'http://www.vthouse.com/content/directions/directions-to-quechee.shtml') {
			house.openInfoWindowHtml('<img src="http://www.vthouse.com/content/images/quechee_house/thumbs/quechee_house-1.png" align="left">Quechee Rental Property<p><div class="caption">Directions from:<br><a href="/content/directions/directions-to-quechee-from-boston.shtml">Boston</a>, <a href="/content/directions/directions-to-quechee-from-new-york-city.shtml">New York</a>, <a href="/content/directions/directions-to-quechee-from-hartford-springfield.shtml">Hartford</a>, <a href="/content/directions/directions-to-quechee-from-albany.shtml">Albany</a></div>');
		} else {
			GEvent.addListener(house, 'click', function() {  
			   house.openInfoWindowHtml('<img src="http://www.vthouse.com/content/images/quechee_house/thumbs/quechee_house-1.png" align="left">Quechee Rental Property<p><div class="caption">Directions from:<br><a href="/content/directions/directions-to-quechee-from-boston.shtml">Boston</a>, <a href="/content/directions/directions-to-quechee-from-new-york-city.shtml">New York</a>, <a href="/content/directions/directions-to-quechee-from-hartford-springfield.shtml">Hartford</a>, <a href="/content/directions/directions-to-quechee-from-albany.shtml">Albany</a></div>');  
			});		
		}
		GEvent.addListener(BOS, 'click', function() {  
		   BOS.openInfoWindowHtml('Boston, MA<br><div class="caption"><a href="/content/directions/directions-to-quechee-from-boston.shtml">Directions from Boston</a></div>');  
		});
		GEvent.addListener(BDL, 'click', function() {  
		   BDL.openInfoWindowHtml('Hartford, CT<br><div class="caption"><a href="/content/directions/directions-to-quechee-from-hartford-springfield.shtml">Directions from Hartford</a></div>');  
		});
		GEvent.addListener(ALB, 'click', function() {  
		   ALB.openInfoWindowHtml('Albany, NY<br><div class="caption"><a href="/content/directions/directions-to-quechee-from-albany.shtml">Directions from Albany</a></div>');  
		});
		GEvent.addListener(NYC, 'click', function() {  
		   NYC.openInfoWindowHtml('New York, NY<br><div class="caption"><a href="/content/directions/directions-to-quechee-from-new-york-city.shtml">Directions from New York City</a></div>');  
		});
		map.addControl(new GLargeMapControl());
      }
    }
-->
