$(function(){
	// lightbox image
	$(".lightbox-image").append("<em></em>");
	
	$(".lightbox-image").hover(function(){
		$(this).find("img").stop().animate({opacity:0.4}, "fast")
		$(this).find("em").stop().css('z-index','9')
	}, function(){
		$(this).find("img").stop().animate({opacity:1}, "fast")
		$(this).find("em").stop().css('z-index','1')
	});
});
