/* Default Menu Structure Styles */

#nav
{
	display: inline;
	font-size: 0pt;

	text-align: center;
	
	behavior: expression(
	this.onmouseover = new Function("this.className += ' hover'"),
	this.onmouseout = new Function("this.className = this.className.replace(' hover', '')"),
	this.style.behavior=null);	
}

#nav .groups
{
	list-style-type: none;
	display: inline;
			
	float: none;
	margin-left: auto;
	margin-right: auto;
	padding: 0px;	
}

#nav .groups .group
{
	display: inline;
	width: auto;
	
	margin-left: 15px;
	margin-right: 15px;
	padding: 0px;
	
	background-color: #ffffff;
	position: relative;		
	
	behavior: expression(
	this.onmouseover = new Function("this.className += ' hover'"),
	this.onmouseout = new Function("this.className = this.className.replace(' hover', '')"),
	this.style.behavior=null);		
}

#nav .items
{
	list-style-type: none;
	position: absolute;
	
	width: 150px;
		
	display: none;
	
	background-color: #F1EFE9;
		
	opacity:.85;
	-moz-opacity: 0.85;
	filter: alpha(opacity=85);	
		
	border: #d9cfb4 1px solid;	
	margin: 0px;
	padding: 0px;
}

#nav .item
{
	padding: 2px 6px 1px 6px;		
	text-align: left;
	behavior: expression(
	this.onmouseover = new Function("this.className += ' hover'"),
	this.onmouseout = new Function("this.className = this.className.replace(' hover', '')"),
	this.style.behavior=null);		
}

#nav .items .item a
{
	width: 100% !important;	
	display: block;
}

/* Default Menu Element Styles */

#nav a
{
	
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif; 
	font-size: 9pt; 
	color: #714C1D; 
				
	text-decoration: none;	
}

#nav img.offstate
{
	display: inline;
}

#nav img.onstate
{
	display: none;
}

/* Hover Events */

#nav .group:hover img.onstate
,#nav .group.hover img.onstate 
{
	display: inline;
}

#nav .group:hover img.offstate 
,#nav .group.hover img.offstate
{
	display: none;
}


#nav .group:hover .items
,#nav .group.hover .items 
{
	display: block;
	top: 100%;
	_top: 102%; /* ie6 hack to adjust location of rollover menu*/
	left: 0px;
}


#nav .item:hover 
, #nav .item.hover
{	
	background-color: #f0e7cd;		
}

#nav .items .item:hover  a
, #nav .items .item.hover a
{
	color: #714C1D;
}

/* Preselect Group Image if in section */
BODY.town #nav .town img.onstate
,BODY.homes #nav .homes img.onstate
,BODY.cottage_rentals #nav .cottage_rentals img.onstate
,BODY.news #nav .news img.onstate
,BODY.about #nav .about img.onstate
,BODY.area #nav .area img.onstate
,BODY.contact #nav .contact img.onstate
{
	display: inline;
}

BODY.town #nav .town img.offstate
,BODY.homes #nav .homes img.offstate
,BODY.cottage_rentals #nav .cottage_rentals img.offstate
,BODY.news #nav .news img.offstate
,BODY.about #nav .about img.offstate
,BODY.area #nav .area img.offstate
,BODY.contact #nav .contact img.offstate
{
	display: none;
}

