#navMenu {
	width:879px;
	margin:0; 
	padding:0;
	list-style:none;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serifM;
	font-size:12px;
	text-align:center;
	line-height:40px;
}
 
	#navMenu li {
		float:left;	
		background:url(fondo1.jpg) repeat-x center center;	/* default background image	*/
		width:100%;							/* width and height of the menu item */
		height:40px;
		position:relative;			/* must set it as relative, because .hover class top and left with absolute position will be positioned according to li.	*/
	}
 
	#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:40px;
		position:relative;
		color:#FFF;
	}
 
 	#navMenu li .hover {
		background:url(fondo2.jpg) repeat-x center center;		/* mouseover image	*/
		position:absolute;	/* must be postion absolute 	*/
		width:100%;	/*	width, height, left and top to fill the whole LI item	*/
		height:40px;
		left:0; 
		top:0;	
		z-index:0;		/* display under the Anchor tag	*/
		display:none;	/* hide it by default	*/
	}	
 
	#navMenu li.selected {
		background:url(fondo3.jpg) repeat-x center center;	/* selected image	*/
	}
