$(function() {        // Do the funky secondary nav.    $("ul#nav-primary li.not-here").css("opacity", 0.6).hover(function() {        $(this).fadeTo("fast", 1);    }, function() {        $(this).fadeTo("fast", 0.6);    });    	 $("ul#nav-secondary li.not-here").css("opacity", 0.6).hover(function() {        $(this).fadeTo("fast", 1);    }, function() {        $(this).fadeTo("fast", 0.6);    });	 	 	 $("ul#nav-third li.not-here").css("opacity", 0.6).hover(function() {        $(this).fadeTo("fast", 1);    }, function() {        $(this).fadeTo("fast", 0.6);    });	 	 	 $("ul#nav-fourth li.not-here").css("opacity", 0.6).hover(function() {        $(this).fadeTo("fast", 1);    }, function() {        $(this).fadeTo("fast", 0.6);    });	 	 $("ul#nav-fifth li.not-here").css("opacity", 0.6).hover(function() {        $(this).fadeTo("fast", 1);    }, function() {        $(this).fadeTo("fast", 0.6);    });	 	 	 $("ul#nav-sixth li.not-here").css("opacity", 0.6).hover(function() {        $(this).fadeTo("fast", 1);    }, function() {        $(this).fadeTo("fast", 0.6);    });	 	 $("ul#nav-seventh li.not-here").css("opacity", 0.6).hover(function() {        $(this).fadeTo("fast", 1);    }, function() {        $(this).fadeTo("fast", 0.6);    });	 	 $("ul#nav-eigth li.not-here").css("opacity", 0.6).hover(function() {        $(this).fadeTo("fast", 1);    }, function() {        $(this).fadeTo("fast", 0.6);    });	  $("ul#nav-ninth li.not-here").css("opacity", 0.6).hover(function() {        $(this).fadeTo("fast", 1);    }, function() {        $(this).fadeTo("fast", 0.6);    });	   $("ul#nav-tenth li.not-here").css("opacity", 0.6).hover(function() {        $(this).fadeTo("fast", 1);    }, function() {        $(this).fadeTo("fast", 0.6);    }); 	 });
