$(function(){
$(".fade").hover(
function(){
	$(this).fadeTo(200, 0.8);
},
function(){
	$(this).fadeTo(200, 1.0);
}
);
});
