function initialize() {
	if (GBrowserIsCompatible()) {
		
		var map = new GMap2(document.getElementById("map"));
		map.setCenter(new GLatLng(41.225037454042166, -95.97984552383423), 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 += '<span style="font-weight: bold; ">of Nebraska</span><br />';
			html += '4717 F Street<br />Omaha, NE 68117<br />';
			html += '<span style="font-weight: bold; ">Phone:</span> (402) 861-0681<br />';
			html += '<span style="font-weight: bold; ">Fax:</span> (402) 861-0682<br />';
			html += '<a class="italic" style="font-weight: bold;" href="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=4717+F+Street+Omaha,+NE+68117&sll=41.219034,-95.984674&sspn=0.012347,0.027895&ie=UTF8&t=h&z=16" target="_blank">&raquo; Get Driving Directions</a></p>';
			
		var nebraska = new GLatLng(41.21938456191388, -95.98464667797089, 14);
				
		var marker = new GMarker(nebraska, markerOptions);
		GEvent.addListener(marker, "click", function () {
			marker.openInfoWindowHtml(html);
													  }); 
		map.addOverlay(marker);
	}
}