$(document).ready(
function() {
$("a.nav").fadeTo("slow", 0.7);
$("a.nav").hover(
function() { $(this).fadeTo("slow", 1.0); }, function() { $(this).fadeTo("slow", 0.7); }
);
}
);
