$(document).ready(function() {
	$('.slideshow a img').mouseenter(function(){
		$(this).animate({
    	opacity: 1,
		}, 200);
	});		
	$('.slideshow a img').mouseleave(function(){
		$(this).animate({
    	opacity: 0.5,
		}, 200);
	});	
});