// File: morestuff.js
  if ( typeof window.onload == 'object' ) {
    window.onload=morestuff;
    function morestuff() {
    // hubspotcode();
      aprv=document.getElementById('golf_aprv');
      divs=document.getElementsByTagName('DIV');
      for ( var i=0; i<divs.length; i++ ) {
        tmp=divs[i];
        if ( tmp.className=='golf_aprv' ) {
          tmp.onmouseover=function() {
            aprv.style.color='white';
            window.status=' Failte Ireland Approved';
            }
          tmp.onmouseout=function() {
            aprv.style.color='green';
            window.status='';
            }
          }
        }
      }
    }

  function hubspotcode() {
    window.status='starting hubspot code';
    var hs_portalid=118263; 
    var hs_salog_version = "2.00";
    var hs_ppa = "powerscourt.app10.hubspot.com";
    document.write(unescape("%3Cscript src='" + document.location.protocol + "//" + hs_ppa + "/salog.js.aspx' type='text/javascript'%3E%3C/script%3E"));
    }

