var WINDOW_HTML = '<div style="width: 240px; padding-right: 10px"><p><img src="images/google_logo.jpg" width="240" height="23" /><br/>6319 Roosevelt Way NE<br/>Seattle, WA 98115 <br />Open 7 Days 10am - 7pm<br /><a href=http://maps.google.com/maps?hl=en&client=firefox-a&ie=UTF8&q=progressive+tech&near=Seattle,+WA+98115&f=d&daddr=6319+Roosevelt+Way+NE,+Seattle,+WA+98115&ll=47.674297,-122.317386&spn=0.003858,0.007961&z=17&om=1 target=_blank>Click here for driving directions.</a></p></div>';	

function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(47.674351, -122.317584), 13);
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
		map.addControl(new GOverviewMapControl());
        map.removeMapType(G_HYBRID_MAP);
		
		//window.setTimeout(function() {
        //map.panTo(new GLatLng(47.674351, -122.317584));
        //}, 3000);
		
		var marker = new GMarker(new GLatLng(47.674351, -122.317584));
		map.addOverlay(marker);
		marker.openInfoWindowHtml(WINDOW_HTML);
      }
    }
