/*
  (c) SpuyMore Web/Applications
  http://www.spuymore.nl/

  General client-side utilities available througout the whole website
*/

var _SKO = {
  newsItemEvent: function(oElm, oEvent)
  {
    // Should be attached to the transparent image positioned above the background
    // image used for opening or closing a news item. Expected arguments are the
    // image element node itself and the event object
    with(oElm.parentNode)
      className = className.replace(/\w+$/,'') + (/closed$/.test(className) ? 'open' : 'closed');
  }
};
