$(document).ready( function() {

	//LOAD MAP
	info = "<strong>Coast City Comics</strong><br>656 Congress St<br>Portland, ME 04101";
	map = new GMap2(document.getElementById("map"));
	map.setUIToDefault();
	map.setCenter(new GLatLng(43.653136,-70.265589),15);
	map.openInfoWindowHtml(new GLatLng(43.653136,-70.265589),info);
		
	//DIRECTIONS MAPPING
	var directionsPanel;
	var directions;
	$('#directions_form').submit( function() {
		from = $('#from').val();		
		map.closeInfoWindow();
		
		directionsPanel = document.getElementById("route");
		directions = new GDirections(map, directionsPanel);
		directions.load("from: " + from + " to: 656 Congress St, Portland, ME 04101");
		
		return false;		
	});
	
});