if (typeof GS != 'undefined' && typeof GS.extend != 'undefined') {
	GS.extend('Group', {
		data : {"geo":{"lat":51.5013,"lng":-2.54448},"url":"http:\/\/www.uwegliding.com\/","manage_url":"http:\/\/groupspaces.com\/uwegliding\/manage\/","secure_url":"https:\/\/secure.groupspaces.com\/group\/uwegliding\/"},
		isGroup : function() {
			return true;
		},
		getGeoLat : function() {
			 return GS.Group.data.geo ? GS.Group.data.geo.lat : null;
		},
		getGeoLng : function() {
			 return GS.Group.data.geo ? GS.Group.data.geo.lng : null;
		},
		getGeoLatLng : function() {
			 if (!google || !google.maps || !google.maps.LatLng || !GS.Group.data.geo) return null;
			 return new google.maps.LatLng(GS.Group.data.geo.lat, GS.Group.data.geo.lng);
		},
		getURL : function() {
			 return GS.Group.data.url;
		},
		getManageURL : function() {
			 return GS.Group.data.manage_url;
		},
		getSecureURL : function() {
			 return GS.Group.data.secure_url;
		}
	});
}

