$(document).ready(function() {
    
    $(".navlink").hover(
        function() {
            $(this).fadeTo("slow", .6);
        }, 
        function() {
            $(this).fadeTo( "slow", 1);
    });
});