$.fn.hoverImage = (function(){
	// lightbox image
	this.append("<span></span>");
	
	this.hover(function(){
		$(this).find("img").stop().animate({opacity:0.5}, "normal")
	}, function(){
		$(this).find("img").stop().animate({opacity:1}, "normal")
	});
});
