window.addEvent('domready', function() {
  foursquare.init();
});

var foursquare = new function Foursquare() {
  this.map_holder_id = "foursquare-map";
  this.map_canvas_id = "foursquare-map-canvas";

  this.map =  null;
  this.venue_ids = [];
  this.venue_meta = [];
  this.info_windows = [];
  this.markers = [];

  this.init = function() {
    var icon = new Element('img').setProperties({src:'/images/google-maps-marker-cyan.png',width:'20px'}).setStyles({marginLeft:'0px'});
    var label = new Element('span').set('text','Show Map');
    var link = new Element('a').adopt(label).setStyles({float:'right',width:'8em',textAlign:'right'}).setProperties({id: 'toggle-map-link',href:'#map'}).grab(icon).addEvent('click', function(e) {
      var el = $('toggle-map-link');
      if(link.get('text') == 'Show Map') {
        foursquare.showMap();
        el.getElement('span').set('text', 'Hide Map')
      } else {
        foursquare.hideMap();
        el.getElement('span').set('text', 'Show Map')
      }
    });
    var header = $('staff-tips-header');
    $('staff-tips-header').appendText(' ');
    $('staff-tips-header').adopt(link);

    $('staff-tips-show-all').addEvent('click', function(e) {
      var ev = new Event(e);
      ev.stop();
      
      $('staff-tips-show-all').getParent('li').dispose();

      $$('li.hidden-row').setStyles({opacity:0,display:'block'}).fade('in');
    });
  },

  this.showMap = function() {
    $(this.map_holder_id).setStyles({height: '0px', display:'block'});
    $(this.map_holder_id).get('tween').addEvent('complete', function() {
      foursquare.initMap();
    });
    $(this.map_holder_id).tween('height', '400px');
    
  };
  this.hideMap = function() {
    $(this.map_holder_id).tween('height', '0px');
  };

  this.closeMapWindows = function() {
    for(var i=0;i<this.venue_ids.length;i++) {
      var venue_id = this.venue_ids[i];
      if(this.info_windows[venue_id]) {
        this.info_windows[venue_id].close();
      }
    }
  };
  
  this.showMapWindow = function(venue_id) {
    this.closeMapWindows(); 
    this.info_windows[venue_id].open(this.map, this.markers[venue_id]);
  };

  this.createMapVenueLink = function(venue_id) {
    var business = this.venue_meta[venue_id];
    var link = new Element('a').setProperty('href','javascript:void(0);').set('text',business.name).addEvent('click', function(e) {
      foursquare.showMapWindow(venue_id);
    }).adopt(new Element('span').set('text', '(' + business.tips_count + ' tip' + (business.tips_count!=1?'s':'') + ')'));
    return link;
  }

  this.initMap = function() {

    if(this.map) return;

    // var latlng = new google.maps.LatLng(40.671638993500, -73.963812021800);
    // Roughly Washington Commons:
    var latlng = new google.maps.LatLng(40.675600000000,-73.965600000000);
    var myOptions = {
      zoom: 15,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    this.map = new google.maps.Map($(this.map_canvas_id), myOptions);

    var museum_icon = new google.maps.Marker({
      position: new google.maps.LatLng(40.671638993500, -73.963812021800),
      map: this.map,
      icon: new google.maps.MarkerImage('/images/google-maps-bm-icon-black.png', null, null, new google.maps.Point(12,18))
    });

    
    
    this.venue_ids.push(69584);
    this.markers[69584] = new google.maps.Marker({position: new google.maps.LatLng(40.678713000000, -73.968799000000), map: this.map, title: "Zaytoon\'s",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[69584] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/69584\" target=\"_blank\">Zaytoon\'s</a></h3><p><b>Caroline (Design)</b>: \"Reasonably priced, quite tasty with plenty of veggie options.  Their lentil soup can’t be beat and their pitas are always super fresh. It\'s BYOB. Nice decor, too!\" (<a href=\"http://www.foursquare.com/item/117201\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Lidy (Development)</b>: \"Hummus is generously doled out &amp; comes with a hot puffed-up pita, straight from the oven. Turkish salad is like salsa on steroids. Lovely garden &amp; family friendly.\" (<a href=\"http://www.foursquare.com/item/117251\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[69584], 'click', function() { foursquare.showMapWindow(69584); })
    this.venue_meta[69584] = {"name":"Zaytoon's","tips_count":2};
    this.venue_ids.push(42836);
    this.markers[42836] = new google.maps.Marker({position: new google.maps.LatLng(40.674999000000, -73.967049000000), map: this.map, title: "Blue Marble",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[42836] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/42836\" target=\"_blank\">Blue Marble</a></h3><p><b>Lidy (Development)</b>: \"I\'ve only gotten the coffee ice cream which is a sweet delicious lunch alternative (yes, you can have ice cream for lunch).  They also have a kids corner...\" (<a href=\"http://www.foursquare.com/item/117210\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Elaine (Collections)</b>: \"farm made ice cream, delicious flavors like raspberry, and chocolate chocolate chip!\" (<a href=\"http://www.foursquare.com/item/117214\" target=\"_blank\">December 15th, 2009</a>)</p><p><b>Jillian (Editorial)</b>: \"The ice cream is a bit pricey but absolutely worth it. Like heaven in a cup.\" (<a href=\"http://www.foursquare.com/item/117245\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Katie (Curatorial)</b>: \"Sea salt brownies and fresh sorbets are amazing. Fresh muffins and baked goods from Blue Sky Bakery (rasberry-zuchinni-dark chocolate muffins--yum!)\" (<a href=\"http://www.foursquare.com/item/117279\" target=\"_blank\">December 15th, 2009</a>)</p><p><b>Eleanor (Education)</b>: \"My favorite thing to do is to combine all the shop\'s attributes and get a scoop of vanilla ice cream in ice coffee.\" (<a href=\"http://www.foursquare.com/item/117304\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[42836], 'click', function() { foursquare.showMapWindow(42836); })
    this.venue_meta[42836] = {"name":"Blue Marble","tips_count":5};
    this.venue_ids.push(49514);
    this.markers[49514] = new google.maps.Marker({position: new google.maps.LatLng(40.673900000000, -73.960400000000), map: this.map, title: "Glass Shop",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[49514] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/49514\" target=\"_blank\">Glass Shop</a></h3><p><b>Lidy (Development)</b>: \"Good coffee, fresh squeezed juice and sardine sandwiches on fresh, tasty bread.\" (<a href=\"http://www.foursquare.com/item/117213\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Tessa (Exhibitions)</b>: \"Delicious, strong coffee, espresso, cappuccinos and lattes.  They use beans from La Colombe, renowned Philadelphia roaster.\" (<a href=\"http://www.foursquare.com/item/117216\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[49514], 'click', function() { foursquare.showMapWindow(49514); })
    this.venue_meta[49514] = {"name":"Glass Shop","tips_count":2};
    this.venue_ids.push(184005);
    this.markers[184005] = new google.maps.Marker({position: new google.maps.LatLng(40.679592900000, -73.968509000000), map: this.map, title: "The Vanderbilt",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[184005] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/184005\" target=\"_blank\">The Vanderbilt</a></h3><p><b>Katie (Registrar\'s Office)</b>: \"Very smart décor and friendly staff. Delicious cocktails and great selection of beer. Well priced food for a special night out in Prospect Heights.\" (<a href=\"http://www.foursquare.com/item/117218\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[184005], 'click', function() { foursquare.showMapWindow(184005); })
    this.venue_meta[184005] = {"name":"The Vanderbilt","tips_count":1};
    this.venue_ids.push(41548);
    this.markers[41548] = new google.maps.Marker({position: new google.maps.LatLng(40.679100000000, -73.971700000000), map: this.map, title: "James",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[41548] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/41548\" target=\"_blank\">James</a></h3><p><b>Caroline (Design)</b>: \"The kind of place where someone might propose marriage or where you may meet the in-laws. Nice if you have time, $$, a hot date..\" (<a href=\"http://www.foursquare.com/item/117220\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[41548], 'click', function() { foursquare.showMapWindow(41548); })
    this.venue_meta[41548] = {"name":"James","tips_count":1};
    this.venue_ids.push(39954);
    this.markers[39954] = new google.maps.Marker({position: new google.maps.LatLng(40.672500000000, -73.957800000000), map: this.map, title: "Franklin Park",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[39954] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/39954\" target=\"_blank\">Franklin Park</a></h3><p><b>Jillian (Editorial)</b>: \"This place has all the elements that make a bar great: large patio, well-sized dance floor, and weekly trivia.\" (<a href=\"http://www.foursquare.com/item/117221\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Will (Membership)</b>: \"This beer garden is perfect year-round. Franklin Park\'s staff are very friendly and knowledgeable about the rotating selection of mostly-local brews.\" (<a href=\"http://www.foursquare.com/item/117243\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[39954], 'click', function() { foursquare.showMapWindow(39954); })
    this.venue_meta[39954] = {"name":"Franklin Park","tips_count":2};
    this.venue_ids.push(136563);
    this.markers[136563] = new google.maps.Marker({position: new google.maps.LatLng(40.672924000000, -73.960475000000), map: this.map, title: "Abigail Cafe",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[136563] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/136563\" target=\"_blank\">Abigail Cafe</a></h3><p><b>Will (Membership)</b>: \"Though billed as a wine bar, they serve lunch, dinner, and weekend brunch. Delicious food and the bottle selection for wine is both extensive and reasonably priced.\" (<a href=\"http://www.foursquare.com/item/117228\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Katie (Curatorial)</b>: \"Little pricey for the quality, but if you want a slightly-nicer sit-down place, it works. They have a theme for every night, from salsa dancing to blindfolded dinners.\" (<a href=\"http://www.foursquare.com/item/117264\" target=\"_blank\">December 15th, 2009</a>)</p><p><b>Matthew (Design)</b>: \"Delicious sandwiches and coffee.  Call ahead.\" (<a href=\"http://www.foursquare.com/item/117383\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Kathy (Curatorial)</b>: \"Jazz brunch; keep a look out for their dark dining project it is so much fun.\" (<a href=\"http://www.foursquare.com/item/117558\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[136563], 'click', function() { foursquare.showMapWindow(136563); })
    this.venue_meta[136563] = {"name":"Abigail Cafe","tips_count":4};
    this.venue_ids.push(46949);
    this.markers[46949] = new google.maps.Marker({position: new google.maps.LatLng(40.675100000000, -73.960000000000), map: this.map, title: "Chavella\'s",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[46949] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/46949\" target=\"_blank\">Chavella\'s</a></h3><p><b>Beth (Library)</b>: \"Fresh, delicious food and very friendly service. Cactus taco, fish taco, and mushroom quesadilla are superb.\" (<a href=\"http://www.foursquare.com/item/117232\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Lidy (Development)</b>: \"I\'ve gotten the chicken torta again and again.  A crispy warm chicken cutlet, cool avocado and lettuce and a nicely toasted roll...and it\'s enormous!\" (<a href=\"http://www.foursquare.com/item/117281\" target=\"_blank\">December 15th, 2009</a>)</p><p><b>Shelley, (Technology)</b>: \"Love this place.  Great atmosphere for a sit down lunch or dinner.  Lots of fantastic vegetarian options.  Faves are the Tlacoyos con Nopales and Chiles Rellenos!\" (<a href=\"http://www.foursquare.com/item/117176\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[46949], 'click', function() { foursquare.showMapWindow(46949); })
    this.venue_meta[46949] = {"name":"Chavella's","tips_count":3};
    this.venue_ids.push(64684);
    this.markers[64684] = new google.maps.Marker({position: new google.maps.LatLng(40.672100000000, -73.962600000000), map: this.map, title: "The Islands",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[64684] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/64684\" target=\"_blank\">The Islands</a></h3><p><b>Tessa (Exhibitions)</b>: \"Jerk chicken, rice and peas. Delicious. Great for takeout.\" (<a href=\"http://www.foursquare.com/item/117233\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Danny (Exhibitions)</b>: \"A hole-in-the-wall kitchen covering your Caribbean needs.  I like to get the spicy jerk chicken and head over to the nearby park to enjoy.\" (<a href=\"http://www.foursquare.com/item/117198\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[64684], 'click', function() { foursquare.showMapWindow(64684); })
    this.venue_meta[64684] = {"name":"The Islands","tips_count":2};
    this.venue_ids.push(86243);
    this.markers[86243] = new google.maps.Marker({position: new google.maps.LatLng(40.672900000000, -73.962800000000), map: this.map, title: "Teddy\'s Greek Resturant",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[86243] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/86243\" target=\"_blank\">Teddy\'s Greek Resturant</a></h3><p><b>John (Development)</b>: \"Good Greek and diner food - and the garden out back is a real find and great in the warm weather.\" (<a href=\"http://www.foursquare.com/item/117234\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Lisa (Conservation)</b>: \"Yum - falafel.\" (<a href=\"http://www.foursquare.com/item/117172\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[86243], 'click', function() { foursquare.showMapWindow(86243); })
    this.venue_meta[86243] = {"name":"Teddy's Greek Resturant","tips_count":2};
    this.venue_ids.push(20076);
    this.markers[20076] = new google.maps.Marker({position: new google.maps.LatLng(40.673600000000, -73.967200000000), map: this.map, title: "Bar Sepia",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[20076] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/20076\" target=\"_blank\">Bar Sepia</a></h3><p><b>Elaine (Collections)</b>: \"...cozy and friendly....try the mulled cider with a nice whiskey shot.\" (<a href=\"http://www.foursquare.com/item/117237\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Sarah (Curatorial)</b>: \"Feels like your well-stocked bar-home, away from home. Always great, ever changing art on the walls. Beautiful backyard and a very awesomely decorated ladies restroom.\" (<a href=\"http://www.foursquare.com/item/117185\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[20076], 'click', function() { foursquare.showMapWindow(20076); })
    this.venue_meta[20076] = {"name":"Bar Sepia","tips_count":2};
    this.venue_ids.push(77919);
    this.markers[77919] = new google.maps.Marker({position: new google.maps.LatLng(40.674537200000, -73.963162900000), map: this.map, title: "Tom\'s Restaurant",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[77919] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/77919\" target=\"_blank\">Tom\'s Restaurant</a></h3><p><b>Katie (Curatorial)</b>: \"Their burgers are the best true diner burgers in the area...and they have every type of pancake or pancake topping under the sun.\" (<a href=\"http://www.foursquare.com/item/117238\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Stephanie (Education)</b>: \"Tom\'s is a reminder that brunch is a good idea at any time of day. Old-fashioned diner style meets new-fangled approaches to the ultimate brunch food: pancakes.\" (<a href=\"http://www.foursquare.com/item/117627\" target=\"_blank\">December 15th, 2009</a>)</p><p><b>Deb (Digital Lab)</b>: \"Breakfast at lunchtime and classic diner food amid year-round holiday decorations.\" (<a href=\"http://www.foursquare.com/item/125920\" target=\"_blank\">December 19th, 2009</a>)</p><p class=\"alt-row\"><b>Lisa (Conservation)</b>: \"The place to go to get your fix for grits!\" (<a href=\"http://www.foursquare.com/item/117180\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[77919], 'click', function() { foursquare.showMapWindow(77919); })
    this.venue_meta[77919] = {"name":"Tom's Restaurant","tips_count":4};
    this.venue_ids.push(48482);
    this.markers[48482] = new google.maps.Marker({position: new google.maps.LatLng(40.677600000000, -73.963700000000), map: this.map, title: "Gen",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[48482] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/48482\" target=\"_blank\">Gen</a></h3><p><b>Richard (Membership)</b>: \"Genuine no frills Japanese cuisine on Washington Ave\" (<a href=\"http://www.foursquare.com/item/117249\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Stephanie (Education)</b>: \"Gen has high-quality, fresh sushi at good prices. The patio out back is a lovely spot for dining in the spring and summer. Enjoy the green or red bean ice cream.\" (<a href=\"http://www.foursquare.com/item/117620\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[48482], 'click', function() { foursquare.showMapWindow(48482); })
    this.venue_meta[48482] = {"name":"Gen","tips_count":2};
    this.venue_ids.push(46376);
    this.markers[46376] = new google.maps.Marker({position: new google.maps.LatLng(40.680000000000, -73.968000000000), map: this.map, title: "Le Gamin - Brooklyn",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[46376] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/46376\" target=\"_blank\">Le Gamin - Brooklyn</a></h3><p><b>Richard (Membership)</b>: \"Casual &amp; cozy friendly French bistro, moderate prices\" (<a href=\"http://www.foursquare.com/item/117257\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[46376], 'click', function() { foursquare.showMapWindow(46376); })
    this.venue_meta[46376] = {"name":"Le Gamin - Brooklyn","tips_count":1};
    this.venue_ids.push(20268);
    this.markers[20268] = new google.maps.Marker({position: new google.maps.LatLng(40.679400000000, -73.968300000000), map: this.map, title: "Beast",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[20268] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/20268\" target=\"_blank\">Beast</a></h3><p><b>Richard (Membership)</b>: \"Simple freshly prepared food.  The scallops are particularly good, and nice brunch on weekends.\" (<a href=\"http://www.foursquare.com/item/117266\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[20268], 'click', function() { foursquare.showMapWindow(20268); })
    this.venue_meta[20268] = {"name":"Beast","tips_count":1};
    this.venue_ids.push(44606);
    this.markers[44606] = new google.maps.Marker({position: new google.maps.LatLng(40.677400000000, -73.963700000000), map: this.map, title: "La Taqueria De Los Muertos",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[44606] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/44606\" target=\"_blank\">La Taqueria De Los Muertos</a></h3><p><b>Eleanor (Education)</b>: \"Lunch special gets you a salad or soup and a burrito - enough for two meals, $7. The atmosphere is homey, arty. Food is fresh &amp; delicious. Love the sugar skull theme!\" (<a href=\"http://www.foursquare.com/item/117269\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[44606], 'click', function() { foursquare.showMapWindow(44606); })
    this.venue_meta[44606] = {"name":"La Taqueria De Los Muertos","tips_count":1};
    this.venue_ids.push(41799);
    this.markers[41799] = new google.maps.Marker({position: new google.maps.LatLng(40.680900000000, -73.967700000000), map: this.map, title: "Cornelius",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[41799] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/41799\" target=\"_blank\">Cornelius</a></h3><p><b>Richard (Membership)</b>: \"As in Vanderbilt?... Clubby and friendly old world charm abounds. You can always count on the American standard fare.\" (<a href=\"http://www.foursquare.com/item/117270\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Kathy (Curatorial)</b>: \"They make a great mac n\' cheese with bacon.\" (<a href=\"http://www.foursquare.com/item/117572\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[41799], 'click', function() { foursquare.showMapWindow(41799); })
    this.venue_meta[41799] = {"name":"Cornelius","tips_count":2};
    this.venue_ids.push(4807);
    this.markers[4807] = new google.maps.Marker({position: new google.maps.LatLng(40.678300000000, -73.968600000000), map: this.map, title: "Soda Bar",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[4807] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/4807\" target=\"_blank\">Soda Bar</a></h3><p><b>Caroline (Design)</b>: \"One of the longest Happy Hours in Brooklyn! Cheap bar munchies help soak up the alcohol, too. An outside patio in the summertime makes it perfect to wallow away the day.\" (<a href=\"http://www.foursquare.com/item/117272\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Katie (Curatorial)</b>: \"The Pierogi and beer-battered onion rings here are a great-tasting way to clog your arteries!\" (<a href=\"http://www.foursquare.com/item/117284\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[4807], 'click', function() { foursquare.showMapWindow(4807); })
    this.venue_meta[4807] = {"name":"Soda Bar","tips_count":2};
    this.venue_ids.push(182969);
    this.markers[182969] = new google.maps.Marker({position: new google.maps.LatLng(40.671358500000, -73.957702000000), map: this.map, title: "The Pulp & The Bean",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[182969] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/182969\" target=\"_blank\">The Pulp & The Bean</a></h3><p><b>Will (Membership)</b>: \"Your standard upscale coffee shop, which is to say unbelievable coffee, great breakfast food, free wifi, and a relaxed atmosphere. You can\'t go wrong!\" (<a href=\"http://www.foursquare.com/item/117274\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[182969], 'click', function() { foursquare.showMapWindow(182969); })
    this.venue_meta[182969] = {"name":"The Pulp & The Bean","tips_count":1};
    this.venue_ids.push(45710);
    this.markers[45710] = new google.maps.Marker({position: new google.maps.LatLng(40.675600000000, -73.963600000000), map: this.map, title: "Washington Commons",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[45710] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/45710\" target=\"_blank\">Washington Commons</a></h3><p><b>Jenny (Exhibitions)</b>: \"One of the best back-patios in Brooklyn and good hefeweizen on tap. Celebrated my last birthday here.\" (<a href=\"http://www.foursquare.com/item/117289\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Stephanie (Education)</b>: \"Darkish dive bar with a good selection of beers on tap. They also have an outdoor patio area in the back for when the sun is shining.\" (<a href=\"http://www.foursquare.com/item/117623\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[45710], 'click', function() { foursquare.showMapWindow(45710); })
    this.venue_meta[45710] = {"name":"Washington Commons","tips_count":2};
    this.venue_ids.push(77245);
    this.markers[77245] = new google.maps.Marker({position: new google.maps.LatLng(40.676423000000, -73.962815000000), map: this.map, title: "The Spot - American Bistro",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[77245] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/77245\" target=\"_blank\">The Spot - American Bistro</a></h3><p><b>Katie (Curatorial)</b>: \"Affordable lunch specials, wine specials with dinner, and good brunch on the weekends with unlimited mimosas.\" (<a href=\"http://www.foursquare.com/item/117295\" target=\"_blank\">December 15th, 2009</a>)</p><p class=\"alt-row\"><b>Kathy (Curatorial)</b>: \"$12.95 the best boozy brunch deal in all of Brooklyn; Be sure to order the crabcake.   It is one of my favorite Prospect Heights dishes.\" (<a href=\"http://www.foursquare.com/item/117553\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[77245], 'click', function() { foursquare.showMapWindow(77245); })
    this.venue_meta[77245] = {"name":"The Spot - American Bistro","tips_count":2};
    this.venue_ids.push(53720);
    this.markers[53720] = new google.maps.Marker({position: new google.maps.LatLng(40.677400000000, -73.963700000000), map: this.map, title: "Sit & Wonder ",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[53720] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/53720\" target=\"_blank\">Sit & Wonder </a></h3><p><b>Eleanor (Education)</b>: \"Wonderful pastries, but beyond that they serve Stumptown Coffee, which is now roasted in Red Hook. In addition, a small drip coffee is only $1!\" (<a href=\"http://www.foursquare.com/item/117301\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[53720], 'click', function() { foursquare.showMapWindow(53720); })
    this.venue_meta[53720] = {"name":"Sit & Wonder ","tips_count":1};
    this.venue_ids.push(176280);
    this.markers[176280] = new google.maps.Marker({position: new google.maps.LatLng(40.673726900000, -73.962959700000), map: this.map, title: "Natural Blend",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[176280] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/176280\" target=\"_blank\">Natural Blend</a></h3><p><b>Matthew (Design)</b>: \"All organic, with Jamaican flair, featuring fresh juices and the traditional roasted breadfruit with cod.\" (<a href=\"http://www.foursquare.com/item/117381\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[176280], 'click', function() { foursquare.showMapWindow(176280); })
    this.venue_meta[176280] = {"name":"Natural Blend","tips_count":1};
    this.venue_ids.push(405050);
    this.markers[405050] = new google.maps.Marker({position: new google.maps.LatLng(40.673677200000, -73.962949900000), map: this.map, title: "3D Bakery",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[405050] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/405050\" target=\"_blank\">3D Bakery</a></h3><p><b>Kathy (Curatorial)</b>: \"Jamaican chicken patties and the tasty jerk chicken platter comes with a very addictive cabbage dish; if you are feeling a bit adventurous, try a peanut punch.\" (<a href=\"http://www.foursquare.com/item/117511\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[405050], 'click', function() { foursquare.showMapWindow(405050); })
    this.venue_meta[405050] = {"name":"3D Bakery","tips_count":1};
    this.venue_ids.push(225442);
    this.markers[225442] = new google.maps.Marker({position: new google.maps.LatLng(40.678786000000, -73.968113000000), map: this.map, title: "mitchell\'s soul food",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[225442] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/225442\" target=\"_blank\">mitchell\'s soul food</a></h3><p><b>Kathy (Curatorial)</b>: \"One of the best fried chickens you will ever have.\" (<a href=\"http://www.foursquare.com/item/117522\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[225442], 'click', function() { foursquare.showMapWindow(225442); })
    this.venue_meta[225442] = {"name":"mitchell's soul food","tips_count":1};
    this.venue_ids.push(120524);
    this.markers[120524] = new google.maps.Marker({position: new google.maps.LatLng(40.676651600000, -73.963515900000), map: this.map, title: "Rawstar",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[120524] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/120524\" target=\"_blank\">Rawstar</a></h3><p><b>Kathy (Curatorial)</b>: \"Nappa Cabbage Sandwich is one of my favorite local delights.\" (<a href=\"http://www.foursquare.com/item/117514\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[120524], 'click', function() { foursquare.showMapWindow(120524); })
    this.venue_meta[120524] = {"name":"Rawstar","tips_count":1};
    this.venue_ids.push(81498);
    this.markers[81498] = new google.maps.Marker({position: new google.maps.LatLng(40.677500000000, -73.968900000000), map: this.map, title: "plan b - brooklyn",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[81498] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/81498\" target=\"_blank\">plan b - brooklyn</a></h3><p><b>Kathy (Curatorial)</b>: \"A very busy sports bar with a cute little backyard. Have a hangover?  Then try the  brunch hangover helper.  The Thanksgiving leftovers sandwich is quite good too.\" (<a href=\"http://www.foursquare.com/item/117527\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[81498], 'click', function() { foursquare.showMapWindow(81498); })
    this.venue_meta[81498] = {"name":"plan b - brooklyn","tips_count":1};
    this.venue_ids.push(84974);
    this.markers[84974] = new google.maps.Marker({position: new google.maps.LatLng(40.677759700000, -73.968847500000), map: this.map, title: "Milk Bar",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[84974] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/84974\" target=\"_blank\">Milk Bar</a></h3><p><b>Kathy (Curatorial)</b>: \"The old Michelin rated Garden Cafe space closed this year and the space has been transformed into a beautiful airy cafe with breakfast foods and sandwiches.\" (<a href=\"http://www.foursquare.com/item/117537\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[84974], 'click', function() { foursquare.showMapWindow(84974); })
    this.venue_meta[84974] = {"name":"Milk Bar","tips_count":1};
    this.venue_ids.push(405149);
    this.markers[405149] = new google.maps.Marker({position: new google.maps.LatLng(40.680110000000, -73.968294000000), map: this.map, title: "Vanderbilt Coffee Shop",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[405149] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/405149\" target=\"_blank\">Vanderbilt Coffee Shop</a></h3><p><b>Kathy (Curatorial)</b>: \"This old-school diner has been here for at least 10 years, a mainstay. Not much to look at, but the people who work there are so nice and friendly and NOTHING is over $7\" (<a href=\"http://www.foursquare.com/item/117552\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[405149], 'click', function() { foursquare.showMapWindow(405149); })
    this.venue_meta[405149] = {"name":"Vanderbilt Coffee Shop","tips_count":1};
    this.venue_ids.push(18333);
    this.markers[18333] = new google.maps.Marker({position: new google.maps.LatLng(40.679600000000, -73.965200000000), map: this.map, title: "Tavern On Dean",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[18333] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/18333\" target=\"_blank\">Tavern On Dean</a></h3><p><b>Kathy (Curatorial)</b>: \"Decent brunch special and a great little bread/muffin basket.\" (<a href=\"http://www.foursquare.com/item/117555\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[18333], 'click', function() { foursquare.showMapWindow(18333); })
    this.venue_meta[18333] = {"name":"Tavern On Dean","tips_count":1};
    this.venue_ids.push(52446);
    this.markers[52446] = new google.maps.Marker({position: new google.maps.LatLng(40.677000000000, -73.972300000000), map: this.map, title: "Sharlene\'s",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[52446] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/52446\" target=\"_blank\">Sharlene\'s</a></h3><p><b>Kathy (Curatorial)</b>: \"They make a great hot toddy.\" (<a href=\"http://www.foursquare.com/item/117561\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[52446], 'click', function() { foursquare.showMapWindow(52446); })
    this.venue_meta[52446] = {"name":"Sharlene's","tips_count":1};
    this.venue_ids.push(52447);
    this.markers[52447] = new google.maps.Marker({position: new google.maps.LatLng(40.676200000000, -73.971700000000), map: this.map, title: "Christie\'s",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[52447] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/52447\" target=\"_blank\">Christie\'s</a></h3><p><b>Kathy (Curatorial)</b>: \"You shouldn\'t come to this area of Brooklyn without stopping here for a  Jamaican patty\" (<a href=\"http://www.foursquare.com/item/117562\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[52447], 'click', function() { foursquare.showMapWindow(52447); })
    this.venue_meta[52447] = {"name":"Christie's","tips_count":1};
    this.venue_ids.push(84961);
    this.markers[84961] = new google.maps.Marker({position: new google.maps.LatLng(40.678800000000, -73.973600000000), map: this.map, title: "Joy Indian Restaurant",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[84961] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/84961\" target=\"_blank\">Joy Indian Restaurant</a></h3><p><b>Kathy (Curatorial)</b>: \"Not much to look at but their Chicken Tikka Masala is great and the Tandoori dinner for two will feed 2 people for at least 2 meals.\" (<a href=\"http://www.foursquare.com/item/117564\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[84961], 'click', function() { foursquare.showMapWindow(84961); })
    this.venue_meta[84961] = {"name":"Joy Indian Restaurant","tips_count":1};
    this.venue_ids.push(129671);
    this.markers[129671] = new google.maps.Marker({position: new google.maps.LatLng(40.677173700000, -73.972427100000), map: this.map, title: "El Gran Castillo de Jagua",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[129671] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/129671\" target=\"_blank\">El Gran Castillo de Jagua</a></h3><p><b>Kathy (Curatorial)</b>: \"Not much to look at but their rotisserie chicken is amazing and breakfast special of mangu and fried cheese is cheap and delicious.\" (<a href=\"http://www.foursquare.com/item/117567\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[129671], 'click', function() { foursquare.showMapWindow(129671); })
    this.venue_meta[129671] = {"name":"El Gran Castillo de Jagua","tips_count":1};
    this.venue_ids.push(145902);
    this.markers[145902] = new google.maps.Marker({position: new google.maps.LatLng(40.682505900000, -73.961295000000), map: this.map, title: "Desserts by Michael Allen",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[145902] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/145902\" target=\"_blank\">Desserts by Michael Allen</a></h3><p><b>Kathy (Curatorial)</b>: \"The Quiche is delicious.\" (<a href=\"http://www.foursquare.com/item/117570\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[145902], 'click', function() { foursquare.showMapWindow(145902); })
    this.venue_meta[145902] = {"name":"Desserts by Michael Allen","tips_count":1};
    this.venue_ids.push(176926);
    this.markers[176926] = new google.maps.Marker({position: new google.maps.LatLng(40.674584000000, -73.967095000000), map: this.map, title: "St Johns Marketplace",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[176926] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/176926\" target=\"_blank\">St Johns Marketplace</a></h3><p><b>Tash (Membership)</b>: \"Unexpected gem. They take standard deli fare up a notch w/ choices like flatbread, avocado, and cucumber for made-to-order sandwiches made carefully with love!\" (<a href=\"http://www.foursquare.com/item/117225\" target=\"_blank\">December 11th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[176926], 'click', function() { foursquare.showMapWindow(176926); })
    this.venue_meta[176926] = {"name":"St Johns Marketplace","tips_count":1};
    this.venue_ids.push(20859);
    this.markers[20859] = new google.maps.Marker({position: new google.maps.LatLng(40.673500000000, -73.970500000000), map: this.map, title: "Brooklyn Central Library",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[20859] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/20859\" target=\"_blank\">Brooklyn Central Library</a></h3><p><b>Deb (Digital Lab)</b>: \"Catch a snack at the Mambo Open Book Café and check out some books at the same time. Sit under an umbrella on the plaza and sip your coffee. Civilized!\" (<a href=\"http://www.foursquare.com/item/125917\" target=\"_blank\">December 19th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[20859], 'click', function() { foursquare.showMapWindow(20859); })
    this.venue_meta[20859] = {"name":"Brooklyn Central Library","tips_count":1};
    this.venue_ids.push(34448);
    this.markers[34448] = new google.maps.Marker({position: new google.maps.LatLng(40.673600000000, -73.967200000000), map: this.map, title: "Cheryl\'s Global Soul",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[34448] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/34448\" target=\"_blank\">Cheryl\'s Global Soul</a></h3><p><b>Deb (Digital Lab)</b>: \"Small and cozy, with a back garden during nice weather. Great soup/sandwich combos and a tasty main dish every day.\" (<a href=\"http://www.foursquare.com/item/125922\" target=\"_blank\">December 19th, 2009</a>)</p><p class=\"alt-row\"><b>Sallie (Merchandising)</b>: \"The Vegetarian Chili is a comfort food any day of the week. And Gingerade too!!\" (<a href=\"http://www.foursquare.com/item/117183\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[34448], 'click', function() { foursquare.showMapWindow(34448); })
    this.venue_meta[34448] = {"name":"Cheryl's Global Soul","tips_count":2};
    this.venue_ids.push(39292);
    this.markers[39292] = new google.maps.Marker({position: new google.maps.LatLng(40.680000000000, -73.968000000000), map: this.map, title: "Weather Up",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[39292] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/39292\" target=\"_blank\">Weather Up</a></h3><p><b>Jenny (Exhibitions)</b>: \"Old-fashioned cocktails in a cozy space with an amazing copper bar. Great spot for a mid-winter drink.\" (<a href=\"http://www.foursquare.com/item/117193\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[39292], 'click', function() { foursquare.showMapWindow(39292); })
    this.venue_meta[39292] = {"name":"Weather Up","tips_count":1};
    this.venue_ids.push(30558);
    this.markers[30558] = new google.maps.Marker({position: new google.maps.LatLng(40.676700000000, -73.969200000000), map: this.map, title: "Joyce Bakeshop",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[30558] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/30558\" target=\"_blank\">Joyce Bakeshop</a></h3><p><b>Beth (Library)</b>: \"Great macaroons and Gorilla coffee\" (<a href=\"http://www.foursquare.com/item/117190\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[30558], 'click', function() { foursquare.showMapWindow(30558); })
    this.venue_meta[30558] = {"name":"Joyce Bakeshop","tips_count":1};
    this.venue_ids.push(53050);
    this.markers[53050] = new google.maps.Marker({position: new google.maps.LatLng(40.677100000000, -73.972400000000), map: this.map, title: "Sushi Tatsu I",icon: new google.maps.MarkerImage("/images/google-maps-marker-cyan.png")});
    this.info_windows[53050] = new google.maps.InfoWindow({content: "<div class=\"foursquare-map-info-window\"><h3><a href=\"http://www.foursquare.com/venue/53050\" target=\"_blank\">Sushi Tatsu I</a></h3><p><b>Bob (Technology)</b>: \"Best sushi in town and a fine veggie menu too.  Great lunch specials. Nice restaurant and fast delivery if you can\'t make the trip.\" (<a href=\"http://www.foursquare.com/item/117188\" target=\"_blank\">December 15th, 2009</a>)</p></div>"});
    google.maps.event.addListener(this.markers[53050], 'click', function() { foursquare.showMapWindow(53050); })
    this.venue_meta[53050] = {"name":"Sushi Tatsu I","tips_count":1};
    // Sort biz links alphabetically
    var biz_links = [];
    for(var i=0;i<this.venue_ids.length;i++) {
      biz_links.push(this.createMapVenueLink(this.venue_ids[i]));
    }
    biz_links.sort(this.linkAlphaComparator);
    
    // Build ul list of biz links
    this.nav_div = $('foursquare-map-nav');
    this.nav_div.adopt(new Element('ul'));
    for(var i=0;i<biz_links.length;i++) {
      var a = biz_links[i];
      var li = new Element('li');
      li.adopt(a);
      this.nav_div.getElement('ul').adopt(li);
    }

  }; // end initMap

  this.linkAlphaComparator = function(a1, a2) {
    if(a1.get('text').toLowerCase() > a2.get('text').toLowerCase()) return 1;
    if(a1.get('text').toLowerCase() < a2.get('text').toLowerCase()) return -1;
    return 0;
  };
}



