

body {
    height:2000px;
 }
#floatMenu {
    position:absolute;
    top:150px;
    width:200px;
}

#floatMenu ul {
	margin-bottom:20px;
	padding: 0;
	list-style: none;
	width: 120px;
	border-bottom: 1px solid #ccc;
	list-style-type: none;
	font:11px "Lucida Grande", "Lucida Sans", "Trebuchet MS", verdana, sans-serif;
	}
#floatMenu ul li {
	position: relative;
	}
#floatMenu li ul {
	position: absolute;
	left: 120px;
	top: 0;
	display: none;
	}
#floatMenu ul li a {
	display: block;
	text-decoration: none;
	color: #438dd0;
	background: white;
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
	}


#floatMenu li:hover ul { display: block; }

#floatMenu ul li a:hover { color: white; background: #fa4022; } /* Hover Styles */

#floatMenu li:hover ul, li.over ul { display: block; }
      
      
startList = function() {
      if (document.all&&document.getElementById) {
            navRoot = document.getElementById("nav");
            for (i=0; i<navRoot.childNodes.length; i++) {
                  node = navRoot.childNodes[i];
                  if (node.nodeName=="LI") {
                        node.onmouseover=function() {
                              this.className+=" over";
                        }
                        node.onmouseout=function() {
                              this.className=this.className.replace »
                              (" over", "");
                        }
                  }
            }
      }
}
window.onload=startList;


/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */



