(function($) {
  $.fn.gbmenu = function(curr) {
    var _menuitems = [
    	{ text: 'home', link: '/greenbelt/home.html' },
    	{ text: 'about', link: '/greenbelt/about.html' },
    	{ text: 'calendar', link: '/greenbelt/calendar.html' },
    	{ text: 'blog', link: '/greenbelt/blog.html' },
    	{ text: 'links', link: '/greenbelt/links.html' },
    	{ text: 'contact', link: '/greenbelt/contact.aspx' }
    ];
    return this.each(function() {
      var $d = $(this).empty();
      var $ul = $('<ul/>').appendTo($d);
      $.each(_menuitems, function(i, mi) {
        if (mi['text'] != curr) {
          $('<li/>').append($('<a/>').attr('href', mi['link']).text(mi['text'])).appendTo($ul);
        }
      });
    });
  };
})(jQuery);

