<!--
$(function()
{
	$("a img").hover(function(){
		$(this).fadeTo(200, 0.5);
		$(this).fadeTo(200, 1);
	},function(){
		$(this).fadeTo(200, 1);
	});
});
// -->
