I have a \[code\]<ul>\[/code\] at the top of the page showing navigation items. Currently its positioned via position:absolute to stick in place. Code:\[code\]#navigation{ text-align: center; position: absolute; float: left; margin: 0; padding: 0; list-style-type: none;}#navigation li{ display: inline-block; width: 150px; height: 110px; cursor: pointer;}\[/code\]What I want to do, is to have this navigation bar remain glued to the top of the screen, and not be affected by the user's scrolling underneath the page. Kind of like this page:http://www.google.com/intl/en/enterprise/apps/business/products.html#driveHow can this be done?