$(document).ready(function() {
	$('#directions_link').toggle(
		function () {
			$('#directions').show();
			$('#location_map').animate({width: "50%"}, 'slow', 'linear', function() {
				map2.checkResize();
				map2.panTo(latlng);
			});
			$('#directions_link').html("Hide Directions &raquo;");
		},
		function () {
			$('#directions_details').empty();
			$('#directions').css({position: 'absolute'});
			$('#location_map').animate({width: "100%"}, 'slow', function() {
				map2.checkResize();
				map2.panTo(latlng);
			});
			$('#directions_link').html("&laquo; Show Directions");
		}
	);
});
