$(function(){
	$("ul li img").mouseover(function(){
		$(this).animate({
			opacity:0.5
		});
	});
	$("ul li img").mouseout(function(){
		$(this).animate({
			opacity:1.0
		});
	})
});
