jQuery.fn.showImage = function() {
	return this.addClass("handCursor").
		fadeTo(0, 0.8).
		click(function(event) {
			msdbShowImg(event.target);
			}).
		hover(
			function(){jQuery(this).fadeTo(0, 1); },
			function(){jQuery(this).fadeTo(0, 0.8); }
		);
 };
