if (typeof GS != 'undefined' && typeof GS.extend != 'undefined') {
	GS.extend('Group', {
		data : {"geo":null,"url":"http:\/\/www.pennsleddogclub.com\/","manage_url":"http:\/\/groupspaces.com\/PSDC\/manage\/","secure_url":"https:\/\/secure.groupspaces.com\/group\/PSDC\/"},
		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;
		}
	});
}

