/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	height:175px;
	width:950px;
	overflow: hidden;
	float: left;
	
}

/* accordion header */
#accordion img.trigger {
	float:left;
	width: 50px;
	height: 175px;
	cursor:pointer;
	opacity:0.5;
	filter: alpha(opacity=50);
}

/* currently active header */
#accordion img.current {
	cursor:default;
	opacity:1;
	filter: alpha(opacity=100);
}

/* 
	accordion pane. should initially have zero width and display:none.
	the first pane should override these with inline style
*/

#accordion div {
	width:0px;
	float:left;	
	display:none;
}

#accordion #motel {
	width: 750px; height: 175px; background: url(/images/motel.jpg) no-repeat;
}
#accordion #apartments {
	width: 750px; height: 175px; background: url(/images/apartments.jpg) no-repeat;
}
#accordion #servicedRooms {
	width: 750px; height: 175px; background: url(/images/servicedRooms.jpg) no-repeat;
}
#accordion #carRental {
	width: 750px; height: 175px; background: url(/images/carRental.jpg) no-repeat;
}




/* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */
