jQuery.fn.fadeGallery = function() {
	$('img', this).fadeTo('fast', 0.7);
	$('img', this).hover(
		function() { $(this).fadeTo('fast', 1.0); },
		function() { $(this).fadeTo('fast', 0.7); }
	);
	return this;
};