Пример (это серьезно можно сделать во многих вариациях)
<style>
#currencyLink { position: relative; } // we make anchor for the absolutely positioned #currencyList
#currencyList { display: none; position: absolute; top: 0px; left: 0px } // you may need to tweak these values
</style>
<div id="header">
<div id="currencyLink"><span onclick=" $('#currencyList').toggle(); ">Show currencies</span>
<div id="currencyList">
<a href="#">Currency 1</a>
<a href="#">Currency 2</a>
<a href="#">Currency 3</a>
</div>
</div>
</div>