function wagt_map_2() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_2')) return false;
    var map = new GMap2(document.getElementById('wagt_map_2'));
	map.setCenter(new GLatLng(35.788863, -78.639636), 10);
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GLargeMapControl());
    map.addControl(new GMapTypeControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (pillow)';
    var markerColor = 'Pacifica';
    icon.image = 'http://media.mgnetwork.com/ncn/google_maps/halloween2007/pumpkin.png';
    icon.shadow = 'http://media.mgnetwork.com/ncn/google_maps/halloween2007/pumpkin_shadow.png';
    icon.iconSize = new GSize(33,31);
    icon.shadowSize = new GSize(33,31);
    icon.iconAnchor = new GPoint(9,23);
    icon.infoWindowAnchor = new GPoint(19,0);
    icon.printImage = 'http://media.mgnetwork.com/ncn/google_maps/halloween2007/pumpkin.png';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalpillow/pacifica_mozprint.png';
    icon.printShadow = 'http://media.mgnetwork.com/ncn/google_maps/halloween2007/pumpkin_shadow.png';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalpillow/pacifica_transparent.png';

    var address_0 = {
      street: '1620 Loop Road',
      city: 'Clayton',
      state: 'NC',
      zip: '27527',
      country: 'USA',
      infowindow: 'custom',
      infowindowhtml: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Clayton Fear Farm</strong><br>1620 Loop Road<br />Clayton, NC 27527 USA<br /><a href=http://www.nbc17.com/midatlantic/ncn/news/halloween.apx.-content-articles-NCN-2007-01-01-0039.html target=_parent>View video tour and get more info</a></span>',
      full: '1620 Loop Road, Clayton, NC, 27527, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_0.infowindowhtml);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(35.788863, -78.639636), 10);
        }
      }
    );

    var address_1 = {
      street: '3801 Rock Quarry Rd',
      city: 'Raleigh',
      state: 'NC',
      zip: '27610',
      country: 'USA',
      infowindow: 'custom',
      infowindowhtml: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Silent Forest at Walnut Creek Amphitheater</strong><br />3801 Rock Quarry Rd<br />Raleigh, NC 27610 USA<br /><a href="http://www.nbc17.com/midatlantic/ncn/news/halloween.apx.-content-articles-NCN-2007-01-01-0040.html" target=_parent>View video tour and get more info</a></span>',
      full: '3801 Rock Quarry Rd, Raleigh, NC, 27610, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_1.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_1.infowindowhtml);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(35.788863, -78.639636), 10);
        }
      }
    );

    var address_2 = {
      street: '3311 Capital Blvd',
      city: 'Raleigh',
      state: 'NC',
      zip: '27604',
      country: 'USA',
      infowindow: 'custom',
      infowindowhtml: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #00000;"><strong>Hall of Terror at Adventure Landing</strong><br />3311 Capital Blvd<br />Raleigh, NC 27604 USA<br /><a href="http://www.adventurelanding.com/raleigh/index.html" target="_blank">View their Web site</a></span>',
      full: '3311 Capital Blvd, Raleigh, NC, 27604, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_2.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_2.infowindowhtml);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(35.788863, -78.639636), 10);
        }
      }
    );

    var address_3 = {
      street: '100 Dry Avenue',
      city: 'Cary',
      state: 'NC',
      zip: '27511',
      country: 'USA',
      infowindow: 'custom',
      infowindowhtml: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Town of Cary&#39;s Haunted House</strong><br />100 Dry Avenue<br />Cary, NC 27511 USA</span>',
      full: '100 Dry Avenue, Cary, NC, 27511, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_3.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_3.infowindowhtml);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(35.788863, -78.639636), 10);
        }
      }
    );

    var address_4 = {
      street: '409 Blackwell St',
      city: 'Durham',
      state: 'NC',
      zip: '27701',
      country: 'USA',
      infowindow: 'custom',
      infowindowhtml: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Durham Jaycees&#39; Haunted House</strong><br />409 Blackwell St<br />Durham, NC 27701 USA<br /><a href="http://www.durhamjaycees.org/hauntedhouse.htm" target="_blank">View their Web site</a></span>',
      full: '409 Blackwell St, Durham, NC, 27701, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_4.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_4.infowindowhtml);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(35.788863, -78.639636), 10);
        }
      }
    );

    var address_5 = {
      street: '1000 Ryan Road',
      city: 'Cary',
      state: 'NC',
      zip: '27511',
      country: 'USA',
      infowindow: 'custom',
      infowindowhtml: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Frightmare of Cary</strong><br />1000 Ryan Road<br />Cary, NC 27511 USA<br /><a href="http://www.nbc17.com/midatlantic/ncn/news/halloween.apx.-content-articles-NCN-2007-10-22-0029.html" target=_parent>View video tour and get more info</a></span>',
      full: '1000 Ryan Road, Cary, NC, 27511, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_5.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_5.infowindowhtml);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(35.788863, -78.639636), 10);
        }
      }
    );

    var address_6 = {
      street: 'Jones Ferry Rd & Old Fayetteville Rd',
      city: 'Carrboro',
      state: 'NC',
      zip: '27511',
      country: 'USA',
      infowindow: 'custom',
      infowindowhtml: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Chapel Hill Halloween Park & Ride</strong><br />Jones Ferry Lot<br />Carrboro, NC  USA<br /><a href="http://www.nbc17.com/midatlantic/ncn/news.apx.-content-articles-NCN-2007-10-22-0026.html" target=_parent>More information on Chapel Hill&#39;s Halloween Celebration</a></span>',
      full: 'Jones Ferry Rd & Old Fayetteville Rd, Carrboro, NC, 27511, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_6.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_6.infowindowhtml);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(35.788863, -78.639636), 10);
        }
      }
    );

    var address_7 = {
      street: '800 Market St.',
      city: 'Chapel Hill',
      state: 'NC',
      zip: '27516',
      country: 'USA',
      infowindow: 'custom',
      infowindowhtml: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Chapel Hill Halloween Park & Ride</strong><br />Southern Village Lot<br />Chapel Hill, NC  USA<br /><a href="http://www.nbc17.com/midatlantic/ncn/news.apx.-content-articles-NCN-2007-10-22-0026.html" target=_parent>More information on Chapel Hill&#39;s Halloween Celebration</a></span>',
      full: '800 Market St., Chapel Hill, NC, 27516, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_7.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_7.infowindowhtml);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(35.788863, -78.639636), 10);
        }
      }
    );

    var address_8 = {
      street: '100 Friday Center Dr.',
      city: 'Chapel Hill',
      state: 'NC',
      zip: '27599',
      country: 'USA',
      infowindow: 'custom',
      infowindowhtml: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Chapel Hill Halloween Park & Ride</strong><br />Friday Center Lot<br />Chapel Hill, NC  USA<br /><a href="http://www.nbc17.com/midatlantic/ncn/news.apx.-content-articles-NCN-2007-10-22-0026.html" target=_parent>More information on Chapel Hill&#39;s Halloween Celebration</a></span>',
      full: '100 Friday Center Dr., Chapel Hill, NC, 27599, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_8.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_8.infowindowhtml);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(35.788863, -78.639636), 10);
        }
      }
    );

    var address_9 = {
      street: '201 S. Estes Dr.',
      city: 'Chapel Hill',
      state: 'NC',
      zip: '27514',
      country: 'USA',
      infowindow: 'custom',
      infowindowhtml: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Chapel Hill Halloween Park & Ride</strong><br />University Mall Lot<br />Chapel Hill, NC  USA<br /><a href="http://www.nbc17.com/midatlantic/ncn/news.apx.-content-articles-NCN-2007-10-22-0026.html" target=_parent>More information on Chapel Hill&#39;s Halloween Celebration</a></span>',
      full: '201 S. Estes Dr., Chapel Hill, NC, 27514, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_9.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_9.infowindowhtml);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(35.788863, -78.639636), 10);
        }
      }
    );

    var address_10 = {
      street: '307 E. Broad St.',
      city: 'Fuquay-Varina',
      state: 'NC',
      zip: '27526',
      country: 'USA',
      infowindow: 'custom',
      infowindowhtml: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Asylum 307 Haunted House</strong><br />307 E. Broad St.<br />Fuquay-Varina, NC  USA<br /><a href="http://www.myspace.com/fvhauntedhouse" target="_blank">View their Web site</a></span>',
      full: '307 E. Broad St., Fuquay-Varina, NC, 27526, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_10.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_10.infowindowhtml);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(35.788863, -78.639636), 10);
        }
      }
    );

    var address_11 = {
      street: '2426 Hillsborough St',
      city: 'Raleigh',
      state: 'NC',
      zip: '27607',
      country: 'USA',
      infowindow: 'custom',
      infowindowhtml: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong> Haunted Hillsborough Hike</strong><br />Hillsborough Street between East Village and Sadlack&#39;s<br />Raleigh, NC  USA<br /><a href="http://www.facebook.com/event.php?eid=5394499129&ref=nf" target="_blank">View the Facebook event listing (registration required)</a></span>',
      full: '2426 Hillsborough St, Raleigh, NC, 27607, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_11.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_11.infowindowhtml);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(35.788863, -78.639636), 10);
        }
      }
    );

    var address_12 = {
      street: '200 E Martin',
      city: 'Raleigh',
      state: 'NC',
      zip: '27601',
      country: 'USA',
      infowindow: 'custom',
      infowindowhtml: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Raleigh Zombie Walk (Oct. 27)</strong><br />Dress as a zombie and search for brains around Moore Square<br />Raleigh, NC,  USA<br /><a href="http://www.myspace.com/nczombiewalk " target="_blank">View their Web site</a></span>',
      full: '200 E Martin, Raleigh, NC, 27601, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_12.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_12.infowindowhtml);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(35.788863, -78.639636), 10);
        }
      }
    );

 var address_13 = {
      street: '1710 Page Rd. Ext',
      city: 'Durham',
      state: 'NC',
      zip: '27703',
      country: 'USA',
      infowindow: 'custom',
      infowindowhtml: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>APS Howl-O-Ween</strong><br />Camp Bow-Wow hosts a party for people and their pets.<br />Durham, NC,  USA<br /><a href="http://www.apsofdurham.org/events/Howl-o-Weenflier.pdf " target="_blank">View the event flyer (.pdf)</a></span>',
      full: '1710 Page Rd. Ext., Durham , NC, 27703, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_13.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_13.infowindowhtml);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(35.788863, -78.639636), 10);
        }
      }
    );
	
    var address_14 = {
      street: '111 Seaboard Ave',
      city: 'Raleigh',
      state: 'NC',
      zip: '27604',
      country: 'USA',
      infowindow: 'custom',
      infowindowhtml: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>The Manor at Possum Creek</strong><br />111 Seaboard Ave<br />Raleigh, NC 27604 USA</span>',
      full: '111 Seaboard Ave, Raleigh, NC, 27604, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_14.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_14.infowindowhtml);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(35.788863, -78.639636), 10);
        }
      }
    );

  }
}