.menuStripe
{   
	background-image: url("http://www.toledo.be/images/menu.gif");
	background-repeat: repeat-x;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	border-bottom: 0px solid black;
	}

ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	top: 20;
	width: 150px;
	left:0px;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: white;
	background: none; /* IE6 Bug */
	padding: 5px;
	border: 0px solid black;
	border-bottom: 0;
	font-size: 11px;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

/* Hover Styles */
ul li a.drop:hover { color: #AA0000; background: orange; } /* inner Styles */
ul li a.button:hover 
{
	 background-image: url("http://www.toledo.be/images/menu_over.gif");
	 background-repeat: repeat-x;
	 color: white; 
} 

li ul li a { padding: 2px 5px; background: #0390cb; color: white; } /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block; } /* The magic */