Not sure if this is what you mean.
I got this from
http://www.javascriptkit.com . This is the code I modified (still modifying). You need a small graphis, an arrow, comes with it. you can see how it looks in a block on my site in the lower left-hand corner.
Add the path to the arrow just past the word Catagories, like img src="tridown.gif", But use < and >. I could not use it in this post because it was trying to display the image!
************************************************** *********
<html><head><style>
#innermenu a{
text-decoration:none;
}
#innermenu a:hover{
background-color:#DD6900;
}
</style></head><body bgcolor="#303030">
<p align="center">
<script language="JavaScript1.2">
//DHTML combo box script- by javascriptkit.com
//Visit JavaScript Kit (
http://www.javascriptkit.com) for script
//Credit must stay intact for use
var ie5=(document.getElementById&&navigator.appName.in dexOf("Internet Explorer")!=-1)
if (ie5){
document.write('<span style="position:relative;width:130px;height:20px;b order:1px solid black;font:bold 10pt Verdana;padding:2px" onClick="showhide(1);event.cancelBubble=1" ><span style="cursor:hand;width:100%">Categories</span>')
document.write('<div id="innermenu" style="position:absolute;center:2;top:16;width:120 px;height:100px;border:1px solid #5B5B5B;background-color:#404040;overflow-y:scroll;visibility:hidden;">')
}
function gl(linkname,dest){
document.write('
'+linkname+'
')
}
function showhide(state){
var cacheobj=document.getElementById("innermenu").styl e
if (state==0)
cacheobj.visibility="hidden"
else
cacheobj.visibility=cacheobj.visibility=="hidden"? "visible" : "hidden"
}
//Specify your links here- gl(Item text, Item URL)
if (ie5){
gl("JavaScript Kit","http://www.javascriptkit.com")
gl("Dynamic Drive","http://www.dynamicdrive.com")
gl("Free Web Templates","http://www.freewebtemplates.com")
gl("Freewarejava.com","http://freewarejava.com")
gl("MSNBC","http://www.msnbc.com")
gl("Google","http://www.google.com")
gl("Yahoo","http://www.yahoo.com")
gl("CNN","http://cnn.com")
//Extend this list as needed
}
if (ie5){
document.onclick=function(){showhide(0)}
document.write('</div></span>')
}
</script>
</p></body></html>
************************************************** *****