Pure CSS3 Solution
This is not practical if you are wanting to support older browsers, as it uses the :target selector (which also means you are changing the url string when clicking main menu).
See the fiddle.
Given this HTML
<div id="main-menu">
<div class="center">
<a id="p1" href="#opt1">Item 1</a>
<a id="p2" href="#opt2">Item 2</a>
<a id="p3" href="#opt3">Item 3</a>
</div>
</div>
<div id="submenu">
<div class="options">
<div id="opt1">
<a id="s1" href="#">Sub Item 1</a>
<a id="s2" href="#">Sub Item 2</a>
<a id="s3" href="#">Sub Item 3</a>
</div>
<div id="opt2">
<a id="s4" href="#">Sub Item 4</a>
<a id="s5" href="#">Sub Item 5</a>
<a id="s6" href="#">Sub Item 6</a>
</div>
<div id="opt3">
<a id="s7" href="#">Sub Item 7</a>
<a id="s8" href="#">Sub Item 8</a>
<a id="s9" href="#">Sub Item 9</a>
</div>
</div>
</div>
<div id="application_area">
<div id="header"></div>
</div>
This CSS Does It (the submenu is originally empty on page load with this--see below if desired otherwise)
#submenu .options a {display: block;}
#submenu .options > div {display: none}
#submenu .options > div:target {
display: block;
}
To have Option 1 Show on Page Load
First, move the #opt1 div to be the last div of the .options, then use the following CSS instead of that given above (see the fiddle):
#submenu .options a {display: block;}
.options > div:not(#opt1) {display: none}
.options > :target ~ #opt1 {display: none;}
#submenu .options > div:target {
display: block;
}