$(document).ready(function() {
    $("#header").mouseenter(function() {
        $(this).fadeTo("fast", 0.8);
    }).mouseleave(function() {
        $(this).fadeTo("fast", 1.0);
    });
});
