What is your favorite method for showing and hiding a DIV layer? I'm wanting to clean up my site's column content and want clickable/drop-down layers. So it says 'Links' and a user clicks on the 'Links' and the list of links appears underneath. Extra points for cross-browser, degradable and/or XHTML. Thnx! div.style.display = (show ? "block" : "none"); or div.style.visibility = (show ? "visible" :