/* Graphic Menu */


/* - Make it horizontal, etc. - */

ul#menu {
	list-style: none;
	margin: 0;
	padding: 0;
	height: 35px;
	width: 960px;
}
ul#menu li {
	float: left;
	display: inline;
	height: 35px;
	margin: 0 /*10px*/;
}

/* Next thing we want to do is add the images to each class along with their corresponding width properties: */

ul#menu li.mortise a {
	background: url(images/menu_mortise.gif) 0 0 no-repeat;
	width: 230px;
}
ul#menu li.peeling a {
	background: url(images/menu_peeling.gif) 0 0 no-repeat;
	width: 175px;
}
ul#menu li.fence a {
	background: url(images/menu_fence.gif) 0 0 no-repeat;
	width: 125px;
}
ul#menu li.bandmills a {
	background: url(images/menu_bandmills.gif) 0 0 no-repeat;
	width: 120px;
}
ul#menu li.shears a {
	background: url(images/menu_shears.gif) 0 0 no-repeat;
	width: 180px;
}
ul#menu li.info a {
	background: url(images/menu_info.gif) 0 0 no-repeat;
	width: 130px;
}

/*displace the text*/
ul#menu li a {
	display: block;
	height: 35px;
	text-indent: -999em;
}

/*add hover*/

ul#menu li.mortise a:hover, ul#menu li.peeling a:hover,
ul#menu li.fence a:hover, ul#menu li.bandmills a:hover,
ul#menu li.shears a:hover,ul#menu li.info a:hover {
	background-position: bottom left;
}

/* to get rid of the FF active border: */

ul#menu li {
	float: left;
	display: inline;
	height: 35px;
	margin: 0 /*10px*/;
	overflow: hidden;
}

