You would need to install EZ-Page Improved TOC if you want to distinguish styling between the current page link and others. If you don't do that, you can still use this to make a dropdown:
Code:
#navEZPagesTOCWrapper {position: relative;}
#navEZPagesTOCWrapper ul {display: none;}
#navEZPagesTOCWrapper:hover ul {
display: block;
position: absolute;
background: #ffffff;
border: 1px solid #aaaaaa;
width: 100%;
margin-left: -1px;
}
These selectors will also be available with the Improved TOC:
Code:
#navEZPagesTOCWrapper .currentPage {}
#navEZPagesTOCWrapper .notCurrentPage {}
Also, the current page name in the menu will not be a clickable link, as there is no point in linking to where you are. This text can be styled differently to highlight that it is the current page.