// generic jQuery function to generate "expander/drop down" functionality 
  $(function() {
        $('.expander-generic').next().hide();
        $('.expander-generic').click(function() {
          $(this).next().slideToggle('fast');
        });
    
    });

// GB (January 2011) => the following script is likely not in use at the time that I re-linked the site to the "global.js" file:
// if (document.all && document.styleSheets && document.styleSheets[0] && document.styleSheets[0].addRule)
// {
// //    document.styleSheets[0].addRule('#udm li a','background-image: url() !important');
//     document.styleSheets[0].addRule('img', 'behavior: url()');
//     document.styleSheets[0].addRule('#udm li a', 'behavior: url()');
// }
