Question : HTML drop down menues

Hello,
I'm using an HTML menu for my web application (please see the code attached).
It works fine, but as the applicaton grow, I need to add more options and it would be better to have drop-down options. How could I implement this using what I've already have?
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
=== CSS part ===
#DivNavigation ul
{
	margin: 5px 0px 5px 0px;
	padding: 0;
	background-color: #EEEEEE;				
	float: left;
	width: 100%;
	font-family: arial;
	font-size: 10pt;
	font-weight: bold;
	border-top: 1px solid #AAA;
	border-bottom: 1px solid #AAA;					
}

#DivNavigation ul li 
{ 
	display: inline; 
}

#DivNavigation ul li a
{
	padding: 5px 20px;
	color: #555555;
	text-decoration: none;
	float: left;
	border: 1px solid #EEEEEE;
}
		
#DivNavigation li a:hover
{
	background-color: #AAAAAA;
	color: #EEEEEE;
}

=== HTML part ===

Answer : HTML drop down menues

Hi,

plz look this website

http://www.dynamicdrive.com/dynamicindex1/

in that there is lot of menu's available...
Random Solutions  
 
programming4us programming4us