Sticky Menu is common today. Look at the picture. This is a example of sticky menu.

Using some small steps you can create a sticky menu. Add this CSS code.
[sourcecode]
.fixed {
position:fixed;
top:0;
z-index:100;
}
[/sourcecode]
First identify the id of your menu id. My menu id is “navigation”.
And then add this code inside head of your HTML tag.
[sourcecode]
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery(window).scroll(function(){
if (jQuery(this).scrollTop() > 138) {
jQuery(‘#navigation’).addClass(‘fixed’);
} else {
jQuery(‘#navigation’).removeClass(‘fixed’);
}
});
});
</script>
[/sourcecode]