/* Provides client side information about the member. */
var Member = {
  
  first_name : function() {
    return Cookie.get('member_first_name');
  },
  
  suburb : function() {
    return Cookie.get('member_suburb');
  },
  
  store_current_url : function() {
    if (window.location.pathname != "/garden-club/login"){
      url = window.location.href;
      Cookie.set('current_url', url, 1);
    }
  }
};

