#navMenu {
	margin:0; 
	padding:0;
	list-style:none;	
	font-family:arial;
	text-align:center;
	line-height:30px;
}

	#navMenu li {
		float:left;	
		background:url(../images/default.png) no-repeat center center;	/* default background image	*/
		width:137px;							/* width and height of the menu item */
		height:29px;
		position:relative;			/* must set it as relative, because .hover class top and left with absolute position will be positioned according to li.	*/
		margin-left: 10px;
	}

	#navMenu li a {
		z-index:20;		/* z-index must be higher than .hover class */
		display:block;	/* display as block and set the height according to the height of the menu to make the whole LI clickable	*/
		height:30px;
		position:relative;
		color:#ffcc00;
		text-decoration:none;
		text-transform:uppercase;
	}
	#navMenu li a:hover {
		color:#000 !important;
		}

 	#navMenu li .hover {
		background:url(../images/over.png) no-repeat center center;		/* mouseover image	*/
		
		position:absolute;	/* must be postion absolute 	*/
		width:137px;	/*	width, height, left and top to fill the whole LI item	*/
		height:29px;
		left:0; 
		top:0;	
		z-index:0;		/* display under the Anchor tag	*/
		display:none;	/* hide it by default	*/
		text-decoration:none;
		
	}	
	
	#navMenu li.selected {
		background:url(../images/selected.png) no-repeat center center;	/* selected image	*/
	}
	#navMenu li.selected a {
		color:#000;
	}
