$(function(){
	$("img.fadeImg").hover(
		function(){$(this).fadeTo(200, 0.5);},
		function(){$(this).fadeTo(200, 1);}
	);
})

