var myrules = {/*
	'.alist_txt img' : function(el) {
		el.onload = function() {
			/*alert('1');/
		}
	},*/
	'A.gallery_link' : function(element) {
		element.onclick = function() {
			window.open(element.href, '', 'scrollbars=no,status=no,resizable=no,width=607,height=648');
			return false;
		}
	}
};

Behaviour.register(myrules);

