ul#dropdownmenu {
		margin:0; 
		padding:0; 
		list-style:none;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#dropdownmenu li {
			float:left; 
			display:block; 
			width:106px; 
			background: url(../img/navmiddle.jpg);
			position:relative;
			z-index:500; 
			margin:0;
			height: 26px;
		}
		
		/* this is the parent menu */
		#dropdownmenu li a {
			display:block;
			height: 21px;
			padding-top: 5px;
			text-decoration:none; 
			color:#fff; 
			text-align:center; 
		}

		#dropdownmenu li a:hover {
			font-weight: bold;
			
		}
	
		/* you can make a different style for default selected value */
		#dropdownmenu a.selected {
			font-weight: bold;
		}
	
		/* submenu, it's hidden by default */
		#dropdownmenu ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 0px; 
			padding:0; 
			list-style:none;
		}
		
		#dropdownmenu ul li {
			width:106px;
			float:left; 
			border-top:1px solid #fff;
		}
		
		/* display block will make the link fill the whole area of LI */
		#dropdownmenu ul a {
			display:block;  
			color: #fff;
		}
		
		#dropdownmenu ul a:hover {
			text-decoration: none;	
		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #dropdownmenu ul {
			margin:0 0 0 -2px;
		}
		
		.navleft {
			background: url(../img/navleft.jpg) no-repeat !important;
		}
		
		.navright {
			background: url(../img/navright.jpg) top right no-repeat !important;
		}
		
		.navbottom {
			background: url(../img/navbottom.png) top center no-repeat !important;
			height: 26px;
		}