This example may not be what you want to do but I'll quickly explain Jquery and maybe you'll figure out your specific issue on your own (hard to tell what you are asking for, just a menu, or dropdown div with content?).
Here is an example: http://jsfiddle.net/ycAhA/5/
Its a little more advanced than the example I'm going to explain.
Say you have this HTML:
<ul class="menu">
<li class="dropmenu">Example1</li>
<ul>
<li class="dropmenu">Example2</li>
<ul>
<li>Example2a</li>
</ul>
<li>Example3</li>
</ul>
</ul>
And you want every UL element inside of the classes dropmenu to hide when page opens, and open on click.
JQUERY with Comments:
$(document).ready(function(){ //This line is usually default for jquery, where you put all of your code inside for jquery, it says when the document loads do my code
$(".dropmenu").next("ul").hide();//This line hides the ul's directly after dropmenu
$(".dropmenu").click(function(){//This line says, if dropmenu is clicked run this function
$(this).next("ul").toggle();//This line toggles the ul after dropmenu, on if its off and off if its on etc
});
});
If you want to learn more Jquery visit Jquery.com and search for Jquery questions here.
I would also suggest learning how to do this kind of stuff in raw Javascript, since it will probably run much faster considering you won't be loading all of Jquery library every time you want to do something so simple.