<script type="text/javascript">
	var rightClickMenuHandler = function (e) {
		var rightMenu = $("#copyright");
		var button, docX, docY;
		
		if (e.which == null) { /* IE case */
			button= (e.button < 2) ? "LEFT" : ((e.button == 4) ? "MIDDLE" : "RIGHT");
		} else { /* All others */
			button= (e.which < 2) ? "LEFT" : ((e.which == 2) ? "MIDDLE" : "RIGHT");
		}
		
		if (button != 'RIGHT') { rightMenu.data('timeout', null).fadeOut('fast'); return true; }
		if (e.pageX == null)
		{ /* IE case */
			var d= (document.documentElement && document.documentElement.scrollLeft != null) ? document.documentElement : document.body;
			docX = e.clientX + d.scrollLeft, docY = e.clientY + d.scrollTop;
		}
		else{ /* all other browsers */ docX = e.pageX, docY = e.pageY; }
		if (rightMenu.data('timeout')) { clearTimeout(rightMenu.data('timeout')); }
		
		rightMenu
		.css({"position": "fixed", "top": docY, "left": docX, "z-index": "1000"})
		.data('timeout', setTimeout(function () { $("#copyright").fadeOut('fast'); }, 1800))
		.fadeIn("fast");
		
		(e.stopPropagation? e.stopPropagation() : (e.preventDefault ? e.preventDefault() : (e.returnValue = false)));
		return false;
	};
	$("div#slideshow img, div#tiles img, div.galleria-stage img").live('contextmenu', rightClickMenuHandler);
	</script>
