<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
>
<channel>
	<title>Hayling Island U3A newsfeed</title>
	<atom:link href="https://haylingu3a.org/feed/u3a" rel="self" type="application/rss+xml" />
	<link>https://haylingu3a.org</link>
	<description>Newsfeed comprising recent news, articles and events from the Hayling Island U3A web site</description>
	<lastBuildDate>Wed, 08 Apr 2026 08:52:00 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>3</sy:updateFrequency>
		<item>
		<title>Event: Longer walk: Exbury and Lepe</title>
		<link>https://haylingu3a.org/events/event/longer-walk-exbury-and-lepe/</link>
		<pubDate>Tue, 20 Jan 2026 20:28:51 +0000</pubDate>
		<dc:creator><![CDATA[Richard North]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/longer-walk-exbury-and-lepe/</guid>
    		<description><![CDATA[We will arrange car shares to leave Hayling at about 8.45 a.m. Park in the visitors' car park at Exbury Gardens, postcode SO45 1AZ, grid reference SU427002, in time for the walk start at 10.00 a.m. (Toilets available). The walk goes eastwards then southwards to meet the coast at Lepe. We can enjoy coffee at &#8230; <a href="https://haylingu3a.org/events/event/longer-walk-exbury-and-lepe/" class="more-link">Continue reading <span class="screen-reader-text">Longer walk: Exbury and Lepe</span> <span class="meta-nav">&#8594;</span></a>]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Walking</p><p>We will arrange car shares to leave Hayling at about 8.45 a.m.</p>
<p>Park in the visitors' car park at Exbury Gardens, postcode SO45 1AZ, grid reference SU427002, in time for the walk start at 10.00 a.m. (Toilets available).</p>
<p>The walk goes eastwards then southwards to meet the coast at Lepe. We can enjoy coffee at The Lookout in Lepe Visitor Centre, which is built on stilts to provide a panoramic view across the Solent at its narrowest point to the Isle of Wight.</p>
<p>We return along the coast and then turn northwards back to Exbury.</p>
<p>The total distance is 7.0 miles, with 140 feet of height gain.</p>
<p>Lunch is available at Exbury Gardens (you do not have to enter the gardens to use the restaurant).</p>
<p>Many of us may want to pay to enter the gardens to see the rhododendrons and azaleas which are Exbury's speciality.</p>
<p>And/or to ride on the train!</p>
<hr />
<p>This is the planned route:</p>
<style>
#gpxTrack {
    height: 600px;
    width: 100%;
    margin: 0px;
    padding: 0px
}
#gpxTrack img {max-width: none;}
</style>
<p id="buttongpxTrackContainer">
  <a href="#progressgpxTrack" id="showgpxTrack" class="link-as-button">Click to show the route</a>
</p>
<p id="progressgpxTrack" style="display:none">Loading the route, please wait...</p>
<div id="gpxTrack" style="display: none"></div>
<p id="fullPagegpxTrack" style="display: none">
  <a href="/u3a-show-map.php?map=https%3A%2F%2Fhaylingu3a.org%2Fwp-content%2Fuploads%2F2026%2F01%2Fexbury-and-lepe.gpx&title=Longer+walk%3A+Exbury+and+Lepe" target="_blank">Show full screen</a>&nbsp;&nbsp; <span id="distanceStuffgpxTrack"></span></p>
<p>
  <a class="link-as-button" style="margin-top: 12px" href="https://haylingu3a.org/wp-content/uploads/2026/01/exbury-and-lepe.gpx">Download the GPX file</a>
</p>
<script>
var jQ = jQuery.noConflict();
jQ( function() {
  if ( !window.google || !window.google.maps ) {
    // The Google maps API script is not available
    jQ.getScript( "https://maps.googleapis.com/maps/api/js?key=AIzaSyDPsuKfJq0NI_uH5CGTYYr42S5SlsFhIE0&libraries=geometry", function( data, textStatus, jqxhr ) {
      jQ(function() {
  jQ("#showgpxTrack").on("click",function() {
    jQ("#buttongpxTrackContainer").hide();
    jQ("#progressgpxTrack").show();
    jQ("#gpxTrack").show();
    setTimeout( showgpxTrackFunction(), 100 );
  });
});
    });
  }
  else {
    // We've already loaded the Google maps API script
    jQ(function() {
  jQ("#showgpxTrack").on("click",function() {
    jQ("#buttongpxTrackContainer").hide();
    jQ("#progressgpxTrack").show();
    jQ("#gpxTrack").show();
    setTimeout( showgpxTrackFunction(), 100 );
  });
});
  }
});
function showgpxTrackFunction() {
  // Show the map for the given id
  var mapProp = {
    mapTypeId:google.maps.MapTypeId.ROADMAP,
    scaleControl:true,
    streetViewControl:false
  };

  var map=new google.maps.Map(document.getElementById("gpxTrack"), mapProp);
  // Get the map file
  jQ.ajax({
    type: "GET",
    url: "https://haylingu3a.org/wp-content/uploads/2026/01/exbury-and-lepe.gpx",
    dataType: "xml",
    success: function(xml) {
      // Request succeeded
      let points = [];
      let bounds = new google.maps.LatLngBounds ();
      jQ(xml).find("trkpt").each(function() {
        const lat = jQ(this).attr("lat");
        const lon = jQ(this).attr("lon");
        const p = new google.maps.LatLng(lat, lon);
        points.push(p);
        bounds.extend(p);
      });
      
      // Try reading map file as a route if no points found
      if (points.length == 0) {
        jQ(xml).find("rtept").each(function() {
          const lat = jQ(this).attr("lat");
          const lon = jQ(this).attr("lon");
          const p = new google.maps.LatLng(lat, lon);
          points.push(p);
          bounds.extend(p);
        });
      }
      
      // Create direction arrows to show on the route
      let directionArrow = {
        path: google.maps.SymbolPath.FORWARD_CLOSED_ARROW
      };

      // Create the route as a 'polyline' with direction arrows along it
      let poly = new google.maps.Polyline({
        path: points,
        strokeColor: "#AE0000",
        strokeOpacity: .6,
        strokeWeight: 3,
        icons:[
          {icon: directionArrow, offset: "10%"},
          {icon: directionArrow, offset: "35%"},
          {icon: directionArrow, offset: "60%"},
          {icon: directionArrow, offset: "85%"},
        ]
      });
      
      // Show the route with (any) distance calculation Javascript
      poly.setMap(map);
      // calculate line length
let distanceInKilometres = google.maps.geometry.spherical.computeLength(poly.getPath().getArray()) / 1000;
let distanceInMiles = +(distanceInKilometres * 0.6213).toFixed(1);
distanceInKilometres = +distanceInKilometres.toFixed(1);
jQ("#distanceStuffgpxTrack").text("Distance is " + distanceInMiles + " Miles; " + distanceInKilometres + " Kilometres");
      
      // fit bounds to the route so it is all visible
      map.fitBounds(bounds);

      // Add the starting marker if requested
      var marker = new google.maps.Marker({
  position: points[0],
  map: map,
  title: "Start",
  icon: "https://haylingu3a.org/wp-content/plugins/u3a-show-gpx/hiking.png"
});
    },
  
    error: function(jqXHR, textStatus, errorThrown) {
      // Unable to retrieve the map file
      jQ("#gpxTrack").text("Problem getting the gpx file (https://haylingu3a.org/wp-content/uploads/2026/01/exbury-and-lepe.gpx).  Error is: " + textStatus + " " + errorThrown);
    },

    complete: function() {
      // When finished processing the Ajax, show the results of what we've done
      jQ("#progressgpxTrack").hide();
      jQ("#fullPagegpxTrack").show();
    }

    // Finish processing the Ajax request to retrieve the map file
  });
} 
</script>
]]></content:encoded>
	      	</item>
		<item>
		<title>News: U3A cycle ride on 7th April</title>
		<link>https://haylingu3a.org/news/u3a-cycle-ride-on-7th-april/</link>
		<pubDate>Sun, 05 Apr 2026 18:04:16 +0000</pubDate>
		<dc:creator><![CDATA[Andy Henderson]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/news/u3a-cycle-ride-on-7th-april/</guid>
    		<description><![CDATA[I am suggesting a ride to the Bayside Cabin at Stokes Bay. There's more in the cycle group forum on the U3A web site. The weather forecast is looking OK. You don't have to be logged in to see the discussion, but you do need to log in to respond to it. Andy]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Cycling</p><p>I am suggesting a ride to the Bayside Cabin at Stokes Bay. There's more in <a href="https://haylingu3a.org/forums/topic/april-2026-ride/">the cycle group forum on the U3A web site</a>. The weather forecast is looking OK.</p>
<p>You don't have to be logged in to see the discussion, but you do need to log in to respond to it.</p>
<p>Andy</p>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Tuesday Bus Walk - Southsea Coastal Scheme</title>
		<link>https://haylingu3a.org/events/event/tuesday-bus-walk-southsea-coastal-scheme/</link>
		<pubDate>Mon, 30 Mar 2026 09:30:39 +0000</pubDate>
		<dc:creator><![CDATA[Richard North]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/tuesday-bus-walk-southsea-coastal-scheme/</guid>
    		<description><![CDATA[The latest section of the Coastal Scheme to be completed is now open! This is the section from the Hovercraft Terminal to the Aquarium (including the War Memorial). So let's take the bus to The Hard and walk down to take a look! Meet at the Barley Mow at 9.40 and catch 31 bus at &#8230; <a href="https://haylingu3a.org/events/event/tuesday-bus-walk-southsea-coastal-scheme/" class="more-link">Continue reading <span class="screen-reader-text">Tuesday Bus Walk - Southsea Coastal Scheme</span> <span class="meta-nav">&#8594;</span></a>]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Walking</p><p>The latest section of the Coastal Scheme to be completed is now open!</p>
<p>This is the section from the Hovercraft Terminal to the Aquarium (including the War Memorial).</p>
<p>So let's take the bus to The Hard and walk down to take a look!</p>
<p>Meet at the Barley Mow at 9.40 and catch 31 bus at 9.47 to Havant. Catch 700 Coastliner at 10.22 to The Hard in Portsmouth, postcode PO1 3TZ, grid reference SU630001, arriving at 10.58.</p>
<p>We will follow the Millennium Trail ("rope walk") from the Spinnaker Tower to Spice Island then along the coast as far as Southsea Castle.</p>
<p>We will go to the D-Day Museum and stop for half an hour for a cup of coffee and maybe a quick snack.</p>
<p>We will return the way we came - missing out Spice Island on the way back.</p>
<p>There are plenty of lunch opportunities for anyone wanting lunch at Gunwharf Quays, after which there is a 700 bus to Havant leaving every 20 minutes.</p>
<p>The total distance is 5.4 miles, and minimal height gain.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Wimborne Care Home 2pm</title>
		<link>https://haylingu3a.org/events/event/wimborne-care-home-2pm/</link>
		<pubDate>Wed, 04 Feb 2026 10:10:36 +0000</pubDate>
		<dc:creator><![CDATA[Peter Haskell]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/wimborne-care-home-2pm/</guid>
    		<description><![CDATA[Meet from 1.30 to play from 2pm. Set list 2026 gigs final]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Ukulele Thursday morning</p><p>Meet from 1.30 to play from 2pm.</p>
<p>Set list 2026 gigs final</p>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Pickleball 2</title>
		<link>https://haylingu3a.org/events/event/pickleball-2/</link>
		<pubDate>Tue, 31 Mar 2026 09:28:19 +0000</pubDate>
		<dc:creator><![CDATA[John Cushion]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/pickleball-2/</guid>
    		<description><![CDATA[This new group is currently accepting new members. If you would like to join this or a similar group please register your interest. This enables us to notify you if a space becomes available.]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Pickleball 2</p><p>This new group is currently accepting new members. If you would like to join this or a similar group please register your interest. This enables us to notify you if a space becomes available.</p>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Pickleball 2</title>
		<link>https://haylingu3a.org/events/event/pickleball-2-2/</link>
		<pubDate>Wed, 01 Apr 2026 09:48:04 +0000</pubDate>
		<dc:creator><![CDATA[John Cushion]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/pickleball-2-2/</guid>
    		<description><![CDATA[]]></description>
	  	  		<content:encoded><![CDATA[]]></content:encoded>
	      	</item>
		<item>
		<title>Article: Guidance for group leaders</title>
		<link>https://haylingu3a.org/guidance-for-group-leaders/</link>
		<pubDate>Fri, 31 Jul 2015 08:37:08 +0000</pubDate>
		<dc:creator><![CDATA[Bridget Docwra]]></dc:creator>
				<category><![CDATA[Hayling Island u3a]]></category>

		<guid isPermaLink="false">https://haylingu3a.org/?p=592</guid>
    		<description><![CDATA[These notes are provided to help Hayling u3a group leaders run their groups. In practice, leading a HIU3A group is not intended to be onerous. Instead we hope you find it a pleasant and rewarding experience. If you are interested in starting a new group, click/tap here to find out what's involved. Click/tap any of &#8230; <a href="https://haylingu3a.org/guidance-for-group-leaders/" class="more-link">Continue reading <span class="screen-reader-text">Guidance for group leaders</span> <span class="meta-nav">&#8594;</span></a>]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Hayling Island u3a</p><p>These notes are provided to help Hayling u3a group leaders run their groups. In practice, leading a HIU3A group is not intended to be onerous. Instead we hope you find it a pleasant and rewarding experience.</p>
<p>If you are interested in starting a new group, click/tap <a href="https://haylingu3a.org/start-a-new-group/">here</a> to find out what's involved.</p>
<p>Click/tap any of the following headings to see more information.</p>
<details  >
  <summary title="Click/tap to show or hide detail">Support for running your group</summary>
  <div class="u3aDetailsText">
    <p>Besides help available from the committee and the groups co-ordinator, you can get help by:</p>
<details  >
  <summary title="Click/tap to show or hide detail">Sharing hosting</summary>
  <div class="u3aDetailsText">
    <p>Some groups rotate hosting around members who are willing and able to accommodate meetings.</p>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">Appointing a deputy</summary>
  <div class="u3aDetailsText">
    <p>Some groups have found it helpful to appoint a deputy group leader. A deputy is particularly useful if you are ill or away on holiday.</p>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">Delegating web site changes</summary>
  <div class="u3aDetailsText">
    <p>If there's a member of HIU3A willing and able to help you manage your group's pages, you can authorise them to make changes on your behalf by adding them as an editor for your group. They don't have to be a member of your group so you can delegate to a friend, spouse or partner, for example, provided they are a HIU3A member.</p>
<p>There's more information about how to do that <a href="https://haylingu3a.org/how-to-update-group-members-and-editors/" target="_blank" rel="noopener">here</a>.</p>
<p>If you're stuck, you can ask the <a title="Get in touch"  class="u3aEmailer" target="_blank" href="https://haylingu3a.org/contact-u3a-members/?link=U00yR3pvQ1JCaDJUaHIreVV1Wk5OdVd6NUJGV2swVk9Nd2N5M1NxaCttUlJHNGVEWE83NUR5Q3FYNVJWYllLZDkrWXY5bzlRd283MkFKbjQ1VEExU1E9PTo6NzE4ODk0ODk0OTU2OTUwNg==">Web site editor</a> for help, or to make the change for you.</p>
  </div>
</details>
<details   style="margin-bottom: 24px;">
  <summary title="Click/tap to show or hide detail">Learn from other u3as</summary>
  <div class="u3aDetailsText">
    <p>The u3a Trust publishes details of u3as, their groups and events on its <a href="https://oversights.u3asite.uk" target="_blank" rel="noopener">'Oversights' page</a>. You can use it to explore what other u3as are doing and look to collaborate, or learn what works and what doesn't for a given type of group. That's especially useful if you are considering a new group.</p>
  </div>
</details>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">Creating a helpful group page on our web site</summary>
  <div class="u3aDetailsText">
    <p>Our <a title="Get in touch"  class="u3aEmailer" target="_blank" href="https://haylingu3a.org/contact-u3a-members/?link=OW5zWVBKYlNLc1pId0g3QytaNG5ZbHVxNzE0YVB2MmQreVdWVVJIYTNTVC9QbXZFbnpobzJHRExyMjJ2bisybzcvN2NkakJKQkVPQ1FjcWtoMHByS2c9PTo6ODg1ODU3Mzc1OTgyMzU4Nw==">Group Co-ordinator</a> will create your initial group page. You can then update it yourself.</p>
<p>Your group page is important because it:</p>
<ul>
<li>Allows members and prospective members of HIU3A to find out about your group and how to get in touch if they'd like to join.</li>
<li>Lets prospective members see the breadth of what HIU3A offers and encourages them to join us. It's likely they'll review the group lists so your information will promote HIU3A even if they aren't interested in joining your group.</li>
</ul>
<p>We've kept your group page as simple as possible. All we ask for is some basic information, a short description for group lists and a more detailed description for the group page.</p>
<details  >
  <summary title="Click/tap to show or hide detail">Guidance about page content</summary>
  <div class="u3aDetailsText">
    <p>When you update your group page you'll see a form where you can change:</p>
<ul>
<li>The <strong>name of your group</strong> - you can change it if your group evolves over time.</li>
<li>A <strong><em>short</em> description</strong> to be used in group lists. Typically a summary of your group's activity and an indication of when you meet. For example: "<em>The cycling group arranges monthly rides of two to three hours' duration. Usually at 10.00am on the first Tuesday of each month.</em>"</li>
<li>A more <strong>detailed description</strong> of your group for the group page To get away from form filling, we give you a blank box so you can say as much, or as little, as you like. Consider including:
<ul>
<li>A bit more about the group including when and, if you meet in a public place, where you meet.</li>
<li>Some friendly words to encourage people to join.</li>
<li>Any constraints on membership, for example "<em>This is not a group for people wishing to start to learn French</em>".</li>
<li>Any costs involved.</li>
</ul>
</li>
<li>Your group's <strong>type</strong>. This is shown in your group page and determines how your group appears in group lists and calendars. Typically one of:
<ul>
<li>Any member can attend</li>
<li>Open to new members</li>
<li>Currently closed to new members</li>
</ul>
</li>
<li>Which <strong>activity/activities</strong> are covered by your group. Your selection drives the '<a href="https://haylingu3a.org/groups-by-activity/">Groups by activity</a>' page. Let the <a title="Get in touch"  class="u3aEmailer" target="_blank" href="https://haylingu3a.org/contact-u3a-members/?link=MmFXMXpkZHFxaUxIWElZN2RlWG5qY1lDMmFlamtpU0lKV09mdmMySzVtaFdMNmthZ1VuK2N6ZWUySmQvMWltRHBXTFZqNUYybzh2ZU9VZXdKaC9TM0E9PTo6MTE2OTIyMzA3NjMxMjA1Nw==">Group Co-ordinator</a> know if you think the list should be expanded.</li>
<li>The <strong>maximum number of members</strong> you can accommodate or "No practical limit". This helps the group co-ordinator gain an oversight of how groups are doing.</li>
</ul>
<p>If you want to learn how to lay out your detailed description, and add links and images, click/tap <a href="https://haylingu3a.org/how-to-add-news-and-articles/" target="_blank" rel="noopener">here</a>.</p>
  </div>
</details>
<details   style="margin-bottom: 24px;">
  <summary title="Click/tap to show or hide detail">How to update your group page</summary>
  <div class="u3aDetailsText">
    <p>Log in to the web site and go to your group page (you can find it in the <a href="https://haylingu3a.org/all-groups/" target="_blank" rel="noopener">group list</a>). The system will recognise you as a leader of the group (there can be more than one) and you'll see a blue button like this:</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-11808" src="https://haylingu3a.org/wp-content/uploads/2024/01/ChangeGroupDetails.png" alt="" width="278" height="70" srcset="https://haylingu3a.org/wp-content/uploads/2024/01/ChangeGroupDetails.png 278w, https://haylingu3a.org/wp-content/uploads/2024/01/ChangeGroupDetails-150x38.png 150w" sizes="auto, (max-width: 278px) 100vw, 278px" /></p>
<p>Click/tap it to update your group page.</p>
  </div>
</details>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">Keeping track of your group's members</summary>
  <div class="u3aDetailsText">
    <p>We ask you to keep an up-to-date member list on the web site. That's because:</p>
<ul>
<li>You can easily email all members, or a selection of members, in your group (see next section). We automatically use the latest email address given us by each member so, if they update us, your list will update too.</li>
<li>Members of your group can contact each other easily via the web site.</li>
<li>Group members will see your group in the '<a href="https://haylingu3a.org/u3a-lif.php?p=https://haylingu3a.org/your-groups/" target="_blank" rel="noopener">Your groups</a>', '<a href="https://haylingu3a.org/u3a-lif.php?p=https://haylingu3a.org/your-calendar/" target="_blank" rel="noopener">Your calendar</a>', '<a href="https://haylingu3a.org/u3a-lif.php?p=https://haylingu3a.org/news-from-your-groups/" target="_blank" rel="noopener">News from your groups</a>', and '<a href="https://haylingu3a.org/u3a-lif.php?p=https://haylingu3a.org/articles-for/" target="_blank" rel="noopener">Articles from your groups</a>' services, as well as <a href="https://haylingu3a.org/include-u3a-events-in-your-electronic-calendar/" target="_blank" rel="noopener">electronic calendars</a> and <a href="https://haylingu3a.org/rss-feeds/" target="_blank" rel="noopener">newsfeeds</a>.</li>
<li> Handing over your group to someone else is much easier if you have an up-to-date list - particularly if you become unavailable for any reason.</li>
<li>If a member of your group ceases to be a member for any reason, we notify you automatically by email and remove them from your member list. We can't do that if your list doesn't include them. That saves you the embarassment of continuing to email a past member or, worse, a member who has died.</li>
<li>As soon as a new HIU3A year starts, your member list shows which members have not yet paid their subscription. You can use this to help the Membership Secretary by reminding your members of overdue payments.</li>
<li>Our Groups Co-ordinator gets an oversight of how all our groups are doing, and the health of our u3a.</li>
</ul>
<details  >
  <summary title="Click/tap to show or hide detail">How to review your group's member list</summary>
  <div class="u3aDetailsText">
    <p>Log in to the web site and:</p>
<ol>
<li>Go to your group page (you can find it it the <a href="https://haylingu3a.org/groups/" target="_blank" rel="noopener">group lists</a>)</li>
<li>Click/tap the 'Membership list and management' link to see your current list of members</li>
</ol>
<p>If you want to make changes to the list, click/tap 'Manage group membership' or read on for more details...</p>
  </div>
</details>
<details   style="margin-bottom: 24px;">
  <summary title="Click/tap to show or hide detail">How to add members to your group and remove them</summary>
  <div class="u3aDetailsText">
    <p>Click/tap <a href="https://haylingu3a.org/how-to-update-group-members-and-editors/" target="_blank" rel="noopener">here</a> for detailed step-by-step instructions (with pictures) for adding and removing members.</p>
<p>Note that you do not have to remove retiring members. The site does that automatically for you.</p>
  </div>
</details>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">Letting your members know what's happening</summary>
  <div class="u3aDetailsText">
    <p>You can keep members up-to-date in various ways. Click/tap any of the following to find out more:</p>
<details  >
  <summary title="Click/tap to show or hide detail">Email</summary>
  <div class="u3aDetailsText">
    <p>You should always send emails to group members through the web site rather than keep a personal list. The web site ensures you:</p>
<ul>
<li>Use the latest address we have for each member.</li>
<li>Observe members' preferences for receiving circulation emails.</li>
<li>Do not email members who have retired from HIU3A; in particular those who have died.</li>
</ul>
<p>You can email:</p>
<ul>
<li>Individual group members</li>
<li>The whole group</li>
<li>Selected group members (you just tick which members will receive your email)</li>
</ul>
<p>Click/tap <a href="https://haylingu3a.org/how-to-keep-members-in-touch/" target="_blank" rel="noopener">here</a> for more information about how to send emails through the site.</p>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">News articles</summary>
  <div class="u3aDetailsText">
    <p>News articles appear in the sidebar on your group page. Depending on what kind of device people use, the sidebar is either displayed on the right or the bottom of the page.</p>
<p>Members of your group can see news items even if they have deleted your emails. Also, news items demonstrate to prospective members that your group is active.</p>
<details   style="margin-bottom: 24px;">
  <summary title="Click/tap to show or hide detail">Add a news item</summary>
  <div class="u3aDetailsText">
    <p>To add a news item to your group page, log in to the web site and:</p>
<ol>
<li>Go to your group page (you can find it it the <a href="https://haylingu3a.org/groups/" target="_blank" rel="noopener">group lists</a>)</li>
<li>Click/tap the 'Add a news item or article' link.</li>
</ol>
<p>You then enter a title for your article and the text for your news. If you want to can show the item only to members who have logged in to the site. Use this option only if your item includes personal information that should not be shown to the public.</p>
<p>Click/tap <a href="https://haylingu3a.org/how-to-add-news-and-articles/" target="_blank" rel="noopener">here</a> for more information about adding and updating news items.</p>
  </div>
</details>
<p>Having created your news item, you can <a href="https://haylingu3a.org/how-to-keep-members-in-touch/" target="_blank" rel="noopener">send it as an email</a> - that's an easy way to let everyone in your group know about it.</p>
<p>To avoid the group page looking stale, the site periodically replaces older items with a link that allows viewers to see archived items.</p>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">Meetings and other events</summary>
  <div class="u3aDetailsText">
    <p>Every year, before the start of the HIU3A year begins in April, you will be asked to update your events for the new year. There are two types of event:</p>
<ul>
<li><strong>Recurring events</strong> - these all have the same title and description and automatically repeat throughout the year. For example, the 'first Tuesday of each month' or 'Every fortnight'. Most groups' meetings are set up this way. You can exclude specific dates (to avoid Christmas, for example) and add extra ones.</li>
<li><strong>One-off events</strong> - each event occurs at a given date and time and has its own title and content. These are useful for groups such as Walking which goes to a different destination each time.</li>
</ul>
<p>Or you can mix the two.</p>
<p>Your events automatically appear on your group page and in our site's calendars.</p>
<p>Click/tap <a href="https://haylingu3a.org/how-to-work-with-meetings-and-events/" target="_blank" rel="noopener">here</a> to find out more about adding and updating events.</p>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">Forums</summary>
  <div class="u3aDetailsText">
    <p>Forums are a good way to conduct discussions within your group outside of meetings. For example, the <a href="https://haylingu3a.org/forums/forum/cycling-group/" target="_blank" rel="noopener">Cycling group uses a forum</a> to discuss destinations each month.</p>
<p>You can opt for the discussion to be visible to the public or only HIU3A members. In any case, people have to log in to contribute to a disussion.</p>
<p><a title="Get in touch"  class="u3aEmailer" target="_blank" href="https://haylingu3a.org/contact-u3a-members/?link=NFUrZjVOWEZ1ZGFyenhwZGhEcWhxb2VGaXdlNWoxUnVlQnVOZm9iTGM4M1QwY0FneUJaaDAwWFJ1Tm8yb2VNQ1RpeDVHZVgyVTZwNFFCQ2lRUFJIM0E9PTo6NDY2NTI4NzYyMjE3NjI3Nw==">Contact the web site editor</a> if you'd like to set up a forum for your group.</p>
  </div>
</details>
<details   style="margin-bottom: 24px;">
  <summary title="Click/tap to show or hide detail">Personal calendars and newsfeeds</summary>
  <div class="u3aDetailsText">
    <p>Members can:</p>
<ul>
<li>Link HIU3A events to their <a href="https://haylingu3a.org/include-u3a-events-in-your-electronic-calendar/" target="_blank" rel="noopener">electronic calendars</a>.</li>
<li>Monitor news, articles and events via <a href="https://haylingu3a.org/rss-feeds/" target="_blank" rel="noopener">newsfeeds</a>.</li>
</ul>
<p>You don't have to do anything extra. The web site will automatically include relevant items.</p>
  </div>
</details>
<p>You can also:</p>
<ul>
<li>Send notices to the <a title="Get in touch"  class="u3aEmailer" target="_blank" href="https://haylingu3a.org/contact-u3a-members/?link=MG9ZSG13bHE0MGU4V3liUllJUGttSkJXai9UNUtER1VqeHEyclF0OGI1ZGkyMnhoK2lXaC90ZnlyVUV2dnBFb1EwcHlpYVpRSG5mZ0xPTVlIRHU0UlE9PTo6MzM0MDIwNjEzNTc5MTE1OA==">HIU3A editor</a> for inclusion in our newsletters.</li>
<li>Post your group's details on display boards at monthly meetings.</li>
<li>Ask our <a title="Get in touch"  class="u3aEmailer" target="_blank" href="https://haylingu3a.org/contact-u3a-members/?link=T2pXL1g3a0lXOU1LM0ovZWEyc2RCM1RZKy9uYS8zL0tPblV6c0FSaCt2MmRTVkR3TjVjWTlFZEFCaVNOYm1BYjo6OTEzNDE5NzI2NDY0ODE2Mg==">Chair</a> to make announcements at monthly meetings on your behalf.</li>
</ul>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">Saving your group's work</summary>
  <div class="u3aDetailsText">
    <p>If your group generates material that might interest people in the future, you can add it to your group page as an article. There are three types of article:</p>
<ul>
<li>Featured articles appear at the top of article lists</li>
<li>Normal articles appear latest first</li>
<li>Archived articles do not appear on group pages but are available via a link to a page that shows all articles.</li>
</ul>
<p>Ideally, people should be able to read articles without downloading anything. However, they can include links to documents and images. There is a limit to the size of items you can store in our web site. That means you will be unable to upload videos or high definition images. Instead you can link to external web sites such as YouTube or Dropbox. <a title="Get in touch"  class="u3aEmailer" target="_blank" href="https://haylingu3a.org/contact-u3a-members/?link=alFMQWVJUlRFWVFlUDhkYVErWnM5ZXY3ZVprNDRvOXE1L2dOSUViSHlJd3BobmJHK1lMcjV3eXM2T1NQTFJ1dk5tbyt2RUdTa29BUXN2WENRb0tYTlE9PTo6OTQzODA3MjQ5NDA2MTMyNQ==">Contact the web site editor</a> if you need help with that.</p>
<p>You have the option to restrict articles to HIU3A members who have logged in to the site, but making articles public might help promote your group and HIU3A as a whole.</p>
<p>Click/tap <a href="https://haylingu3a.org/how-to-add-news-and-articles/" target="_blank" rel="noopener">here</a> for more information about adding and updating articles.</p>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">Places to meet</summary>
  <div class="u3aDetailsText">
    <p>If you need a place to meet, there's a list of venues we use <a href="https://haylingu3a.org/places-to-meet/" target="_blank" rel="noopener">here</a>. You can use links we provide to find out which groups meet at each venue so you can contact relevant group leaders to find out more.</p>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">Handling money</summary>
  <div class="u3aDetailsText">
    <p>All groups need to be self funding. Shared payments towards covering group necessities such as hiring of halls or equipment, sharing travel expenses, refreshments, etc should be mutually agreed by group members. If you expect contributions from members, you should provide details in your group's page (see above) so there are no surprises.</p>
<p>Apart from equipment belonging to HIU3A (see 'Grants for equipment' below) There is no need for your expenses to be audited or declared.</p>
<p>The Visits group has a system for recording its income and expenses which is visible to the HIU3A Treasurer. The group agrees a fixed price to cover all expenses inc. coach, travel, insurance etc, which is presented to and agreed by members when they buy their tickets.</p>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">If your group gets full</summary>
  <div class="u3aDetailsText">
    <p>It's important for the health of HIU3A that we use opportunities to expand what we do. A full group indicates scope to do that. There are no hard and fast rules for what to do if your group fills up. Here are a few options:</p>
<details  >
  <summary title="Click/tap to show or hide detail">Remove 'absent' members</summary>
  <div class="u3aDetailsText">
    <p>If there are u3a members who have registered their interest in your group and are waiting to join, you should consider asking any current members, who are poor attenders, to leave and make room for them. It's an obvious courtesy to ask them first, but our committee has authorised you to remove a group member who has missed three meetings without giving a reason.</p>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">If your group has no 'absent' members</summary>
  <div class="u3aDetailsText">
    <p>When you get to the maximum number of group members you can handle, use your group page to change your group’s status to 'Closed to new members'. That will automatically show a message on the page explaining the situation and inviting potential new joiners to register their interest in your group. You will be notified by email of any registrations and you can review them via the ‘Show registrations of interest’ link in your group page.</p>
<p>If someone contacts you directly wanting to join when you are full, you can register their interest on their behalf using the ‘Record an interest in this group’ option on the group page.</p>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">Split your group</summary>
  <div class="u3aDetailsText">
    <p>This option is most appropriate if there's an obvious way to split the group. For example, the Ambling group split from the Walking group to support members who could no longer walk as far.</p>
<p>Similarly, a games playing group might split between better and weaker players, or advanced and beginners.</p>
  </div>
</details>
<details   style="margin-bottom: 24px;">
  <summary title="Click/tap to show or hide detail">Support a new group</summary>
  <div class="u3aDetailsText">
    <p>This option is most appropriate if there's significant interest in a new group - or if you suspect there might be.</p>
<p>Key is identifying a leader for the new group who is prepared to set it up. Someone who hasn't led a group before - especially if they are a new HIU3A member - probably finds the prospect daunting. You could help them by mentoring them through the process and, perhaps attending the initial meetings - or maybe a member of your group is prepared to do that.</p>
<p>Another option is for a member of your group to become the leader of the new group - with, or without, the eventual aim of handing leadership over.</p>
  </div>
</details>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">Emergency contacts</summary>
  <div class="u3aDetailsText">
    <p>Members can add their emergency contacts via their profile page. When members log in to the site they can see a link to their profile in the 'Member sevices' menu or at the foot of every page in the site. We also add a link to it from all emails sent via our web site.</p>
<p>Emergency contacts allow you to get in touch with relevant people following an incident. While you can usually contact a spouse or partner via a member's contact number, that might not be useful if:</p>
<ul>
<li>The member lives alone</li>
<li>They use a mobile number as their contact number</li>
<li>Spouses and partners are involved in the same incident.</li>
</ul>
<p>To reduce the stress of dealing with an incident, you should make sure your members have entered emergency contacts.</p>
<p>Once a member has stored their emergency contacts they are automatically avaliable to leaders and editors of all groups to which they belong. You should not rely on personal lists as they can quickly become out of date and are not visible to other group leaders.</p>
<p>In an emergency you can also contact one of:</p>
<ul>
<li>The Membership Secretary</li>
<li>The Group Co-ordinator</li>
<li>The web site editor</li>
</ul>
<p>All of whom have access to emergency contacts for all HIU3A members. You can get in touch with them via the site's <a href="https://haylingu3a.org/organisation/" target="_blank" rel="noopener">organisation page</a>.</p>
<details  >
  <summary title="Click/tap to show or hide detail">More about profiles</summary>
  <div class="u3aDetailsText">
    <p>Click/tap <a href="https://haylingu3a.org/how-to-update-your-profile/" target="_blank" rel="noopener">here</a> for information about the profile page.</p>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">View a member's emergency contacts</summary>
  <div class="u3aDetailsText">
    <p>Log in to the site and use menu options 'Member services' / '<a href="https://haylingu3a.org/u3a-lif.php?p=https://haylingu3a.org/member-lookup/">Member lookup</a>'.</p>
<p>Use the service to find the member in the HIU3A database.</p>
<p>You will then see their details. Even if the member has specified that information should not be visible, group leaders can always see their emergency contacts.</p>
  </div>
</details>
<details   style="margin-bottom: 24px;">
  <summary title="Click/tap to show or hide detail">List emergency contacts</summary>
  <div class="u3aDetailsText">
    <p>Useful if you want to:</p>
<ul>
<li>See who has not yet provided emergency contacts.</li>
<li>Take a list with you if you are meeting outside your home.</li>
</ul>
<p>To see the list use link 'Membership list and management' in your group page and then 'Members' contact details'. You can also use site menu options: 'Member services' / 'Group services' / '<a href="https://haylingu3a.org/u3a-lif.php?p=https://haylingu3a.org/group-contacts/">Your group contacts</a>'. If you lead more than one group, you will be asked to select which group you want.</p>
<p>Either way, you will see a list of your members. Click/tap any of them to see their contact details including their emergency contacts; or use the 'Expand all' button to see everyone's contacts.</p>
  </div>
</details>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">Personal transport</summary>
  <div class="u3aDetailsText">
    <p>It's OK for members to offer lifts to other members to attend HIU3A events. Members can accept voluntary contributions, but formal charging is illegal.</p>
<p>Members offering lifts should check their personal insurance, but offering lifts for social purposes is usually covered.</p>
  </div>
</details>
<details  id="hibc" >
  <summary title="Click/tap to show or hide detail">Businessmen's Club minibus</summary>
  <div class="u3aDetailsText">
    <p><a class="fancybox" href="https://haylingu3a.org/wp-content/uploads/2025/12/HIBCMinibus.jpeg"><img loading="lazy" decoding="async" class="alignright wp-image-13892 size-medium" src="https://haylingu3a.org/wp-content/uploads/2025/12/HIBCMinibus-300x149.jpeg" alt="" width="300" height="149" srcset="https://haylingu3a.org/wp-content/uploads/2025/12/HIBCMinibus-300x149.jpeg 300w, https://haylingu3a.org/wp-content/uploads/2025/12/HIBCMinibus-600x297.jpeg 600w, https://haylingu3a.org/wp-content/uploads/2025/12/HIBCMinibus-150x74.jpeg 150w, https://haylingu3a.org/wp-content/uploads/2025/12/HIBCMinibus-768x380.jpeg 768w, https://haylingu3a.org/wp-content/uploads/2025/12/HIBCMinibus.jpeg 1200w" sizes="auto, (max-width: 300px) 100vw, 300px" /></a>We have had a wonderful offer from the <a href="https://www.hibc.org.uk/" target="_blank" rel="noopener">Hayling Island Businessmen’s Club</a>. Its community bus has been a familiar sight on the Island for many years. It is used mainly by senior citizens' groups for transportation to and from their regular weekly meetings and has proved to be invaluable to those Islanders who might otherwise have difficult in leaving their homes.</p>
<p>Whilst the bus is normally booked for most week days there are times when it is not in use and particularly at weekends. The Businessmen’s Club would therefore welcome the opportunity of offering the facility to us for whenever the bus is available. This could be ideal for:</p>
<ul>
<li>The Visits group for future trips where there are limited numbers and the high cost of coach transport is not warranted.</li>
<li>Other u3a groups for social or other use. E.g. field visits for the camera or art groups.</li>
</ul>
<p>The Businessmen’s Club does not provide a driver but a u3a member can drive (see below) or there are other volunteer drivers who may be available.</p>
<p><strong>The Bus</strong>: Up to 17 seats including driver. Disabled adaptions and defibrillator are on board.</p>
<p><strong>Driver</strong>: Must be between 21 and 70 holding a suitable and clean licence with a D1 licence code. Drivers over 70 can be considered subject to insurer’s approval. A copy licence to be provided to the Club for approval. HIBC will give training on use of the vehicle if required. Drivers are unpaid volunteers, any donation is left to the discretion of the user.</p>
<p><strong>Cost</strong>: User responsible for fuel cost. This is not a hire vehicle so no charge but a donation to the charity is always appreciated.</p>
<p><strong>Insurance</strong>: Full comprehensive insurance cover is provided. There is a minimum £250 accidental damage excess which is normally borne by the Club. In the event of a “fault” claim a contribution is left to the discretion of the user.</p>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">Grants for equipment</summary>
  <div class="u3aDetailsText">
    <p>You can request a grant for any equipment your group might need. Contact our <a title="Get in touch"  class="u3aEmailer" target="_blank" href="https://haylingu3a.org/contact-u3a-members/?link=N0svNHQ1Tnk3TzhORFIza0UzUTFkaUt5R3BWTEV4YXNxaEFVV0dSV1M1NHRFVjgrS0tXS2M3ZVBQMjZIT3hVbFlXMUdVMlJrdHI3QTcxMUtkQ29xekE9PTo6NDU2ODM2NDczNjk1NTgyNg==">Groups co-ordinator</a> in the first instance. As a minimum, they will want to know:</p>
<ul>
<li>What you want to purchase</li>
<li>How you intend to use it</li>
<li>The likely cost</li>
<li>Any maintenance costs</li>
</ul>
<p>Note that purchased equipment is the property of HIU3A, so:</p>
<ul>
<li>It can be used by any group at the HIU3A committee's discretion.</li>
<li>You must keep track of where it is.</li>
<li>In the first instance, you should consult the <a title="Get in touch"  class="u3aEmailer" target="_blank" href="https://haylingu3a.org/contact-u3a-members/?link=TXhKUnIrSGVTYTVTam1jbEVHcUhXVWdiZFdnOTV3TTlHWitReWNkMXFPZTRxVkFCR2pCNzFiaFpxZWZIZmt6cXlVR1lSZlNuWUgzVEtWVTVzelJWM3c9PTo6MTU0ODY3NjM3Mjk4OTUyNw==">Groups co-ordinator</a> about maintenance, repair, disposal and replacement of the equipment.</li>
<li>When requested, present the equipment to a member of the HIU3A committee for inspection.</li>
</ul>
  </div>
</details>
<details  >
  <summary title="Click/tap to show or hide detail">What if there's a problem?</summary>
  <div class="u3aDetailsText">
    <p>If you run a group from your home, it's prudent to have a simple first aid kit available. Having said that, it's prudent even if you don't lead a group.</p>
<p>If you run an outdoor group, consider also carrying a space blanket which can keep someone warm while waiting for help to arrive.</p>
<p>If an incident should occur during your group sessions (eg. an injury, damage to property, physical assault), you should complete a u3a Trust Incident Form.</p>
<p>Please notify the <a title="Get in touch"  class="u3aEmailer" target="_blank" href="https://haylingu3a.org/contact-u3a-members/?link=U1ZkOHFLSkxhUW9KRnFpdlpFdXkvejNmemg2M3dGQkpKUGE3eVBsNVZwaFFEU2VNejRhR2hmUWJrNFZ1VHJPNndka1JPQ0FiYWdFM2FpNUR3a2pobVE9PTo6NDU3MDQ3NTU2NTEwNDUzMQ==">HIU3A Chair</a> and <a title="Get in touch"  class="u3aEmailer" target="_blank" href="https://haylingu3a.org/contact-u3a-members/?link=MnNhd2xDK29NNWFuUHFXUDBMTFhyNVRIZHlYZTMvMUhad1BVcWdmdkNFRGI1QnEzWERmT2RTOWRHM2pUOGIxMmMzb1JUdkFsSFNDS1VCK2YvUXhIS0E9PTo6NDY1MTcyOTUzNjUyMzkwNg==">Group Co-ordinator</a> within 48 hours of the incident, they will provide support and assistance for dealing with it. You should submit your incident form to them as soon as you can.</p>
<p>The latest version of the form at the time of writing is available here as a <a href="https://haylingu3a.org/wp-content/uploads/2024/02/Incident-report-form.docx" target="_blank" rel="noopener">Word document</a> and a <a href="https://haylingu3a.org/wp-content/uploads/2024/02/Incident-report-form.pdf">PDF version</a> (printable without needing extra software).</p>
<p>The very latest version is available from the members' area of the <a href="https://www.u3a.org.uk/" target="_blank" rel="noopener">u3a Trust web site</a>. It's unlikely to change significantly, however.</p>
<details   style="margin-bottom: 24px;">
  <summary title="Click/tap to show or hide detail">u3a insurance documents and incident forms</summary>
  <div class="u3aDetailsText">
    <p>We've asked for direct, permanent links to the u3a Trust web site, but apparently that's too difficult.</p>
<p>To get to the forms, you have to:</p>
<ul>
<li>Go to the <a href="https://www.u3a.org.uk/" target="_blank" rel="noopener">u3a Trust web site</a></li>
<li>Click/tap 'Login' in the header</li>
<li>Either login or, if you don't have a <em>u3a Trust</em> username and password, use the 'Don't have an account?' link to register with the site, then login</li>
<li>Use menu options: 'Members Area' / 'Support for u3as / 'Advice and Guidance'</li>
</ul>
<p>That takes you to a page that provides various documents. Insurance documents are in the Insurance section. Incident forms are in the 'u3a Policies and Procedures' section.</p>
  </div>
</details>
  </div>
</details>
<details   style="margin-bottom: 24px;">
  <summary title="Click/tap to show or hide detail">Handing over a group</summary>
  <div class="u3aDetailsText">
    <p>There will be occasions when, for many different reasons, a group's leadership will need to change. The group will need to agree on who they feel will best take over the role.</p>
<p>If you have appointed a deputy, and you are unavailable, they will either oversee the transition, or take over leadership.</p>
<p>It helps if at least one member of the group, besides the leader, knows how to manage aspects of the group that are not obvious. For example:</p>
<ul>
<li>How a book group orders new books from the library</li>
<li>How hall bookings are made</li>
</ul>
<p>The prospective, new group leader should be directed to the 'Guidance for group leaders' page (the page you are reading now) in the Articles section of our site to find out what is involved. They should take further advice from our <a title="Get in touch"  class="u3aEmailer" target="_blank" href="https://haylingu3a.org/contact-u3a-members/?link=QW9nZnpiRW5qQnFSTlg5alhIa2srb3J3aE43SFp2TWlteEhId0NIYUJYZGFnMlh1WW9YM296NWM5VVE3UnRWQ2VuREY0MWxoaThNQnJVWFBldjVhNEE9PTo6Njc1ODY3OTI4NjgzMDEyMw==">Group Co-ordinator</a> if necessary, before making their decision to take on leadership of the group.</p>
<details  >
  <summary title="Click/tap to show or hide detail">Implement a change of leadership</summary>
  <div class="u3aDetailsText">
    <p>As current group leader you can update the leadership of the group yourself.</p>
<p>The new leader must be a group member. If not, you will have to add them to your group. See 'Keeping track of your group's members' above.</p>
<p>To change your group's leader, log into the site and:</p>
<ul>
<li>Go to your group page (you can find it it the <a href="https://haylingu3a.org/groups/" target="_blank" rel="noopener">group lists</a>)</li>
<li>Click/tap the 'Change group details' button</li>
<li>In the 'Leadership' section, click/tap the 'Change leader(s)' button</li>
<li>Select the new leader(s) and, if appropriate, deselect existing leaders(s)</li>
<li>Click/tap 'Update group leader(s)'</li>
<li>Click/tap 'Submit your change' to complete your update</li>
</ul>
<p>If you remove yourself as leader your ability to manage your group's information on the web site is automatically revoked. You might want to consider retaining a leadership role for a while so you can help the new leader.</p>
<p>A change of leadership is a good opportunity to review the group's page. See 'Creating a helpful group page on our web site' above.</p>
  </div>
</details>
<details   style="margin-bottom: 24px;">
  <summary title="Click/tap to show or hide detail">If the previous group leader cannot make the change</summary>
  <div class="u3aDetailsText">
    <p>Our <a title="Get in touch"  class="u3aEmailer" target="_blank" href="https://haylingu3a.org/contact-u3a-members/?link=eDlhaVB5WmxtYmhaVGN1TUh0UkJZQWs3TC9Oa3VXTnRXb2o4Q2tzc1dQcFFkQjUxVERJeVZ1WW5PcGF2VlRXcmk1eHU0akhiRkJYRHhLMU5DYm9idXc9PTo6NDY3NTU1MzQ1Nzg3NDMzMA==">Group Co-ordinator</a> and <a title="Get in touch"  class="u3aEmailer" target="_blank" href="https://haylingu3a.org/contact-u3a-members/?link=YkhNRlRsK1pnVE9oeGF4T21nNEJsZHhza3ZQZ1pxUWZjblR6eVNvTko5b0hmdHgxMHhuVUd5N3hzZmZHSGtUdUVRTFQ5a25naS83L3gvVnRWWksrSXc9PTo6MzQ0Njk3MjAzMzU3OTg4OQ==">Web site editor</a> can make changes for any group.</p>
  </div>
</details>
  </div>
</details>
<p>If you have any questions or concerns please <a title="Get in touch"  class="u3aEmailer" target="_blank" href="https://haylingu3a.org/contact-u3a-members/?link=SnY0cElLMDUxZ2FuUm1RUytneWUrK3V1bXJoajFMZVU2Mll6eUM0dVNhZGFtS1NGWGoxaHpLc3NzQURwbDBPaVViUlNkV1pWdDU4b2tzQnd6cWN0TEE9PTo6Mzg4NjA1OTQxNjg5NTExNw==">contact our Group Co-ordinator</a> who will be happy to help.</p>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Group Leaders Meeting</title>
		<link>https://haylingu3a.org/events/event/group-leaders-meeting-4/</link>
		<pubDate>Tue, 31 Mar 2026 10:17:29 +0000</pubDate>
		<dc:creator><![CDATA[Julie Taylor]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/group-leaders-meeting-4/</guid>
    		<description><![CDATA[Open Day Organisation]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: HIU3A</p><p>Open Day Organisation</p>
]]></content:encoded>
	      	</item>
		<item>
		<title>Article: Should I get solar PV and/or battery</title>
		<link>https://haylingu3a.org/should-i-get-solar-pv-and-or-battery/</link>
		<pubDate>Mon, 30 Mar 2026 13:31:51 +0000</pubDate>
		<dc:creator><![CDATA[Andy Henderson]]></dc:creator>
				<category><![CDATA[Science and technology]]></category>

		<guid isPermaLink="false">https://haylingu3a.org/should-i-get-solar-pv-and-or-battery/</guid>
    		<description><![CDATA[This document contains the slides presented by Chris Skerry at the S&#38;T meeting on 25th February 2026. It also contains some follow-up material.]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Science and technology</p><p><a href="https://haylingu3a.org/wp-content/uploads/2023/11/Should-I-get-Solar-PV-and_or-a-battery.pdf" target="_blank" rel="noopener">This document</a> contains the slides presented by Chris Skerry at the S&amp;T meeting on 25th February 2026. It also contains some follow-up material.</p>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Longer walk: South Harting and Buriton</title>
		<link>https://haylingu3a.org/events/event/longer-walk-south-harting-and-buriton/</link>
		<pubDate>Wed, 25 Mar 2026 09:07:53 +0000</pubDate>
		<dc:creator><![CDATA[Richard North]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/longer-walk-south-harting-and-buriton/</guid>
    		<description><![CDATA[We plan to organise car shares in advance, so will not meet at West Town Car Park. If driving to South Harting via Petersfield on the B2146, it is possible to stop by the White Hart pub to use the public toilet. Park in the west end of Tipper Lane as close to the B2146 &#8230; <a href="https://haylingu3a.org/events/event/longer-walk-south-harting-and-buriton/" class="more-link">Continue reading <span class="screen-reader-text">Longer walk: South Harting and Buriton</span> <span class="meta-nav">&#8594;</span></a>]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Walking</p><p>We plan to organise car shares in advance, so will not meet at West Town Car Park.</p>
<p>If driving to South Harting via Petersfield on the B2146, it is possible to stop by the White Hart pub to use the public toilet.</p>
<p>Park in the west end of Tipper Lane as close to the B2146 as possible, postcode GU31 5LH, grid reference SU785192, for walk start at 10.00 a.m. at the latest.</p>
<p>We set off on the path towards the Downs and soon start climbing. About halfway up, we turn westwards and are rewarded by a panoramic view over South Harting and its green-spired church. We join the South Downs Way after a mile of climbing – the biggest climb of the day.</p>
<p>We keep to the SDW with occasional panoramic views over the West Weald then join the Milky Way to descend gently to Buriton. The track here is firmer than its name suggests! We can stop at Buriton to sit and admire the pond by the church.</p>
<p>We return to South Harting through the lowland under the Downs via Pircroft Lane and Old Ditcham. We spend literally 2 minutes on the busy narrow road between Petersfield and South Harting and are then rewarded by the sight of the pretty Mill Dam at Nurstead.</p>
<p>We cross the fields to Putnams then pick up a woodland path through wild garlic on the side of Torberry Hill. We then rejoin the busy road but this time we have a wide verge and can soon escape into a playing field then the small road to Church Farm where a path brings us back to South Harting church.</p>
<p>There are no steep climbs or descents although the first mile is uphill most of the way.. The total distance is 9.1 miles with a total ascent of 800 feet.</p>
<p>The route was not muddy on the recce (March 2026) after a dry week following the wet winter.</p>
<p>Lunch is booked for 2 p.m. at the White Hart (2-course lunch £19.90 served till 5 Mon-Fri). Pre-orders might be required (but have not been requested yet).</p>
<hr />
<p>This is the planned route...</p>
<style>
#gpxTrack {
    height: 600px;
    width: 100%;
    margin: 0px;
    padding: 0px
}
#gpxTrack img {max-width: none;}
</style>
<p id="buttongpxTrackContainer">
  <a href="#progressgpxTrack" id="showgpxTrack" class="link-as-button">Click to show the route</a>
</p>
<p id="progressgpxTrack" style="display:none">Loading the route, please wait...</p>
<div id="gpxTrack" style="display: none"></div>
<p id="fullPagegpxTrack" style="display: none">
  <a href="/u3a-show-map.php?map=https%3A%2F%2Fhaylingu3a.org%2Fwp-content%2Fuploads%2F2026%2F03%2FSouthHartingandBuriton.gpx&title=Longer+walk%3A+South+Harting+and+Buriton" target="_blank">Show full screen</a>&nbsp;&nbsp; <span id="distanceStuffgpxTrack"></span></p>
<p>
  <a class="link-as-button" style="margin-top: 12px" href="https://haylingu3a.org/wp-content/uploads/2026/03/SouthHartingandBuriton.gpx">Download the GPX file</a>
</p>
<script>
var jQ = jQuery.noConflict();
jQ( function() {
  if ( !window.google || !window.google.maps ) {
    // The Google maps API script is not available
    jQ.getScript( "https://maps.googleapis.com/maps/api/js?key=AIzaSyDPsuKfJq0NI_uH5CGTYYr42S5SlsFhIE0&libraries=geometry", function( data, textStatus, jqxhr ) {
      jQ(function() {
  jQ("#showgpxTrack").on("click",function() {
    jQ("#buttongpxTrackContainer").hide();
    jQ("#progressgpxTrack").show();
    jQ("#gpxTrack").show();
    setTimeout( showgpxTrackFunction(), 100 );
  });
});
    });
  }
  else {
    // We've already loaded the Google maps API script
    jQ(function() {
  jQ("#showgpxTrack").on("click",function() {
    jQ("#buttongpxTrackContainer").hide();
    jQ("#progressgpxTrack").show();
    jQ("#gpxTrack").show();
    setTimeout( showgpxTrackFunction(), 100 );
  });
});
  }
});
function showgpxTrackFunction() {
  // Show the map for the given id
  var mapProp = {
    mapTypeId:google.maps.MapTypeId.ROADMAP,
    scaleControl:true,
    streetViewControl:false
  };

  var map=new google.maps.Map(document.getElementById("gpxTrack"), mapProp);
  // Get the map file
  jQ.ajax({
    type: "GET",
    url: "https://haylingu3a.org/wp-content/uploads/2026/03/SouthHartingandBuriton.gpx",
    dataType: "xml",
    success: function(xml) {
      // Request succeeded
      let points = [];
      let bounds = new google.maps.LatLngBounds ();
      jQ(xml).find("trkpt").each(function() {
        const lat = jQ(this).attr("lat");
        const lon = jQ(this).attr("lon");
        const p = new google.maps.LatLng(lat, lon);
        points.push(p);
        bounds.extend(p);
      });
      
      // Try reading map file as a route if no points found
      if (points.length == 0) {
        jQ(xml).find("rtept").each(function() {
          const lat = jQ(this).attr("lat");
          const lon = jQ(this).attr("lon");
          const p = new google.maps.LatLng(lat, lon);
          points.push(p);
          bounds.extend(p);
        });
      }
      
      // Create direction arrows to show on the route
      let directionArrow = {
        path: google.maps.SymbolPath.FORWARD_CLOSED_ARROW
      };

      // Create the route as a 'polyline' with direction arrows along it
      let poly = new google.maps.Polyline({
        path: points,
        strokeColor: "#AE0000",
        strokeOpacity: .6,
        strokeWeight: 3,
        icons:[
          {icon: directionArrow, offset: "10%"},
          {icon: directionArrow, offset: "35%"},
          {icon: directionArrow, offset: "60%"},
          {icon: directionArrow, offset: "85%"},
        ]
      });
      
      // Show the route with (any) distance calculation Javascript
      poly.setMap(map);
      // calculate line length
let distanceInKilometres = google.maps.geometry.spherical.computeLength(poly.getPath().getArray()) / 1000;
let distanceInMiles = +(distanceInKilometres * 0.6213).toFixed(1);
distanceInKilometres = +distanceInKilometres.toFixed(1);
jQ("#distanceStuffgpxTrack").text("Distance is " + distanceInMiles + " Miles; " + distanceInKilometres + " Kilometres");
      
      // fit bounds to the route so it is all visible
      map.fitBounds(bounds);

      // Add the starting marker if requested
      var marker = new google.maps.Marker({
  position: points[0],
  map: map,
  title: "Start",
  icon: "https://haylingu3a.org/wp-content/plugins/u3a-show-gpx/hiking.png"
});
    },
  
    error: function(jqXHR, textStatus, errorThrown) {
      // Unable to retrieve the map file
      jQ("#gpxTrack").text("Problem getting the gpx file (https://haylingu3a.org/wp-content/uploads/2026/03/SouthHartingandBuriton.gpx).  Error is: " + textStatus + " " + errorThrown);
    },

    complete: function() {
      // When finished processing the Ajax, show the results of what we've done
      jQ("#progressgpxTrack").hide();
      jQ("#fullPagegpxTrack").show();
    }

    // Finish processing the Ajax request to retrieve the map file
  });
} 
</script>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Portsdown Hill and Cosham</title>
		<link>https://haylingu3a.org/events/event/bus-walk-on-hayling/</link>
		<pubDate>Tue, 10 Feb 2026 13:28:07 +0000</pubDate>
		<dc:creator><![CDATA[Richard North]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/bus-walk-on-hayling/</guid>
    		<description><![CDATA[Meet at the Barley Mow at 10.10 and catch 31 bus at 10.17 to Havant. Catch 20 bus from Havant at 10.45. The route starts with a scenic tour of Leigh Park so it takes about 35 minutes to reach our stop at Farlington Avenue, postcode PO6 1BB, grid reference SU671064. This is a 2.7 &#8230; <a href="https://haylingu3a.org/events/event/bus-walk-on-hayling/" class="more-link">Continue reading <span class="screen-reader-text">Portsdown Hill and Cosham</span> <span class="meta-nav">&#8594;</span></a>]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Walking</p><p>Meet at the Barley Mow at 10.10 and catch 31 bus at 10.17 to Havant. Catch 20 bus from Havant at 10.45. The route starts with a scenic tour of Leigh Park so it takes about 35 minutes to reach our stop at Farlington Avenue, postcode PO6 1BB, grid reference SU671064.</p>
<p>This is a 2.7 mile walk with no height gain, but 280 feet of descent, and no stiles.</p>
<p>We admire the panoramic view over Portsmouth and the two harbours then take the grassy path gradually down and along the side of the hill to meet the main road close to QA Hospital. We take Widley Road, Park Lane and an urban footpath to the shops at Cosham, cross the railway at the level crossing, then take the underpass under the motorway to Hilsea. There are various possibilities for lunch e.g. the Toby Carvery in Hilsea or the Casements Cafe in Hilsea Lines for a pizza, panini or cake.</p>
<p>We will be on chalk down for most of the first mile, which was not at all muddy on the recce (3<sup>rd</sup> March), soon after a wet winter, We are on pavement or tarmac for rest of the walk.</p>
<p>Catch the 700 coastliner (1 every 20 minutes) from Hilsea back to Havant.</p>
<hr />
<p>This is the planned route...</p>
<style>
#gpxTrack {
    height: 600px;
    width: 100%;
    margin: 0px;
    padding: 0px
}
#gpxTrack img {max-width: none;}
</style>
<p id="buttongpxTrackContainer">
  <a href="#progressgpxTrack" id="showgpxTrack" class="link-as-button">Click to show the route</a>
</p>
<p id="progressgpxTrack" style="display:none">Loading the route, please wait...</p>
<div id="gpxTrack" style="display: none"></div>
<p id="fullPagegpxTrack" style="display: none">
  <a href="/u3a-show-map.php?map=https%3A%2F%2Fhaylingu3a.org%2Fwp-content%2Fuploads%2F2026%2F02%2FPortsdownHillandHilsea.gpx&title=Portsdown+Hill+and+Cosham" target="_blank">Show full screen</a>&nbsp;&nbsp; <span id="distanceStuffgpxTrack"></span></p>
<p>
  <a class="link-as-button" style="margin-top: 12px" href="https://haylingu3a.org/wp-content/uploads/2026/02/PortsdownHillandHilsea.gpx">Download the GPX file</a>
</p>
<script>
var jQ = jQuery.noConflict();
jQ( function() {
  if ( !window.google || !window.google.maps ) {
    // The Google maps API script is not available
    jQ.getScript( "https://maps.googleapis.com/maps/api/js?key=AIzaSyDPsuKfJq0NI_uH5CGTYYr42S5SlsFhIE0&libraries=geometry", function( data, textStatus, jqxhr ) {
      jQ(function() {
  jQ("#showgpxTrack").on("click",function() {
    jQ("#buttongpxTrackContainer").hide();
    jQ("#progressgpxTrack").show();
    jQ("#gpxTrack").show();
    setTimeout( showgpxTrackFunction(), 100 );
  });
});
    });
  }
  else {
    // We've already loaded the Google maps API script
    jQ(function() {
  jQ("#showgpxTrack").on("click",function() {
    jQ("#buttongpxTrackContainer").hide();
    jQ("#progressgpxTrack").show();
    jQ("#gpxTrack").show();
    setTimeout( showgpxTrackFunction(), 100 );
  });
});
  }
});
function showgpxTrackFunction() {
  // Show the map for the given id
  var mapProp = {
    mapTypeId:google.maps.MapTypeId.ROADMAP,
    scaleControl:true,
    streetViewControl:false
  };

  var map=new google.maps.Map(document.getElementById("gpxTrack"), mapProp);
  // Get the map file
  jQ.ajax({
    type: "GET",
    url: "https://haylingu3a.org/wp-content/uploads/2026/02/PortsdownHillandHilsea.gpx",
    dataType: "xml",
    success: function(xml) {
      // Request succeeded
      let points = [];
      let bounds = new google.maps.LatLngBounds ();
      jQ(xml).find("trkpt").each(function() {
        const lat = jQ(this).attr("lat");
        const lon = jQ(this).attr("lon");
        const p = new google.maps.LatLng(lat, lon);
        points.push(p);
        bounds.extend(p);
      });
      
      // Try reading map file as a route if no points found
      if (points.length == 0) {
        jQ(xml).find("rtept").each(function() {
          const lat = jQ(this).attr("lat");
          const lon = jQ(this).attr("lon");
          const p = new google.maps.LatLng(lat, lon);
          points.push(p);
          bounds.extend(p);
        });
      }
      
      // Create direction arrows to show on the route
      let directionArrow = {
        path: google.maps.SymbolPath.FORWARD_CLOSED_ARROW
      };

      // Create the route as a 'polyline' with direction arrows along it
      let poly = new google.maps.Polyline({
        path: points,
        strokeColor: "#AE0000",
        strokeOpacity: .6,
        strokeWeight: 3,
        icons:[
          {icon: directionArrow, offset: "10%"},
          {icon: directionArrow, offset: "35%"},
          {icon: directionArrow, offset: "60%"},
          {icon: directionArrow, offset: "85%"},
        ]
      });
      
      // Show the route with (any) distance calculation Javascript
      poly.setMap(map);
      // calculate line length
let distanceInKilometres = google.maps.geometry.spherical.computeLength(poly.getPath().getArray()) / 1000;
let distanceInMiles = +(distanceInKilometres * 0.6213).toFixed(1);
distanceInKilometres = +distanceInKilometres.toFixed(1);
jQ("#distanceStuffgpxTrack").text("Distance is " + distanceInMiles + " Miles; " + distanceInKilometres + " Kilometres");
      
      // fit bounds to the route so it is all visible
      map.fitBounds(bounds);

      // Add the starting marker if requested
      var marker = new google.maps.Marker({
  position: points[0],
  map: map,
  title: "Start",
  icon: "https://haylingu3a.org/wp-content/plugins/u3a-show-gpx/hiking.png"
});
    },
  
    error: function(jqXHR, textStatus, errorThrown) {
      // Unable to retrieve the map file
      jQ("#gpxTrack").text("Problem getting the gpx file (https://haylingu3a.org/wp-content/uploads/2026/02/PortsdownHillandHilsea.gpx).  Error is: " + textStatus + " " + errorThrown);
    },

    complete: function() {
      // When finished processing the Ajax, show the results of what we've done
      jQ("#progressgpxTrack").hide();
      jQ("#fullPagegpxTrack").show();
    }

    // Finish processing the Ajax request to retrieve the map file
  });
} 
</script>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Longer walk: Thorney Island Circuit</title>
		<link>https://haylingu3a.org/events/event/longer-walk-thorney-island-circuit/</link>
		<pubDate>Wed, 21 Jan 2026 12:51:15 +0000</pubDate>
		<dc:creator><![CDATA[Richard North]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/longer-walk-thorney-island-circuit/</guid>
    		<description><![CDATA[This route was recce'd on saturated ground on 8/2/26 after a wet January and early February and there were many muddy stretches, especially (but not limited to) the half-mile or so to the south of the gates onto the Thorney defence establishment. This walk may go ahead in September 2026 if it is dry, or &#8230; <a href="https://haylingu3a.org/events/event/longer-walk-thorney-island-circuit/" class="more-link">Continue reading <span class="screen-reader-text">Longer walk: Thorney Island Circuit</span> <span class="meta-nav">&#8594;</span></a>]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Walking</p><p>This route was recce'd on saturated ground on 8/2/26 after a wet January and early February and there were many muddy stretches, especially (but not limited to) the half-mile or so to the south of the gates onto the Thorney defence establishment.</p>
<p>This walk may go ahead in September 2026 if it is dry, or may be rescheduled to late Spring or Summer 2027.</p>
<p>More details to follow</p>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Hayling u3a open day</title>
		<link>https://haylingu3a.org/events/event/hayling-u3a-open-day/</link>
		<pubDate>Fri, 13 Feb 2026 12:44:33 +0000</pubDate>
		<dc:creator><![CDATA[Peter Haskell]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/hayling-u3a-open-day/</guid>
    		<description><![CDATA[Playing on stage at the Community Centre from 11am for about 45min Set 2026 gigs final &#160; &#160;]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Ukulele Thursday morning</p><p>Playing on stage at the Community Centre from 11am for about 45min</p>
<p>Set 2026 gigs final</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: The Wedge</title>
		<link>https://haylingu3a.org/events/event/the-wedge-2/</link>
		<pubDate>Sat, 28 Mar 2026 09:32:00 +0000</pubDate>
		<dc:creator><![CDATA[Peter Haskell]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/the-wedge-2/</guid>
    		<description><![CDATA[About 6 of us playing for 45min using the 2026 final gig set. Other dates to follow]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Ukulele Thursday morning</p><p>About 6 of us playing for 45min using the 2026 final gig set.</p>
<p>Other dates to follow</p>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Longer walk: Deers Hut and Longmoor</title>
		<link>https://haylingu3a.org/events/event/longer-walk-deers-hut-and-longmoor/</link>
		<pubDate>Sat, 28 Mar 2026 08:46:26 +0000</pubDate>
		<dc:creator><![CDATA[Richard North]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/longer-walk-deers-hut-and-longmoor/</guid>
    		<description><![CDATA[More details to follow.]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Walking</p><p>More details to follow.</p>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Longer walk: Alice Holt Forest</title>
		<link>https://haylingu3a.org/events/event/longer-walk-alice-holt-forest/</link>
		<pubDate>Sat, 04 Jan 2025 14:50:45 +0000</pubDate>
		<dc:creator><![CDATA[Richard North]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/longer-walk-alice-holt-forest/</guid>
    		<description><![CDATA[We plan to organise car shares in advance, so will not meet at West Town Car Park. Park at the Bluebell Inn, Batt’s Corner, Dockenfield or on nearby Boundary Lane if not staying for lunch, postcode GU10 4EX, grid reference SU819410. Meet at the gate to the pub car park for walk start at 10 &#8230; <a href="https://haylingu3a.org/events/event/longer-walk-alice-holt-forest/" class="more-link">Continue reading <span class="screen-reader-text">Longer walk: Alice Holt Forest</span> <span class="meta-nav">&#8594;</span></a>]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Walking</p><p>We plan to organise car shares in advance, so will not meet at West Town Car Park.</p>
<p>Park at the Bluebell Inn, Batt’s Corner, Dockenfield or on nearby Boundary Lane if not staying for lunch, postcode GU10 4EX, grid reference SU819410. Meet at the gate to the pub car park for walk start at 10 a.m. latest. Possibly pre-order lunch.</p>
<p>We start by walking briefly into Abbotts Wood Inclosure then to the Visitor Centre in Willow’s Green Inclosure, where there are toilets (about 1.5 miles into the walk). We then walk to Lodge Pond (possibly sighting a Gruffalo on the way) then cross the A325 into a quieter part of the forest. We circle back via Holt Pound.</p>
<p>We then go in to the Bluebell Inn for lunch (served till 2.30).</p>
<p>It should be generally dry underfoot – most of the paths are hardcore, and if we meet a muddy or very wet area it should be relatively easy to backtrack to find a dry route.</p>
<p>The total distance is 7.6 miles with 400 feet of height gain, and no steep sections.</p>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Mexican Train</title>
		<link>https://haylingu3a.org/events/event/mexican-train/</link>
		<pubDate>Fri, 27 Mar 2026 15:45:37 +0000</pubDate>
		<dc:creator><![CDATA[John Cushion]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/mexican-train/</guid>
    		<description><![CDATA[]]></description>
	  	  		<content:encoded><![CDATA[]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Longer walk: Woolbeding Common</title>
		<link>https://haylingu3a.org/events/event/longer-walk-woolbeding-common/</link>
		<pubDate>Tue, 20 Jan 2026 20:21:44 +0000</pubDate>
		<dc:creator><![CDATA[Richard North]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/longer-walk-woolbeding-common/</guid>
    		<description><![CDATA[This walk was postponed three times in February-March 2026, because of rain. We plan to organise car shares in advance, so will not meet at West Town Car Park. Park in North Street car park in Midhurst, postcode GU29 9DW, grid reference SU887218 for walk start at 10.00 a.m. at the latest. Car parking charges &#8230; <a href="https://haylingu3a.org/events/event/longer-walk-woolbeding-common/" class="more-link">Continue reading <span class="screen-reader-text">Longer walk: Woolbeding Common</span> <span class="meta-nav">&#8594;</span></a>]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Walking</p><p>This walk was postponed three times in February-March 2026, because of rain.</p>
<p>We plan to organise car shares in advance, so will not meet at West Town Car Park.</p>
<p>Park in North Street car park in Midhurst, postcode GU29 9DW, grid reference SU887218 for walk start at 10.00 a.m. at the latest. Car parking charges are very reasonable - £1.40 for 4 hours and £2 for 5 hours (as at Dec. 2025).</p>
<p>The walk starts eastwards and turns north-east by Cowdray Castle, then turns north-westwards and starts a slow and steady climb to Woolbeding Common. There is a glorious view westwards from there of the South Downs as far as Old Winchester Hill, the Hangers and the Greensand Ridge inbetween. We then return southwards across the heathland, with good views of Cocking Down and Heyshott Down. We take Hollist Lane back into Easebourne and cross the River Rother back into Midhurst.</p>
<p>There are no steep climbs or descents. There is one steep climb on a staircase with some missing treads but the handrail feels sturdy, and there are 4 stiles. The total distance is 8.2 miles with a total ascent of 750 feet.</p>
<p>The route is all on either greensand or tarmac and was not muddy on the recce (December 2025) despite nearly an inch of rainfall two days previously.</p>
<p>Lunch will be in Kemaelli's in North Street, Midhurst, just up from the car park. They will appreciate a pre-order of food.</p>
<hr />
<p>This is the planned route:</p>
<style>
#gpxTrack {
    height: 600px;
    width: 100%;
    margin: 0px;
    padding: 0px
}
#gpxTrack img {max-width: none;}
</style>
<p id="buttongpxTrackContainer">
  <a href="#progressgpxTrack" id="showgpxTrack" class="link-as-button">Click to show the route</a>
</p>
<p id="progressgpxTrack" style="display:none">Loading the route, please wait...</p>
<div id="gpxTrack" style="display: none"></div>
<p id="fullPagegpxTrack" style="display: none">
  <a href="/u3a-show-map.php?map=https%3A%2F%2Fhaylingu3a.org%2Fwp-content%2Fuploads%2F2026%2F01%2Fwoolbeding-common.gpx&title=Longer+walk%3A+Woolbeding+Common" target="_blank">Show full screen</a>&nbsp;&nbsp; <span id="distanceStuffgpxTrack"></span></p>
<p>
  <a class="link-as-button" style="margin-top: 12px" href="https://haylingu3a.org/wp-content/uploads/2026/01/woolbeding-common.gpx">Download the GPX file</a>
</p>
<script>
var jQ = jQuery.noConflict();
jQ( function() {
  if ( !window.google || !window.google.maps ) {
    // The Google maps API script is not available
    jQ.getScript( "https://maps.googleapis.com/maps/api/js?key=AIzaSyDPsuKfJq0NI_uH5CGTYYr42S5SlsFhIE0&libraries=geometry", function( data, textStatus, jqxhr ) {
      jQ(function() {
  jQ("#showgpxTrack").on("click",function() {
    jQ("#buttongpxTrackContainer").hide();
    jQ("#progressgpxTrack").show();
    jQ("#gpxTrack").show();
    setTimeout( showgpxTrackFunction(), 100 );
  });
});
    });
  }
  else {
    // We've already loaded the Google maps API script
    jQ(function() {
  jQ("#showgpxTrack").on("click",function() {
    jQ("#buttongpxTrackContainer").hide();
    jQ("#progressgpxTrack").show();
    jQ("#gpxTrack").show();
    setTimeout( showgpxTrackFunction(), 100 );
  });
});
  }
});
function showgpxTrackFunction() {
  // Show the map for the given id
  var mapProp = {
    mapTypeId:google.maps.MapTypeId.ROADMAP,
    scaleControl:true,
    streetViewControl:false
  };

  var map=new google.maps.Map(document.getElementById("gpxTrack"), mapProp);
  // Get the map file
  jQ.ajax({
    type: "GET",
    url: "https://haylingu3a.org/wp-content/uploads/2026/01/woolbeding-common.gpx",
    dataType: "xml",
    success: function(xml) {
      // Request succeeded
      let points = [];
      let bounds = new google.maps.LatLngBounds ();
      jQ(xml).find("trkpt").each(function() {
        const lat = jQ(this).attr("lat");
        const lon = jQ(this).attr("lon");
        const p = new google.maps.LatLng(lat, lon);
        points.push(p);
        bounds.extend(p);
      });
      
      // Try reading map file as a route if no points found
      if (points.length == 0) {
        jQ(xml).find("rtept").each(function() {
          const lat = jQ(this).attr("lat");
          const lon = jQ(this).attr("lon");
          const p = new google.maps.LatLng(lat, lon);
          points.push(p);
          bounds.extend(p);
        });
      }
      
      // Create direction arrows to show on the route
      let directionArrow = {
        path: google.maps.SymbolPath.FORWARD_CLOSED_ARROW
      };

      // Create the route as a 'polyline' with direction arrows along it
      let poly = new google.maps.Polyline({
        path: points,
        strokeColor: "#AE0000",
        strokeOpacity: .6,
        strokeWeight: 3,
        icons:[
          {icon: directionArrow, offset: "10%"},
          {icon: directionArrow, offset: "35%"},
          {icon: directionArrow, offset: "60%"},
          {icon: directionArrow, offset: "85%"},
        ]
      });
      
      // Show the route with (any) distance calculation Javascript
      poly.setMap(map);
      // calculate line length
let distanceInKilometres = google.maps.geometry.spherical.computeLength(poly.getPath().getArray()) / 1000;
let distanceInMiles = +(distanceInKilometres * 0.6213).toFixed(1);
distanceInKilometres = +distanceInKilometres.toFixed(1);
jQ("#distanceStuffgpxTrack").text("Distance is " + distanceInMiles + " Miles; " + distanceInKilometres + " Kilometres");
      
      // fit bounds to the route so it is all visible
      map.fitBounds(bounds);

      // Add the starting marker if requested
      var marker = new google.maps.Marker({
  position: points[0],
  map: map,
  title: "Start",
  icon: "https://haylingu3a.org/wp-content/plugins/u3a-show-gpx/hiking.png"
});
    },
  
    error: function(jqXHR, textStatus, errorThrown) {
      // Unable to retrieve the map file
      jQ("#gpxTrack").text("Problem getting the gpx file (https://haylingu3a.org/wp-content/uploads/2026/01/woolbeding-common.gpx).  Error is: " + textStatus + " " + errorThrown);
    },

    complete: function() {
      // When finished processing the Ajax, show the results of what we've done
      jQ("#progressgpxTrack").hide();
      jQ("#fullPagegpxTrack").show();
    }

    // Finish processing the Ajax request to retrieve the map file
  });
} 
</script>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Longer walk: New Forest</title>
		<link>https://haylingu3a.org/events/event/longer-walk-new-forest/</link>
		<pubDate>Tue, 20 Jan 2026 20:48:15 +0000</pubDate>
		<dc:creator><![CDATA[Richard North]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/longer-walk-new-forest/</guid>
    		<description><![CDATA[More details to follow This is the planned route...]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Walking</p><p>More details to follow</p>
<hr />
<p>This is the planned route...</p>
<style>
#gpxTrack {
    height: 600px;
    width: 100%;
    margin: 0px;
    padding: 0px
}
#gpxTrack img {max-width: none;}
</style>
<p id="buttongpxTrackContainer">
  <a href="#progressgpxTrack" id="showgpxTrack" class="link-as-button">Click to show the route</a>
</p>
<p id="progressgpxTrack" style="display:none">Loading the route, please wait...</p>
<div id="gpxTrack" style="display: none"></div>
<p id="fullPagegpxTrack" style="display: none">
  <a href="/u3a-show-map.php?map=https%3A%2F%2Fhaylingu3a.org%2Fwp-content%2Fuploads%2F2026%2F01%2Fgodshill-new-forest.gpx&title=Longer+walk%3A+New+Forest" target="_blank">Show full screen</a>&nbsp;&nbsp; <span id="distanceStuffgpxTrack"></span></p>
<p>
  <a class="link-as-button" style="margin-top: 12px" href="https://haylingu3a.org/wp-content/uploads/2026/01/godshill-new-forest.gpx">Download the GPX file</a>
</p>
<script>
var jQ = jQuery.noConflict();
jQ( function() {
  if ( !window.google || !window.google.maps ) {
    // The Google maps API script is not available
    jQ.getScript( "https://maps.googleapis.com/maps/api/js?key=AIzaSyDPsuKfJq0NI_uH5CGTYYr42S5SlsFhIE0&libraries=geometry", function( data, textStatus, jqxhr ) {
      jQ(function() {
  jQ("#showgpxTrack").on("click",function() {
    jQ("#buttongpxTrackContainer").hide();
    jQ("#progressgpxTrack").show();
    jQ("#gpxTrack").show();
    setTimeout( showgpxTrackFunction(), 100 );
  });
});
    });
  }
  else {
    // We've already loaded the Google maps API script
    jQ(function() {
  jQ("#showgpxTrack").on("click",function() {
    jQ("#buttongpxTrackContainer").hide();
    jQ("#progressgpxTrack").show();
    jQ("#gpxTrack").show();
    setTimeout( showgpxTrackFunction(), 100 );
  });
});
  }
});
function showgpxTrackFunction() {
  // Show the map for the given id
  var mapProp = {
    mapTypeId:google.maps.MapTypeId.ROADMAP,
    scaleControl:true,
    streetViewControl:false
  };

  var map=new google.maps.Map(document.getElementById("gpxTrack"), mapProp);
  // Get the map file
  jQ.ajax({
    type: "GET",
    url: "https://haylingu3a.org/wp-content/uploads/2026/01/godshill-new-forest.gpx",
    dataType: "xml",
    success: function(xml) {
      // Request succeeded
      let points = [];
      let bounds = new google.maps.LatLngBounds ();
      jQ(xml).find("trkpt").each(function() {
        const lat = jQ(this).attr("lat");
        const lon = jQ(this).attr("lon");
        const p = new google.maps.LatLng(lat, lon);
        points.push(p);
        bounds.extend(p);
      });
      
      // Try reading map file as a route if no points found
      if (points.length == 0) {
        jQ(xml).find("rtept").each(function() {
          const lat = jQ(this).attr("lat");
          const lon = jQ(this).attr("lon");
          const p = new google.maps.LatLng(lat, lon);
          points.push(p);
          bounds.extend(p);
        });
      }
      
      // Create direction arrows to show on the route
      let directionArrow = {
        path: google.maps.SymbolPath.FORWARD_CLOSED_ARROW
      };

      // Create the route as a 'polyline' with direction arrows along it
      let poly = new google.maps.Polyline({
        path: points,
        strokeColor: "#AE0000",
        strokeOpacity: .6,
        strokeWeight: 3,
        icons:[
          {icon: directionArrow, offset: "10%"},
          {icon: directionArrow, offset: "35%"},
          {icon: directionArrow, offset: "60%"},
          {icon: directionArrow, offset: "85%"},
        ]
      });
      
      // Show the route with (any) distance calculation Javascript
      poly.setMap(map);
      // calculate line length
let distanceInKilometres = google.maps.geometry.spherical.computeLength(poly.getPath().getArray()) / 1000;
let distanceInMiles = +(distanceInKilometres * 0.6213).toFixed(1);
distanceInKilometres = +distanceInKilometres.toFixed(1);
jQ("#distanceStuffgpxTrack").text("Distance is " + distanceInMiles + " Miles; " + distanceInKilometres + " Kilometres");
      
      // fit bounds to the route so it is all visible
      map.fitBounds(bounds);

      // Add the starting marker if requested
      var marker = new google.maps.Marker({
  position: points[0],
  map: map,
  title: "Start",
  icon: "https://haylingu3a.org/wp-content/plugins/u3a-show-gpx/hiking.png"
});
    },
  
    error: function(jqXHR, textStatus, errorThrown) {
      // Unable to retrieve the map file
      jQ("#gpxTrack").text("Problem getting the gpx file (https://haylingu3a.org/wp-content/uploads/2026/01/godshill-new-forest.gpx).  Error is: " + textStatus + " " + errorThrown);
    },

    complete: function() {
      // When finished processing the Ajax, show the results of what we've done
      jQ("#progressgpxTrack").hide();
      jQ("#fullPagegpxTrack").show();
    }

    // Finish processing the Ajax request to retrieve the map file
  });
} 
</script>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Chit Chat with 80th birthday</title>
		<link>https://haylingu3a.org/events/event/chit-chat-with-80th-birthday/</link>
		<pubDate>Sat, 21 Mar 2026 19:11:13 +0000</pubDate>
		<dc:creator><![CDATA[Peter Haskell]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/chit-chat-with-80th-birthday/</guid>
    		<description><![CDATA[Community centre, playing for an 80th birthday of Norma. Arrive from 1pm to play from 1.30pm. Set tba to include Irish Rover, Whisky in the Jar and Wild Rover]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Ukulele Thursday morning</p><p>Community centre, playing for an 80th birthday of Norma. Arrive from 1pm to play from 1.30pm.</p>
<p>Set tba to include Irish Rover, Whisky in the Jar and Wild Rover</p>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Pickleball</title>
		<link>https://haylingu3a.org/events/event/pickleball/</link>
		<pubDate>Fri, 13 Jan 2023 21:12:40 +0000</pubDate>
		<dc:creator><![CDATA[Andy Henderson]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/pickleball/</guid>
    		<description><![CDATA[]]></description>
	  	  		<content:encoded><![CDATA[]]></content:encoded>
	      	</item>
		<item>
		<title>News: Monthly newsletter - April 2026</title>
		<link>https://haylingu3a.org/news/monthly-newsletter-april-2026/</link>
		<pubDate>Tue, 24 Mar 2026 16:38:03 +0000</pubDate>
		<dc:creator><![CDATA[Paul Taylor]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/?post_type=u3anews&#038;p=14342</guid>
    		<description><![CDATA[In this newsletter: Renewal fees are now due HIU3A open day News and announcements Dates for your diary Short story - Berry Court Fun page True family history - Admiral Sir John Balchin Monthly moan Renewal fees are now due Memberships are due for renewal on April 1st and can be renewed now. The fee &#8230; <a href="https://haylingu3a.org/news/monthly-newsletter-april-2026/" class="more-link">Continue reading <span class="screen-reader-text">Monthly newsletter - April 2026</span> <span class="meta-nav">&#8594;</span></a>]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Hayling Island u3a</p><p>In this newsletter:</p>
<ul>
<li>Renewal fees are now due</li>
<li>HIU3A open day</li>
<li>News and announcements</li>
<li>Dates for your diary</li>
<li>Short story - Berry Court</li>
<li>Fun page</li>
<li>True family history - Admiral Sir John Balchin</li>
<li>Monthly moan</li>
</ul>
<p> <a href="https://haylingu3a.org/news/monthly-newsletter-april-2026/#more-14342" class="more-link"><span aria-label="Continue reading Monthly newsletter - April 2026">(more&hellip;)</span></a></p>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Bus walk: Havant and Rowlands Castle next the railway</title>
		<link>https://haylingu3a.org/events/event/bus-walk-tba/</link>
		<pubDate>Fri, 28 Feb 2025 13:40:07 +0000</pubDate>
		<dc:creator><![CDATA[Richard North]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/bus-walk-tba/</guid>
    		<description><![CDATA[Meet at the Barley Mow at 9.40 and catch the 31 bus at 9.47 to Havant Bus Station (toilets available in bus station). We go across the railway then turn eastwards and take the pedestrian route back over the railway into Warblington. We cross back to the edge of Havant and pick up a footpath &#8230; <a href="https://haylingu3a.org/events/event/bus-walk-tba/" class="more-link">Continue reading <span class="screen-reader-text">Bus walk: Havant and Rowlands Castle next the railway</span> <span class="meta-nav">&#8594;</span></a>]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Walking</p><p>Meet at the Barley Mow at 9.40 and catch the 31 bus at 9.47 to Havant Bus Station (toilets available in bus station).</p>
<p>We go across the railway then turn eastwards and take the pedestrian route back over the railway into Warblington. We cross back to the edge of Havant and pick up a footpath leading north through the countryside to Rowlands Castle, with yet another railway crossing on the way.</p>
<p>This route is totally different to the one we used on our walk in February.</p>
<p>The path is tarmac or packed hardcore throughout except for one horse field whose exit could be tricky after rain. The walk is 4.5 miles with 1 stile and 100 feet of ascent.</p>
<p>A pub lunch is anticipated at The Robin Hood, with the bus back at 13.50.</p>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Longer walk: Arundel and Amberley</title>
		<link>https://haylingu3a.org/events/event/longer-walk-arundel-and-amberley/</link>
		<pubDate>Wed, 25 Mar 2026 09:12:58 +0000</pubDate>
		<dc:creator><![CDATA[Richard North]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/longer-walk-arundel-and-amberley/</guid>
    		<description><![CDATA[More details to follow]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Walking</p><p>More details to follow</p>
]]></content:encoded>
	      	</item>
		<item>
		<title>Event: Bus walk: The Ashlings</title>
		<link>https://haylingu3a.org/events/event/bus-walk-the-ashlings/</link>
		<pubDate>Tue, 20 Jan 2026 20:36:15 +0000</pubDate>
		<dc:creator><![CDATA[Richard North]]></dc:creator>
		
		<guid isPermaLink="false">https://haylingu3a.org/events/event/bus-walk-the-ashlings/</guid>
    		<description><![CDATA[More details to follow]]></description>
	  	  		<content:encoded><![CDATA[<p>Published in: Walking</p><p>More details to follow</p>
]]></content:encoded>
	      	</item>
	</channel>
</rss>
