window.addEvent('load', function()
{
	var geocoder = new google.maps.Geocoder();
	geocoder.geocode({address: "501 32nd Street South, Birmingham, AL 32505"}, function (location, status)
	{
		if (status == google.maps.GeocoderStatus.OK && location.length)
		{
			if (status != google.maps.GeocoderStatus.ZERO_RESULTS)
			{
				var mapOptions = {
					zoom: 12,
					mapTypeControl: false,
					center: location[0].geometry.location,
					mapTypeId: google.maps.MapTypeId.ROADMAP
				};
				var map = new google.maps.Map(document.getElementById("map"), mapOptions);
				
				var infowindow = new google.maps.InfoWindow({
					content: '<div style="line-height: 20px; text-align: center;">'+
								'<strong>Tsitalia</strong><br />'+
								'501 32nd Street South<br />'+
								'Birmingham, AL 35223<br />'+
								'Phone: 205-324-0179'
				});
				
				var marker = new google.maps.Marker({
								position: location[0].geometry.location,
								map: map,
								title: 'Tsitalia'
				});
								
				google.maps.event.addListener(marker, 'click', function()
				{
					infowindow.open(map, marker);
				});
				
				infowindow.open(map, marker);				
			}
		}
	});
});