document.observe("dom:loaded", function() {
	$$('img').each(function(elm) {
		elm.oncontextmenu = function() { alert('(c)2009 Gopher Sport. All Rights Reserved'); return false; }
	});
});