$(function(){
$(".fade").hover(
function(){
	$(this).fadeTo(800, 0.6);
},
function(){
	$(this).fadeTo(1000, 1.0);
}
);
});
