#navMenu {
	margin:0;
	padding:0;
	list-style:none;
	font-family:arial;
        font-size:14px;
        font-weight:bold;
	text-align:center;
	line-height:40px;
}

	#navMenu li {
		float:top;
		background:url(../webimages/default.png) no-repeat center center;    /* default background image     */
		width:155px;						/* width and height of the menu item */
		height:44px;
		position:relative;		/* must set it as relative */
	}

	#navMenu li a {
                cursor: pointer;
                text-decoration:none;
		z-index:20;	/* z-index must be higher than .myhover class */
		display:block;	/* display as block and set the height according to the height of the menu to make the whole LI clickable*/
		height:44px;
		position:relative;
		color:#FFF;
	}

	#navMenu li .myhover {
		background:url(../webimages/over.png) no-repeat center center;	     /* mouseover image	  */
		position:absolute;	/* must be postion absolute 	*/
		width:155px;	/*width, height, left and top to fill the whole LI item	  */
		height:44px;
		left:0;
		top:0;
		z-index:0;		/* display under the Anchor tag	*/
		display:none;	/* hide it by default	*/
	}

	#navMenu li.selected {
		background:url(../webimages/selected.png) no-repeat center center;   /* selected image	     */
	}
#mySubmit {
   cursor:pointer;
   border: none;
   background:url(../webimages/default.png) no-repeat center center;    /* default background image     */
   width:155px;                                            /* width and height of the menu item */
   height:44px;
   position:relative;   /* must set it as relative*/
}
#mySubmit span {
   font-family:arial;
   font-size:14px;
   font-weight:bold;
   text-align:center;
   color:#FFF;
   position:relative;
   line-height:20px;
   z-index: 10;
}

#mySubmit .myhover {
   background:url(../webimages/over.png) no-repeat center center;      /* mouseover image      */
   position:absolute;

   width:155px;
   height:44px;
   left:0;
   top:0;
   z-index:1;
   display:none;
}
#mySubmit .selected {
   background:url(../webimages/over.png) no-repeat center center;   /* selected image       */

}
#mySubmit:disabled {
   cursor:not-allowed;
   opacity:0.3;
}

