function initialize() {
	if (GBrowserIsCompatible()) {
		
		var map = new GMap2(document.getElementById("map"));
		map.setCenter(new GLatLng(38.88268163813457, -94.59775686264038), 14);
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
		
		var myIcon = new GIcon(G_DEFAULT_ICON);
		myIcon.image = "images/marker.png";
		myIcon.iconSize = new GSize(92,40);
		myIcon.shadow = "images/marker-shadow.png";
		myIcon.shadowSize = new GSize(110,40);
		myIcon.iconAnchor = new GPoint(17,40);
		myIcon.infoWindowAnchor = new GPoint(16,40);
		myIcon.printImage = "images/marker-print.gif";
		myIcon.mozPrintImage = "images/marker-mozprint.gif";
		myIcon.printShadow = "images/marker-printshadow.gif";
		myIcon.transparent = "images/marker-transparent.png";
		myIcon.imageMap = [ 17,40, 11,24, 0,12, 16,0, 30,4, 88,4, 88,19, 30,18, 24,24 ];
		
		var markerOptions = { icon:myIcon };
		var html = '<p style="margin-right: 10px; color: #000; font-family: verdana; font-size: 12px; line-height: 16px;">';
		    html += '<span style="font-weight: bold; ">Midwest Mechanical Contractors, Inc.</span><br />';
			html += '13800 Wyandotte Street<br />Kansas City, MO 64145<br />';
			html += '<span style="font-weight: bold; ">Phone:</span> (816) 941-5300<br />';
			html += '<span style="font-weight: bold; ">Fax:</span> (816) 941-5390<br />';
			html += '<a class="italic" style="font-weight: bold;" href="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=13800+Wyandotte+Street+Kansas+City,+MO+64145&sll=40.84198,-74.43041&sspn=0.003105,0.006974&ie=UTF8&t=h&z=17&iwloc=A" target="_blank">&raquo; Get Driving Directions</a></p>';
			
		var kc = new GLatLng(38.8772361346319,-94.59897994995117, 14);
				
		var marker = new GMarker(kc, markerOptions);
		GEvent.addListener(marker, "click", function () {
			marker.openInfoWindowHtml(html);
													  }); 
		map.addOverlay(marker);
	}
}