
    var map;
    var directionsPanel;
    var directions;
    var map_south;
    var map_north;
    var map_east1;
    var directions_south;
    var directions_north;
    var directions_east1;

    function initialize() {
      map_south = new GMap2(document.getElementById("map_south"));
      map_south.setCenter(new GLatLng(42.351505,-71.094455), 15);
      directions_south = new GDirections(map_south, directionsPanel);
      directions_south.load("San Luis Obispo, CA to 181 N. Ocean Ave, Cayucos, CA 93430");
	  
	  map_north = new GMap2(document.getElementById("map_north"));
	  map_north.setCenter(new GLatLng(42.351505,-71.094455), 15);
	  directions_north = new GDirections(map_north, directionsPanel);
	  directions_north.load("Cambria, CA to 181 N. Ocean Ave, Cayucos, CA 93430");
	  
	  map_east1 = new GMap2(document.getElementById("map_east1"));
	  map_east1.setCenter(new GLatLng(42.351505,-71.094455), 15);
	  directions_east1 = new GDirections(map_east1, directionsPanel);
	  directions_east1.load("Spring St, Paso Robles, CA to 181 N. Ocean Ave, Cayucos, CA 93430");
    }