window.addEvent('domready', function(){
	// church location (30.29953752600275, -95.47078371047974)
	var map = new GoogleMap('map', 30.29953752600275, -95.47078371047974);
	GEvent.addListener(map.marker, "click", function() {
		map.showInfo(map.marker, '<h2>The Ark Church</h2>450 Humble Tank Rd<br/>Conroe, TX 77304<br/>(936) 756-1988<br/><a href="#">Get Directions</a>');
	});
	map.showInfo(map.marker, '<h2>The Ark Church</h2>450 Humble Tank Rd<br/>Conroe, TX 77304<br/>(936) 756-1988');
	
	
	// Get directions form
	$('get_directions').addEvent('submit', function(e){
		var e = new Event(e).stop();
		var start = $('from_location').get('value');
		var end = "450 Humble Tank Rd, Conroe, TX 77304";
		if(start && end){
			map.map.clearOverlays();
			map.loadDirections('directions', start, end);
		}
	});
	
});