$(document).ready( function() {
$(".bt")
.fadeTo(1,1)
.hover( 
function(){
$(this).fadeTo(200, 0.6);
},
function(){
$(this).fadeTo(200, 1);
}
)
});
