var myrules = {
	'dl' : function(el){
		el.onmouseover = function(){
			this.className = "hover";
		}
		el.onmouseout = function(){
			this.className = "";
		}
	}
};

Behaviour.register(myrules);