Menu fixed y anclas con jquery


$("a[href*=#]").live("click", function(e) {
        e.preventDefault();
        var $link = $(this);
        var anchor = $link.attr("href");
            $("html, body").stop().animate({
            scrollTop: $(anchor).offset().top -180 //el 180 representa la distrancia que deja a la parte superior
        }, 1000);  
    }); ------------------..............------------------