You can create such a menu using jQuery and CSS, replacing classes as needed when:
var posit = window.scrollTop();
if (posit == [your designated fadein location]) {
}
CSS: position : fixed, opacity : 0, height : 0; overflow : hidden
swap class to change height to a fixed amount
animate({opacity : 1.0}, 'fast', function() {
});
, . , - jQuery , , .
EDIT: .
http://jsfiddle.net/lazerblade01/fNn7K/26/