#nav ul{margin:0; padding:0; list-style: none;}
#nav li {
	background-image: url("../img/down.gif"); /* This is to preload the hover state */
	background-repeat: no-repeat; 
	margin-top: 33px; /* For IE5 Mac only - reset to 0 below */
	margin-bottom: 65px; /* For IE5 Mac only - reset to 0 below */
	}
	
#nav a { /* if background is on a:link IE6 won't display properly  */
	background-image: url("../img/up.gif"); /*can be just background */
	background-repeat: no-repeat; /* height and or width in here will stop main image change in IE5 */
	padding-top: 5px; /* For IE5 Mac only - reset to 0 below */
	padding-left: 5px; 
	padding-bottom: 5px; /* For IE5 Mac only - reset to 0 below */
	padding-right: 5px; /* For IE5 Mac only - reset to 10 below */
	color: #999999;
	text-decoration: none;
	font-family: Helvetica, Arial, Geneva, Swiss, SunSans-Regular;
	letter-spacing: 1px;
	font-size: 12px;
	text-align: left;
	/*height or width in here will stop main image change in IE5 Win
	luckily, line-height is OK! - hidden from IE5 Mac see below
	a must be block to display background-image in IE Win
	 - but also needs to be hidden from IE5 Mac see below */
	}

#nav a/*Comment hack to hide this from IE5 - needed to extend link over button image in IE6 */{
	height:20px;
	}
 
#nav a:hover {
	background: url("../img/down_old.gif") no-repeat; /* no background-x styles work here */
	color: #ffffff;
	text-decoration: underline; 
	}
#nav a img {
	width: 300px; /* IE5 Win can't dynamically change size - don't use 0px to hide */
	height: 214px;
	position: absolute;
	top: 231px;
	left: 600px;
	border: 1px solid black;
	visibility: hidden;
	}

 /* commented backslash hack v2 - hide rules from IE5 Mac \*/
#nav a {
	padding-top: 0; 
	padding-bottom: 0;
	padding-right: 0px;/*space after table text*/
	display: block;
	line-height: 30px;
		}
#nav li {
	margin-top:0;
	margin-bottom:0;
	width: 320px;/*length table*/
	}
/* end hack */


#nav a:hover img {
	visibility:visible;
	}

