/* 
Hack tbv IE6
bron: http://tagsoup.com/cookbook/css/fixed
*/

div#submenu {position: absolute}

@media screen {
	div#submenu {position: fixed}
  /* Don't do this at home */
  * html{overflow-y: hidden}
  * html body {
		overflow-y: auto;
		height: 100%;
		padding: 0;
	}
  * html div#submenu {position: absolute}
  /* All done. */
}
