Event.addBehavior({
	'button:mouseover' : function(ev) {
		this.addClassName('over');
		Event.stop(ev);
	},
	'button:mouseout' : function(ev) {
		this.removeClassName('over');
		Event.stop(ev);
	}
});