var myEvents = {
	'.btn' : function(el) {
		el.onmouseover = function() {
			menuOver(this, true);
		}
		el.onmouseout = function() {
			menuOver(this, false);
		}
	},
	'#divDialogBar' : function(el) {
		el.onclick = function() {
			hideDialog();
		}
	}
};

Behaviour.register(myEvents);

