$(document).ready(function() {
	$.extend($.fn, {
		// jQuery Right-Click Plugin
		// Cory S.N. LaViska
		// A Beautiful Site (http://abeautifulsite.net/)
		// 20 December 2008
		// Visit http://abeautifulsite.net/notebook/68 for more information
		noContext: function() {
			$(this).each( function() {
				$(this)[0].oncontextmenu = function() {
					alert("We're sorry, but we've disabled right clicking on our large images to help protect them.")
					return false;
				}
			});
			return $(this);
		}
	});
	$.fn.fancybox.defaults = $.extend({}, $.fn.fancybox.defaults, {
		'imageScale'		: true,
		'overlayOpacity'	: .75,
		'overlayShow'		: true,
		'zoomOpacity'		: true,
		'zoomSpeedIn'		: 500,
		'zoomSpeedOut'		: 500,
		'callbackOnStart'	: function() {
			$("#fancy_content").noContext();
		}
	});
	$("#wrapper a:has(img:only-child)").fancybox();//.find('img').noContext();
});