
var eventrules = {
  'div#splash_nav img' : function(element) {
    element.onmouseover = function() {
      this.src.match(/([^_]+)\.png/);
      this.src='/img/splash_ov_'+RegExp.$1+'.png';
    }
    element.onmouseout = function() {
      this.src.match(/([^_]+)\.png/);
      this.src='/img/splash_'+RegExp.$1+'.png';
    }
  }

}

Behaviour.register(eventrules);


