$(function(){
	$('span.fade').hover(function(){
			$(this).children().find("img").fadeTo("fast", 0.6);
			$(this).children().find("a").css("text-decoration", "underline");
		},function(){
			$(this).children().find("img").fadeTo("fast", 1);
			$(this).children().find("a").css("text-decoration", "none");
	});
});


