// JavaScript Document
$(document).ready(function() {
	
	var ngma_address ="300 Woodland Street, Holliston, MA";
	
	$('#ngma_map').jmap('init', {
			mapCenter:[42.20515, -71.420984],
			mapZoom:15,
			mapShowjMapIcon:false,
			mapEnableScaleControl:true
			});
	$('#ngma_map').jmap('addMarker', {
  			pointLatLng:[42.20515, -71.420984],
			pointHTML:'<h4>NGMA</h4><p>300 WoodlandSt., Holliston MA</p>'
		});
		
	/* submit directions form */
	$('#getDir').submit(function(){
    	$('#ngma_directions').empty(); /* clear out the directions output div */
		
    	$('#ngma_map').jmap("searchDirections", {
      			toAddress: ngma_address,
      			fromAddress: $('#from').val(),
      			directionsPanel:"ngma_directions" /* name of the output field */
    			});	 /* end jmap */
   		return false;
   	}); /* end of submit */
	
}); /* end ready */
