/* Author: 

*/
$(function() {
	// http://www.smashinglabs.pl/gmap-documentation
	$("#map").gMap({ 
		markers: [{ 
			latitude: 33.7932599,
			longitude: -84.368849,
			html: "<strong>AADD.org</strong><br>1440 Dutch Valley Place<br>Suite 200<br>Atlanta, GA 30324-5371",
			popup: false }],
		// maptype: google.maps.MapTypeId.TERRAIN,
		zoom: 14 
	});
});


/* google.maps.event.addListener(map, 'zoom_changed', function() {}); */


// Use in JS console to follow-back
// everyone following you on Quora.
//
// http://www.quora.com/notifications
//
// Note: Scroll down on notifications page, and
// click "More" until you have reached the end,
// then paste this into Firebug/WebKit console.

$( 'a.follow_button' ).each( function() {
  var el = $( this );

  if ( !el.hasClass( 'unfollow_button' ) ) {
    el.click();
  }
} );

// If you want to un-follow everyone:
// $('a.unfollow_button').click();

















