﻿$(document).ready(function(){
	$("#directions").accordion({
		collapsible: true,
		active: false
	}); //end directions
	$('#map').jmap('init', {
		mapCenter:[32.61324311347037, -85.46882629394531],
		mapZoom: 13,
		mapShowjMapIcon: false
	}); //end jMap
	$('#map').jmap('addMarker', {pointLatLng:[32.61324311347037, -85.46882629394531]});
}); //end ready

