var rules = {
    '.clickable' : {
        onclick : function() { alert('clicked!'); }
    },

    '.hoverable' : {
        onmouseover : function() { this.style.color = 'red'; },
        onmouseout : function() { this.style.color = 'black'; }
    },
	

	
};
Behavior.register(rules);

